I'm trying to connect remotely to my MySQL server from a basic android app. I can connect to server just fine using 'localhost', but I also want any host to connect to the server (for simplicity, for now).
I have the two following users in my phpMyAdmin:
User Host Password Global privileges Grant
root % Yes ALL PRIVILEGES Yes
root localhost Yes ALL PRIVILEGES Yes
my variables to connect to the database are:
/*
* All database connection variables
*/
define('DB_USER', "root"); // db user
define('DB_PASSWORD', "myPass"); // db password (mention your db password here)
define('DB_DATABASE', "mainData"); // database name
define('DB_SERVER', ''); // db server
?>
i have also edited the my.cnf, i am using MAMP PRO. I modified this line:
bind-address = 0.0.0.0
I have also unchecked the "Allow local access only" option in MAMP PRO.
I restarted the server, and i still can't connect from a host that is not localhost. I have the android application installed on several phones, but i am only able to connect to the database on localhost.
I have looked around the forums and couldnt find a different solution. Any help or suggestions will be greatly appreciated.