PDA

View Full Version : accessible only to logged in users


lukemax
02-20-2008, 07:10 PM
I have a page and I'm trying to do 2 things to it.
I used the hook feature and created a page
http://lvasp.com/forum/requestform.php
which used the vbulletin template system. How do I make it so that only logged in users can access the page (so that if there not logged in they get a standard vbulletin error) Also, how do I (autofill) the form so that LVASP Username would be filled in with their username (which, if logged in would be in the Welcome, "x" near the top).
Thanks....

Dismounted
02-21-2008, 05:34 AM
Please post the code up.

GameWizard
02-21-2008, 10:58 AM
<if condition="$show['member']">
This is what members see.
<else />
This is what guests see.
</if>

As for your field to be auto entered, for that field, use this value:

$userinfo[username]

MoT3rror
02-21-2008, 12:49 PM
<if condition="$show['member']">
This is what members see.
<else />
This is what guests see.
</if>

As for your field to be auto entered, for that field, use this value:

$userinfo[username]

You actually need to compare against the userid like this.

<if condition="$bbuserinfo[userid] == 0">
This is what guests see
<else />
This is what users signed in see
</if>


or PHP code like this. This would require the global file included.

if($vbulletin->userinfo['userid'] == 0)
{
//currently is guest
}
else
{
//currently signed in
}

GameWizard
02-21-2008, 01:03 PM
You actually need to compare against the userid like this.

<if condition="$bbuserinfo[userid] == 0">
This is what guests see
<else />
This is what users signed in see
</if>
or PHP code like this. This would require the global file included.

if($vbulletin->userinfo['userid'] == 0)
{
//currently is guest
}
else
{
//currently signed in
}
Isn't this the same as the following?:
<if condition="$show['guest']">
This is what guests see
<else />
This is what users signed in see
</if>

MoT3rror
02-21-2008, 03:15 PM
Isn't this the same as the following?:
<if condition="$show['guest']">
This is what guests see
<else />
This is what users signed in see
</if>

Yeah never knew they had the variable $show['member'], o well I guess I learn something today.

lukemax
02-21-2008, 05:30 PM
wow, loads of responses, thanks...