Quote:
Originally Posted by MarcoH64
You will need to do a chdir to your forum directory prior to calling teh global.php.
PHP Code:
chdir("./forum");
require_once("./global.php);
If needed chdit back after the global.
|
i tried to figure out how to chdir back. this is the php code i used but of no avail.
PHP Code:
<?PHP
$dir = getcwd();
chdir("../../talkies");
print $dir;
require_once("global.php");
chdir($dir);
?>
its throwing an error.
Warning: chdir(): No such file or directory (errno 2) in /home2/xbhp1/public_html/broadband/fotos/index.php on line 6