I could be wrong but I think you would not use the host/domain for the connection to the MySQL server but instead, since your scripts are on the same box as the MySQL server, that you would instead use either
localhost or
127.0.0.1.
Usually
127.0.0.1 is a safe bet to work.
But, if you have phpMyAdmin installed and it does actually work, you could do what I do and that is cheat, take a look at phpMyAdmin's configuration file which should be, if installed as a package through ISPConfig, in
Code:
/home/admispconfig/ispconfig/web/phpmyadmin/config.inc.php
Take a look in there and see what it has listed for the "$hostname" because I think it might work better with either :
Code:
$hostname = "127.0.0.1";
or :
Code:
$hostname = "localhost";
That's just a guess though.
Recent comments
2 days 14 hours ago
2 days 23 hours ago
3 days 2 hours ago
3 days 3 hours ago
3 days 4 hours ago
3 days 6 hours ago
3 days 8 hours ago
3 days 9 hours ago
4 days 1 hour ago
4 days 2 hours ago