I just upgraded from Photopost 4.8.6 to 5.13 with vb3 integration (version 3.0.8). Everything seems to work fine after the upgrade except the avatars are not seen with user comments. There is no red X like some people have been complaining about, it simply looks like the avatar setting is turned off (which it is not). The signatures are working fine and I am able to login using
VB creds. so the integration seems to be working. BTW, this was working before the upgrade. I have read through the forums searching for any avatar problems and I have checked the settings that everyone else has had problems with. We are storing the avatars in the Database (using image.php).
This is what the avatar section of my vb3.php looks like:
if ( $hasav != "" ) {
if ( isset($avpath) )
$userprofile[6] = "<img src=\"{$Globals['vbulletin']}/$avpath\" border=\"0\">"; // Avatar
elseif ( $vboptions['usefileavatar'] && $hasav == 1 )
$userprofile[6] = "<img src=\"{$Globals['vbulletin']}/$vboptions[avatarurl]/avatar{$cuserid}_{$avrev}.gif\" border=\"0\">"; // Avatar
elseif ( $hasav == 1 )
$userprofile[6] = "<img src=\"{$Globals['vbulletin']}/image.php?u=$cuserid\" border=\"0\">"; // Avatar
else
$userprofile[6] = ""; // Avatar
}
I have all the avatar settings in the admin set to yes (even set them to no and back to yes).
I know it has to be something simple and probably something that I have overlooked. Any help would be great!!