Having a bit of trouble with this...
I have the two image required in the /forums/images/avatars folder on my server, BUT, i still get a little red X in a box for someone who doesnt have an avatar set
here is the code in my index.php
PHP Code:
//avatar images
if ($bbuserinfo[userid]!=0) {
$avatarurl=getavatarurl($bbuserinfo[userid]);
if ($avatarurl=='') {
$avatarimage='<a href="usercp.php?s='.$session[sessionhash].'"><img border="0" src="images/avatars/noavatar.gif"></a>';
}
$avatarimage='<img border="0" src="'.$avatarurl.'">';
} else {
$avatarimage='<a href="register.php?s='.$session[sessionhash].'&action=signup"><img border="0" src="images/avatars/guestavatar.gif"></a>';
}
//end avatar images
I used a few fixes from the rest of this thread like removing the borders and making it linkk to the usercp to set an avatar.
please help?