Log in

View Full Version : a href="member.php? u= $bbuserinfo[userid]


yinyang
03-24-2008, 11:25 PM
Any help or pointing in a certain direction is greatly appreciated.

I would like to load the member.php file as my homepage. I was thinking of copying the member.php page and renaming it to index.php.

However, I can't get my personal profile to pull up automatically for me. What I would like is to have everyone's own profile page pull up as their home page and then build around that.

The problem i'm having is fetching the page automatically. in vb3.7, you can click to yoru profile by doing this: <a href="member.php?$session[sessionurl]u=$bbuserinfo[userid]>

However, i've tried to cut and paste this into the address bar and obviously, it doesn't work. Does anyone know how to bring up this page as a default or if need be, to automatically redirect to this page?

Please help. Thanks!

GameWizard
03-25-2008, 05:25 AM
probably using .htaccess redirect.

The simplest way is using a javascript redirect. Replace the contents of the FORUMHOME template with this:

<script type="text/javascript">
<!--
window.location = "member.php?$session[sessionurl]u=$bbuserinfo[userid]"
//-->
</script>

Opserty
03-25-2008, 10:41 AM
Or.... create a Plugin hooked to the member.php file that automatically detects the UserID (if the person is logged in) and uses that as the variable. i.e.:

if($vbulletin->userinfo['userid'])
{
$_GET['u'] = $vbulletin->userinfo['userid'];
}

Or something like that. Remember to cater for guests if necessary.

yinyang
03-25-2008, 02:35 PM
Thank you GameWizard and Opserty. I really appreciate you taking the time out. I will try both out!

--------------- Added 1206459379 at 1206459379 ---------------

probably using .htaccess redirect.

The simplest way is using a javascript redirect. Replace the contents of the FORUMHOME template with this:

<script type="text/javascript">
<!--
window.location = "member.php?$session[sessionurl]u=$bbuserinfo[userid]"
//-->
</script>

Or.... create a Plugin hooked to the member.php file that automatically detects the UserID (if the person is logged in) and uses that as the variable. i.e.:

if($vbulletin->userinfo['userid'])
{
$_GET['u'] = $vbulletin->userinfo['userid'];
}

Or something like that. Remember to cater for guests if necessary.

Thank you GameWizard and Opserty. I really appreciate you taking the time out. I will try both out!