Also, while in my admin control panel, when I click on "View all member donors" the icons next to the names are absent and have an X. I went into donation_admin.php and changed some stuff...
Quote:
$avatarurl = $vboptions['bburl']."/".$user_row['avatarpath'];
to
$avatarurl = $vboptions['bburl']."/forums/".$user_row['avatarpath'];
|
and
Quote:
$avatarurl = $vboptions['bburl']."/customavatars/avatar".$row['userid']."_".$user_row['avatarrevision'].".gif";
} else {
$avatarurl = $vboptions['bburl']."/image.php?".$session['sessionurl']."u=".$row['userid']."&dateline=".$user_row['avatardateline'];
to
$avatarurl = $vboptions['bburl']."/forums/customavatars/avatar".$row['userid']."_".$user_row['avatarrevision'].".gif";
} else {
$avatarurl = $vboptions['bburl']."/forums/image.php?".$session['sessionurl']."u=".$row['userid']."&dateline=".$user_row['avatardateline'];
|
Is this ok to do to get that part working? The file IS located in the forums/admincp directory.