Also, when doing the manual install of the paperclip addon, in the memberlist.php, where it says to find:
PHP Code:
$userinfo[pmlink] = " "; })
This is not found.
This is what is here instead:
PHP Code:
if ($userinfo[receivepm]) {
eval("\$userinfo[pmlink] = \"".gettemplate("postbit_sendpm")."\";");
} else {
$userinfo[pmlink] = " ";
}
Where in the above code does the following go?
PHP Code:
// Add a paperclip to the left of the username in the memberlist.
$attachcount=$DB_site->query_first("SELECT COUNT(*) AS count
FROM viPortfolio
WHERE userid = '".$userinfo['userid']."'
AND enddate is NULL
");
if ( $attachcount['count'] > 0 ) {
if ( $attachcount['count'] > 1 )
$alt="Member ".$userinfo['username']." has ".$attachcount['count']." attachments in there portfolio.";
else
$alt="Member ".$userinfo['username']." has ".$attachcount['count']." attachment in there portfolio.";
$attachment = "<A HREF='$appname.php?s=$session[sessionhash]&userid=".$userinfo['userid']."&action=view'>";
$attachment .= "<IMG BORDER=0 SRC='https://vborg.vbsupport.ru/vbimages/paperclip.gif' ALT='".$alt."' TITLE='".$alt."'></A>";
} else {
$attachment = '';
}
// Add a paperclip to the left of the username in the memberlist.
--------------------------------------
When it says to click on the
memberlist tab, first of all, it's by default on memberlistbit template, not memberlist....and above memberlistbit (default template set), it shows the following error:
Warning: Missing argument 7 for makechoosercode() in /home/apok/public_html/forums/admin/adminfunctions.php on line
I decided to try to do that one manually, but found the same problems as I did in 1.07.
It says:
Quote:
Next, click on the tab called memberlist above the text box on your right.
Go to line number 52 and look for:
(Three page down keys) colspan="6"
Replace the number 7 with a number 6
|
I think you are meaning to say "Replace the number 6 with a number 7", no?
-------------------------------------------
Also...still, there are no admin cp settings appearing.