Opinion of a huge hosting provider

I have two entries in mysql.conf:
Code:
access_host=%
access_host1=localhost
The reason for listing both is that without 'localhost' entry the mysql management in user's interface is broken.
I've added a fix, and found/fixed a related bug during the revoke (might be a new bug from the new change, but either way, it's fixed)

Pre-release binaries are now available:

Let us know if you have any further issues with it.

John
 
I've added a fix
Although it seems to be adding proper grants now, the 'localhost' is still hard-coded in phpMyAdmin/direct_login/index.php so I have to run a mysql proxy for this to work.

Code:
lines 35 to 38:

$user = $info['username'];
$pass = $info['password'];
$host = 'localhost';
$port = '3306';
 
Back
Top