Morning, all my files are now referencing the correct directory after I have corrected the case.
I have now encountered a different error:
[07-Mar-2013 07:56:35 UTC] PHP Warning: mysql_pconnect(): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2) in /usr/www/users/gauintrquj/connections/gauInfoConn.php on line 9
[07-Mar-2013 07:56:35 UTC] PHP Fatal error: Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2) in /usr/www/users/gauintrquj/connections/gauInfoConn.php on line 9
I have copied connections folder including gauInfoConn.php to the directory gauintrquj to ensure the path is correct.
My site is still not displaying. Here is the code for my gauInfoConn.php file:
<?php
FileName="Connection_php_mysql.htm"
Type="MYSQL"
HTTP="true"
$hostname_gauInfoConn = "localhost";
$database_gauInfoConn = "gau_infodb1";
$username_gauInfoConn = "pikstealth";
$password_gauInfoConn = "legolasp";
$gauInfoConn = mysql_pconnect($hostname_gauInfoConn, $username_gauInfoConn, $password_gauInfoConn) or trigger_error(mysql_error(),E_USER_ERROR);
?>
The only thing I can think of is that the $hostname_gauInfoConn = "localhost"; has to change specifying the new host. (Not sure how to do it though, IP Address or server name perhaps?)