Sorted via the Live Chat
Resolution :-
I was using
@ $connect = mysql_pconnect($db_host, $db_user, $db_password) or die ("ERROR! Could not connect to the Database Server");
this should of been
@ $connect = mysql_connect($db_host, $db_user, $db_password) or die ("ERROR! Could not connect to the Database Server");
I.e. mysql_pconnect -> mysql_connect p removed.
From support
the connection string was using mysql_pconnect to connect to the server which is disabled on the server
so it should use mysql_connect
|