Quote:
Originally Posted by Majava
ok, Step 3 had already been done. by default? i dont know.
I dont both things in step 4, but still i get the following errors on every other page, but it did sort out the login box problem,
|
Yes, those steps in the troubleshooting guide will only fix the login box, not your other path problems, its two seperate issues.
Quote:
Is there anyway to fix this warning?
|
It looks like its a path problem, could well be caused because the path is set to your forums directory for global.php.
Try changing
Code:
<?php
chdir('/path/to/your/forums');
require_once('/path/to/your/forums/global.php');
?>
to
Code:
<?php
$curdir = getcwd ();
chdir('/path/to/your/forums');
require_once('/path/to/your/forums/global.php');
chdir ($curdir);
?>