Quote:
Originally Posted by hidjra
No one any ideas?
|
When you say "different" sites on your domain do you mean something like "SiteA.domain.com", "SiteB.domain.com" and "SiteC.domain.com"? (All sites point to the same domain)
In vB options, how did you set your Cookie domain?
Quote:
Originally Posted by therczone
I'm looking for this too. I want to restrict guest access to non-vB pages of my site. For example, I want them to be redirected to the forum login page if they are not logged in and want to view my glossary.
|
I could be off the mark but maybe something like this:
Code:
<?php
if (!$vbulletin->userinfo['userid'])
{
header("Location: http://www.whatever_page.com/");
exit;
}
?>