Log in

View Full Version : Programming Help


PaulSonny
03-30-2008, 07:45 AM
Hello Everybody,

I was wondering whether anybody could help me.

I currently have a plugin which has the following line of code:

$userinfo['userid']=$vbulletin->userinfo['userid'];

What I am wanting to do is work out how I would do it on a members profile page, basically I want to know the ID for the members profile page I am looking at and then it will carry on through the code and show the relevant information for that user.

I have tried, as someone suggested the following but it did not work.

$userinfo['userid']=$vbulletin->memberinfo['userid'];

Any help would be much appreciated.

Thanks, Paul.

Dismounted
03-30-2008, 08:26 AM
$userinfo['userid'] is the ID of the member you are looking at. The ID is already assigned to that variable.

PaulSonny
03-30-2008, 08:59 AM
Well I'm confused.

Because in the profiles it shows my information and not the members I am looking at.

Any reason why?

Thanks, Paul.

Dismounted
03-30-2008, 10:56 AM
You don't need any of the code you posted in the first post. Just use $userinfo['userid'].

Opserty
03-30-2008, 11:24 AM
Why are you running this plugin then? The default functionality is to grab the User's ID from the URL. With your plugin you are overwriting this, why your doing this I'm not sure. But that is why you can only see your own User Information and not that of others.

PaulSonny
03-30-2008, 02:04 PM
Sorry I should have said in the original post.

I have just purchased and installed P3tz. The template edits supplied are only suitable up to version 3.6.8, and I have vBulletin Version 3.7 RC1.

So basically I was writing my own little code to show the Pet in a right hand side block. (template named memberinfo_block_petz)

Then inside the memberinfo I was calling this template using $blocks_petz.

Then I had two plugins, one was a template cache, and the other plugin was basically for when $blocks_petz is used, fetch the memberinfo_block_petz template, using the follow PHP Code.

if (THIS_SCRIPT == 'member')
{
$userinfo['userid']=$vbulletin->userinfo['userid'];
include("petz/plugins/memberinfo.php");
eval('$blocks_petz = "' . fetch_template('memberinfo_block_petz') . '";');
}

I have done the a very similar thing to show your own pet on the index page. I am wanting to do this to show your pet in your profile, so when you view a profile, its shows that persons pet.

I have tried just using $userinfo['userid'] but it causes Database SQL Errors.

Thanks, Paul.

Opserty
03-30-2008, 03:09 PM
I think they use $prepared['userid'] in vB 3.7, have you looked at the source code for the member.php page?