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
8 hours 51 min ago
13 hours 50 min ago
15 hours 16 min ago
16 hours 9 min ago
17 hours 52 min ago
22 hours 15 min ago
23 hours 7 min ago
1 day 1 hour ago
1 day 14 hours ago
1 day 16 hours ago