yes I am sure you can login and out on the page. I have other scripts I coded that post the users id and username to another database where I am storing information.
Now if I call a template it will show on WOL with unknown location(which I can fix). But I don't want to call a template from vbulletin if I don't plan on using it that would be a waste of resources of the server.
--------------- Added [DATE]1239197151[/DATE] at [TIME]1239197151[/TIME] ---------------
I can get it to show if I add the following.
Code:
$navbits = array();
$navbits[$parent] = 'Test Page';
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('test') . '");');
But then that messes up the whole page its either blank or if I make the template it still isnt what I want to do. The pages are made I just want to show them in WOL.
--------------- Added [DATE]1239229628[/DATE] at [TIME]1239229628[/TIME] ---------------
No one has any ideas?