
Originally Posted by
jhnwkmn
Unfortunately there is no exhaustive list of known limitations. PAMP was developed with limited resources and primarily as an experiment, so we had to cut quite a few corners.
Anyway, it's a great job. I would be able to reach those development skills in some years

Originally Posted by
jhnwkmn
What's the setup in this case? You create the table via PHP running under Apache?
Yes, right. it's just a simple PHP script that, when running with login "" and password "" and --skip-grant-tables, works fine but, when using "admin" "passwadmin" and NO --skip-grant-tables, does not work in PHP.
Of course, the user was created in MySQL, with grant privileges.
BTW, the following code crashes Apache because of mysql_error() method.
Code:
$connect = mysql_connect($user, $password, $db);
if (!$connect) echo "Error: ".mysql_error();

Originally Posted by
jhnwkmn
Do you refer to something else but the mysqli.default_user and friends in data/php/php.ini?
Well... I understand that just for the default user to make login in the database. I can always specify a user in the mysql_connection(), right? I least I should be able, no?