View Full Version : HOW TO show profile picture in showthread
vidan
03-10-2009, 04:18 AM
As by topic request, profile picture locate in file storage
thanks everyone
i found onlyfor database, i need for profile picture locate in file storage
Wow, can't believe how easy this is (vB 3.5.4)!
Add a PLUG-IN with HOOK LOCATION showthread_query and the following code:
$hook_query_fields = ",customprofilepic.dateline AS profilepicdateline";
$hook_query_joins = "LEFT JOIN " . TABLE_PREFIX . "customprofilepic AS customprofilepic ON(customprofilepic.userid = post.userid)";
In POSTBIT template, add :
<if condition="$post['profilepicdateline']">
<img src="image.php?u=$post[userid]&dateline=$post[profilepicdateline]&type=profile">
</if>
NOTE: This will only work if you're using the database for avatar/profilepic storage!
Dismounted
03-10-2009, 05:08 AM
Follow the breadcrumbs of member profiles... Into class_userprofile.php.
vidan
03-11-2009, 09:51 AM
Hello, sorry dismounted, i still dont get it.
what to find in class_userprofile?
Dismounted
03-12-2009, 04:21 AM
The code to fetch a profile picture...
vidan
03-12-2009, 06:53 PM
function prepare_profilepic()
{
if ($this->registry->options['profilepicenabled'] AND $this->userinfo['profilepic'] AND ($this->registry->userinfo['permissions']['genericpermissions'] & $this->registry->bf_ugp_genericpermissions['canseeprofilepic'] OR $this->registry->userinfo['userid'] == $this->userinfo['userid']) AND ($this->userinfo['permissions']['genericpermissions'] & $this->registry->bf_ugp_genericpermissions['canprofilepic'] OR $this->userinfo['adminprofilepic']))
{
if ($this->registry->options['usefileavatar'])
{
$this->prepared['profilepicurl'] = $this->registry->options['profilepicurl'] . '/profilepic' . $this->prepared['userid'] . '_' . $this->userinfo['profilepicrevision'] . '.gif';
}
else
{
$this->prepared['profilepicurl'] = 'image.php?' . $this->registry->session->vars['sessionurl'] . 'u=' . $this->prepared['userid'] . "&dateline=" . $this->userinfo["profilepicdateline"] . "&type=profile";
}
if ($this->userinfo['ppwidth'] AND $this->userinfo['ppheight'])
{
$this->prepared['profilepicsize'] = ' width="' . $this->userinfo["ppwidth"] . '" height="' . $this->userinfo["ppheight"] . '" ';
}
}
else
{
$this->prepared['profilepicurl'] = '';
}
}
you mean this one?
what to put in template? sorry for trouble dismounted
vidan
03-14-2009, 05:43 AM
hello?
Mr-Moo
03-14-2009, 03:55 PM
Possibly this may work,
Display an image in your style of the location http://www.WEBSITE/forum/image.php?u=1&type=profile
Where you see the "1", echo out the userID, ($post[userid]).
It should look something like: http://www.YOURSITE.COM/forum/image.php?u=$post[userid]&type=profile
vidan
03-14-2009, 04:33 PM
it returns blank web.
--------------- Added 1237094659 at 1237094659 ---------------
hello bump up, i need this modificationplease >_<
Dismounted
03-15-2009, 06:12 AM
The code you found tells you exactly how you can find the picture URL...
Mr-Moo
03-15-2009, 01:54 PM
it returns blank web.
--------------- Added 1237094659 at 1237094659 ---------------
hello bump up, i need this modificationplease >_<
Erm, you may want to think about this a little.
The code provided by yourself clearly has the solution. You may also want to re-think the code I posted to you, as that will indeed return a blank page. The code I provided was intended to be placed within the forum style. It requires functions to be called from another file (globals.php) to properly function.
So please, re-test, be patient, and be thankful :)
vidan
03-15-2009, 07:22 PM
i've been trying this for 2 and half hour, and result, nothing appear. only show <img src="image.php?u=1&type=profile"> in source file.
i tried to put
function prepare_profilepic()
{
if ($this->registry->options['profilepicenabled'] AND $this->userinfo['profilepic'] AND ($this->registry->userinfo['permissions']['genericpermissions'] & $this->registry->bf_ugp_genericpermissions['canseeprofilepic'] OR $this->registry->userinfo['userid'] == $this->userinfo['userid']) AND ($this->userinfo['permissions']['genericpermissions'] & $this->registry->bf_ugp_genericpermissions['canprofilepic'] OR $this->userinfo['adminprofilepic']))
{
if ($this->registry->options['usefileavatar'])
{
$this->prepared['profilepicurl'] = $this->registry->options['profilepicurl'] . '/profilepic' . $this->prepared['userid'] . '_' . $this->userinfo['profilepicrevision'] . '.gif';
}
else
{
$this->prepared['profilepicurl'] = 'image.php?' . $this->registry->session->vars['sessionurl'] . 'u=' . $this->prepared['userid'] . "&dateline=" . $this->userinfo["profilepicdateline"] . "&type=profile";
}
if ($this->userinfo['ppwidth'] AND $this->userinfo['ppheight'])
{
$this->prepared['profilepicsize'] = ' width="' . $this->userinfo["ppwidth"] . '" height="' . $this->userinfo["ppheight"] . '" ';
}
}
else
{
$this->prepared['profilepicurl'] = '';
}
}
in plugin->makenew plugin->postbit_start_display and showthread_query
and display
http://www.YOURSITE.COM/forum/image.php?u=$post[userid]&type=profile
but nothing appear
can i get more clue. im trying to search both in .com and org
to find similar, but nothing i found, only the 3.5.4 version with avatar in datbaase.
please help me >_<
Dismounted
03-16-2009, 05:00 AM
$this can only be referenced inside object context...
vidan
03-16-2009, 05:56 AM
so do i need to put require globals.php in the plugin?
--------------- Added 1237227955 at 1237227955 ---------------
hello, can i got more clue >_<
nearly a week
Mr-Moo
03-16-2009, 07:07 PM
Are you creating a plugin or just modifying files? Your losing me mate.
vidan
03-17-2009, 01:26 AM
i just want to show profile picture in showthread, i do not know if its need a plugin or simple editing the style.
Mr-Moo
03-17-2009, 05:24 PM
My method should have been a simple "style-edit", to my knowledge it should have worked.
Dismounted's should have also worked by editing the PHP file.
vidan
03-17-2009, 06:31 PM
no mr boo boo, this cant be style edit, needs some hooks. but i dont know what to hooks -_-
im not a progammer, not even nearly >_<
Lynne
03-17-2009, 07:18 PM
Did you try doing a search at all for this? This may help get you on the right track - Profile Picture in Postbit (https://vborg.vbsupport.ru/showthread.php?t=83356&highlight=profile+picture). There may be other threads, but I just grabbed one for posting here.
vidan
03-17-2009, 07:22 PM
yes yes and yes, its been a week before i created this thread. then its 2 weeks now.
yes and that thread, i read that too. but its for database, i need the one using file storage.
btw my first post in this thread, is based on that thread -> https://vborg.vbsupport.ru/showpost.php?p=1047937&postcount=15
thanks Lynne
--------------- Added 1237322372 at 1237322372 ---------------
hello dismounted mrboo and lynne
i found this
$show['profilepic'] = ($vbulletin->options['profilepicenabled'] AND $userinfo['profilepic'] AND ($permissions['genericpermissions'] & $vbulletin->bf_ugp_genericpermissions['canseeprofilepic'] OR $vbulletin->userinfo['userid'] == $userinfo['userid']) AND ($userinfo['permissions']['genericpermissions'] & $vbulletin->bf_ugp_genericpermissions['canprofilepic'] OR $userinfo['adminprofilepic'])) ? true : false;
if ($vbulletin->options['usefileavatar'])
{
$userinfo['profilepicurl'] = $vbulletin->options['profilepicurl'] . '/profilepic' . $userinfo['userid'] . '_' . $userinfo['profilepicrevision'] . '.gif';
}
else
{
$userinfo['profilepicurl'] = 'image.php?' . $vbulletin->session->vars['sessionurl'] . 'u=' . $userinfo['userid'] . "&dateline=$userinfo[profilepicdateline]&type=profile";
}
if ($userinfo['ppwidth'] AND $userinfo['ppheight'])
{
$userinfo['profilepicsize'] = " width=\"$userinfo[ppwidth]\" height=\"$userinfo[ppheight]\" ";
}
i tried in showthread_query and postbit but cant work.
got some idea?
Lynne
03-17-2009, 07:45 PM
You know, isn't the url to the profile picture (when in file storage) just a matter of knowing the userid and the profilepicrevision? I'll answer that to the best of my knowledge... yes, it is. So, just grab the profilepicrevision from the user table and then the url to the image is just "$vboptions[profilepicurl]/profilepic$post[userid]_$post[profilepicrevision].gif".
edit to add: you don't even need a plugin to grab the profilepicrevision since it's already available. I'm not sure about grabbing the height and width though since I didn't look at the tables for that.
vidan
03-17-2009, 07:58 PM
OMFG you are my life saver! i dont know its that easy, that simple.
thank you very much lynne ^_^
Lynne
03-17-2009, 08:06 PM
One thing to consider... in vb 3.8, you are allowed to set privacy for such things as your profile picture. Doing a call like that is not taking into consideration whether the user set their profile picture to only be shown to Contacts and Friends versus Everybody. You are not taking their preferences into consideration when you do this.
vidan
03-17-2009, 08:18 PM
Oh yes, i forgot that, thanks to remind me Lynne, but its like showpath through the file right?
can i have the same code using in members profile? so its up to member want to show the profile picture or not.
i cant simply copy in memberinfo style -> profilepic, then paste into postbit template right
it does need the modification. and its been 2 week for tryin it, but still not successful >_<
Lynne
03-18-2009, 02:15 AM
I haven't looked at the memberinfo template to see how the permissions are dealt with regarding the profilepicture. It may be that you need to write a plugin to grab some permission field that helps you decide whether someone may see ithe picture or not.
Mr-Moo
03-18-2009, 03:39 AM
Wow Vidan,
I don't mean to sound out of line or anything, but you first insult me, then you criticize my help?
And to boot, my method was pretty damn similar to the actual solution. No hook required, simple template edit, static avatar URL.... Vidan, in the future I will insure to keep my eyes peeled and no longer offer my support to you.
Thank you!
vidan
03-18-2009, 11:28 AM
no mr moo, i never insult you nor criticize your help.
i used your method, and it didnt work. i never insult you nor anything. i just said, i didnt think it can works without hooks, but Lynne give me the simpliest answer, but i didnt insult you.
im sorry mr moo to make you feel this way. but i never mean to insult you.
Mr-Moo
03-18-2009, 04:36 PM
Thank you,
I appreciate your response.
vidan
03-27-2009, 09:56 PM
Hello Lynne, i still wondering with this figure, yes you are right it simple show profilepic using filestorage, but i still want to use the code built into memberinfo and memberlist
the memberlist code
$can_view_profile_pic = (
$show['profilepiccol']
AND $userinfo['profilepic']
AND ($userinfo['permissions']['genericpermissions'] & $vbulletin->bf_ugp_genericpermissions['canprofilepic'] OR $userinfo['adminprofilepic'])
);
if ($userinfo['profilepicrequirement'] AND !can_view_profile_section($userinfo['userid'], 'profile_picture', $userinfo['profilepicrequirement'], $userinfo))
{
$can_view_profile_pic = false;
}
if ($can_view_profile_pic)
{
if ($vbulletin->options['usefileavatar'])
{
$userinfo['profilepicurl'] = $vbulletin->options['profilepicurl'] . '/profilepic' . $userinfo['userid'] . '_' . $userinfo['profilepicrevision'] . '.gif';
}
else
{
$userinfo['profilepicurl'] = 'image.php?' . $vbulletin->session->vars['sessionurl'] . 'u=' . $userinfo['userid'] . "&dateline=$userinfo[profilepicdateline]&type=profile";
}
$userinfo['profilepic'] = "<img src=\"" . $userinfo['profilepicurl'] . "\" alt=\"\" title=\"" . construct_phrase($vbphrase['xs_picture'], $userinfo['username']) . "\" border=\"0\"";
$userinfo['profilepic'] .= ($userinfo['ppwidth'] AND $userinfo['ppheight']) ? " width=\"$userinfo[ppwidth]\" height=\"$userinfo[ppheight]\" " : '';
$userinfo['profilepic'] .= "/>";
}
else
{
$userinfo['profilepic'] = ' ';
}
and the template code is <if condition="$show['profilepiccol'] AND exec_switch_bg()"><td class="$bgclass">$userinfo[profilepic]</td></if>
can i do the same thing in postbit?
yes "$vboptions[profilepicurl]/profilepic$post[userid]_$post[profilepicrevision].gif".
this is very nice, but how about the user not upload any picture?
can i use this if (!$this->post['avatarurl'])
{
$this->post['avatarurl'] = "images/avatars/defaultavatar.png";
}
if ($this->registry->userinfo['showavatars'])
{
$show['avatar'] = true;
}
into profilepic? nah, when i use <if condition="$show['profilepic']"> in template, it does not work.
i just want to show profilepic like in memberlist like in memberinfo >_<
Lynne
03-27-2009, 10:11 PM
Basically you need to look at all the code used for avatars and duplicate the same code for use with profile pictures through either the use of plugins or code edits.
Why don't you just have the users upload their profile pictures into the avatar field? Then you don't have to go through all this?
vidan
03-27-2009, 10:23 PM
because i tried over 2 week and i really want to have this works >_< i try what dismounted told me, but as you see, im still open there open here, go site:vbulletin.com profile picture go here go there, ~_~
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.