PDA

View Full Version : allow only users with xx posts to post attachments


dxb
10-25-2001, 10:59 PM
I was thinking of enabling the attachment feature but I dont want this feature to be abused by new members

can anybody put a limit of posts to be able to post an attachment

dxb
10-28-2001, 01:07 PM
anybody ... any help

dxb
10-30-2001, 08:02 PM
*bump*

Scott MacVicar
10-30-2001, 08:16 PM
open admin/functions.php

look for

if (strstr($attachment,"..")!="") {
//security error
eval("standarderror(\"".gettemplate("error_attacherror")."\");");
exit;
}

below add

if ($bbuserinfo["posts"] < 50) {
//No Posting Attachments
eval("standarderror(\"You don't have enough posts to post attachments.\");");
exit;
}

replace 50 with number of posts they need to post attachments.

dxb
10-30-2001, 08:42 PM
I dont know how to thank you PPN

all I can say thanks Alot man :)

Scott MacVicar
10-30-2001, 08:46 PM
no problem it was just a quick 2 minute thing :P