View Single Post
  #10 (permalink)  
Old 18-05-2007, 20:03
jsstevo jsstevo is offline
new member
 
Join Date: May 2007
Posts: 7
Send a message via MSN to jsstevo
Default

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
Reply With Quote