Description
I have run into a strange issue: I had set up the MySQL database server and with the configuration, I was able to get everything working. The MySQL server is the database backend for a mobile app I am developing. The queries are being run in a PHP script in my project folder. My app connects to the PHP script with the request, the PHP script connects to the database, runs the query and returns the result to my app.
The server that I was using is this one:
db.be-mons1.bengt.wasmernet.com
This is the first MySQL server that I had, but it is suddenly in read-only mode, and it doesn't show on my project configuration any more.
Instead, I see that there is a second database server:
db.fr-pari1.bengt.wasmernet.com
This is the second MySQL server. I can make changes to the schema and data using the web portal, but my PHP script cannot connect to it, even when I update the configuration to use the new server name. The username and password are the same.
So, basically, the first server is in read-only mode, and can be connected to through the PHP script, and it doesn't show on my project information any more. The second server is not read-only, and it is visible from my project information, but the PHP script cannot connect to it.
Am I doing something wrong?