[QUOTE=Majava]This is at the top
PHP Code:
<?php
chdir('/path/to/forum');
require_once('/path/to/forum/global.php');
// Do not edit anything below this line
// Do not edit anything below this line
session_start();
// You can now edit below this line
// You can now edit below this line
?>
Try something like
PHP Code:
<?php
session_start();
$curdir = getcwd ();
chdir('/path/to/your/forums');
require_once('/path/to/your/forums/global.php');
chdir ($curdir);
?>
If that fails to work then it looks like both scripts are just incompatible