i've got it working, but only when i remove my other script that i have to call which is require_once('./vBExternal.php'); for another add-on....how do i stop the top part of the login code
Code:
<?php
chdir('/path/to/your/forums');
require_once('/path/to/your/forums/global.php');
?>
from conflicting with the vBExternal? i found this is the only way i can do it.... otherwise the main page doesn't remember the user if i put the full url to the .php that includes the login page code with the
Code:
<?php
chdir('/path/to/your/forums');
require_once('/path/to/your/forums/global.php');
?>