You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noted that even after having all database tables created (Ticket Server), I still got the link to create the database.
After digging a bit, I found that some PHP scripts have code to check if a given table is already created, for example in function ts_doesTableExist in ticketServer/server.php. The table name comparison (line 1254) is done in a case-sensitive way like: if( $tableName == $inTableName ), This will fail since some databases return table names in all lowercase (others all uppercase).
It can be solved (as tested) using if( strcasecmp( $tableName, $inTableName ) == 0 ) instead, but I am not a PHP developer, so I prefer not doing it myself.
(Actually I would prefer to directly query for the given table SELECT count(*) FROM information_schema.tables WHERE table_schema = '$databaseName' and table_name = '$inTableName')
The text was updated successfully, but these errors were encountered:
That could be the problem.
I am using XAMPP (x64-8.1.5-0-VS16) for servers and database - I supposed it comes with MySQL, its control center still states so, but it is MariaDB ( 10.4.24-MariaDB), a fork of MySQL.
Afaik MariaDB can be used as a drop in replacement for MySQL, I was considering using it if I were to finish dockerising this project, but have yet to test.
I noted that even after having all database tables created (Ticket Server), I still got the link to create the database.
After digging a bit, I found that some PHP scripts have code to check if a given table is already created, for example in
function ts_doesTableExist
inticketServer/server.php
. The table name comparison (line 1254) is done in a case-sensitive way like:if( $tableName == $inTableName )
, This will fail since some databases return table names in all lowercase (others all uppercase).It can be solved (as tested) using
if( strcasecmp( $tableName, $inTableName ) == 0 )
instead, but I am not a PHP developer, so I prefer not doing it myself.(Actually I would prefer to directly query for the given table
SELECT count(*) FROM information_schema.tables WHERE table_schema = '$databaseName' and table_name = '$inTableName'
)The text was updated successfully, but these errors were encountered: