Quote:
Originally Posted by SocomNego
Ok here is my code....The funny thing is that I have it on my home page and it works, but on this page it doesn't work even though I set it up the same way....
PHP Code:
<?php
chdir('/home/gamesoga/public_html/forums');
require_once('/home/gamesoga/public_html/forums/global.php');
?>
|
Try changing that bit above to
<?php
$curdir = getcwd ();
chdir('/home/gamesoga/public_html/forums');
require_once('/home/gamesoga/public_html/forums'/global.php');
chdir ($curdir);
?>
If that does not work I suspect that your trying to use a variable named the same as a reserved vB one.