Hi Volker, > Tried to run PHPMyAdmin on libmysequoia. > > * Is this possible in general?
Yes, this is possible. > | #2014 - Commands out of sync; you can't run this command now Take a look at CarobMySQL::connect() function. You will see if the database is not specified, libmysequoia will try to fake the connection. It will connect when every parameter is given (for example after mysql_select_db). But until you are not connected you can't issue any query to the database. This is why you get "Command out of sync" In the phpMySQLAdmin configuration file (config.inc.php) you can specify only the host, user, password. The db you must specify in the /etc/mysequoia/mysequoia.conf file: [client] database = virtual_database_name Best regards, Csaba _______________________________________________ Carob mailing list [email protected] https://forge.continuent.org/mailman/listinfo/carob
