This is the error:
Quote:
Warning: ChDir: No such file or directory (errno 2) in /usr/local/psa/home/vhosts/airwavescomms.co.uk/httpdocs/myvbindex.php on line 13
Warning: Unable to access ./global.php in /usr/local/psa/home/vhosts/airwavescomms.co.uk/httpdocs/myvbindex.php on line 17
|
this is my vbindex file:
PHP Code:
// Enter The Full Path To Your Forums Here
chdir('/forums');
// No Further Editing Necessary
require('./global.php');
on the require ('./global.php'); bit i dont know why there is a
there
but If i change
PHP Code:
require('./global.php');
to
PHP Code:
require('forums/global.php');
i get this error
Quote:
Warning: Unable to access /admin/db_mysql.php in /usr/local/psa/home/vhosts/airwavescomms.co.uk/httpdocs/forums/global.php on line 139
|
instead of
Quote:
Warning: Unable to access ./global.php in /usr/local/psa/home/vhosts/airwavescomms.co.uk/httpdocs/myvbindex.php on line 17
|