From GLOBALS.php:
$INCLUDE = "c:/!httpd/FUDForum_data/include/";
/* ^- include line is right AFAIK */
...
// $WWW_ROOT = "C:/temp/";
$WWW_ROOT = "http://dragonx.northern.ca/forums/";
...
// $COOKIE_PATH = "/temp/";
$COOKIE_PATH = "/forums/";
Once I fixed the Cookie_path I could get into the admin
center... which allowed me to discovered some more pain... (no worries, it will
be worth it)
Warning: file("GLOBALS.php") - No such file or directory in c:!httpdFUDForum_dataincludeglob.inc on line 30
Warning: Variable passed to reset() is not an array or object in c:!httpdhtdocsforumsadmadmglobal.php on line 39
Warning: Variable passed to each() is not an array or object in c:!httpdhtdocsforumsadmadmglobal.php on line 70
Line 37 of admglobal.php is the source of the error:
$cf = get_config('GLOBALS.php');
I'm guessing it should read:
$cf = get_config($GLOBALS['INCLUDE'].'GLOBALS.php');
I'm going to go try that and see what happens...
[Aside]
Also looking at GLOBALS.php (a lot of files have it)
I noticed that line 20 and 21 do this:
?>
<?php
I'm always wary of this kinda of thing since I started using
sessions (right after I got my first header related warnings), personally I would delete those lines.
[/Aside]