PDA

View Full Version : Online.php Detection with pages outside forum directory?


Sinecure
05-24-2002, 01:16 AM
I have a page that is driven by vbulletin and its outside of the forum directory. I modified online.php to include this page by simply copying a previous line of code and changing it to suite the directory where this page is.

For some reason, its still not working.
Heres the code I used.


case 'about':
$userinfo[where] = "Viewing <a href='http://www.pixeljunction.com/ver3/about.php?s=$session[sessionhash]'>About Page</a>";
break;


Any other info I should provide?

Logician
05-27-2002, 05:15 AM
while linking/calling your non-vb page use action variable like:

http://yoururl/yournonvbpage.php?action=about

You set what online.php will display if action is X, but you didnt set action itself in your page.. ;)