Log in

View Full Version : Check if a user is logged in?


dynamot
08-13-2007, 01:37 PM
How do I check if a user has logged in or not. And what are the different include files I need to have on that page.

I was hoping that it was as simple as this. I found this on a thread here.

<?php
If ($vbulletin->userinfo['userid']!=0)
{
echo 'You are logged in';
} else {
echo 'you are not logged in';
}
?>

I tried both scenarios. It does execute the code correctly. Then I tried putting in the path to global. The logic works if you are logged in, but generates some cookie errors.

Any leads or help will be greatly appreciated.

dyna

Opserty
08-13-2007, 01:42 PM
https://vborg.vbsupport.ru/showthread.php?t=98009&highlight=create+pages

See the "Limiting Access to the Script" section but read through it all as well :)

dynamot
08-13-2007, 02:56 PM
opserty,

thank you very much. That's a great place to start for me