Hi,
I'm using this mod on my website, non-vb page:
https://vborg.vbsupport.ru/showthread.php?t=108026
In order for it to work, I need to place this at the very top of the page:
PHP Code:
<?php
chdir('path to forum');
require_once('path to global.php');
?>
Now. That works just fine. However, I also want to use vBExternal (
https://vborg.vbsupport.ru/showthread.php?t=147344) on my website homepage, which, in order to work, needs this placed at the top of the page:
PHP Code:
<?php
chdir('../VB');
require_once('vBExternal.php');
?>
When I put that there, the deluxe login (first listed) works fine, however, the vBExternal doesn't work, probably because they both need to be at the very top. Is there any way I could bypass this so that I can use both Deluxe login and vBExternal on the same page?