View Full Version : allow only users with xx posts to post attachments
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
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.
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
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.