Log in

View Full Version : Bigger attatchments for moderators?


MaDCaT75
09-03-2003, 09:03 PM
Is there a way to allow bigger attatchment files for mods and super mods? Like say have regular users be 84 k and moderators and super mods be 2mb ?

Brad
09-03-2003, 09:11 PM
I suppose you can do it via usergroups. ill have a look.

EvilLS1
09-03-2003, 10:11 PM
This will remove the attachment size limit completely for mods and admins, if thats helpful.

In admin/functions Find:

if ($maxattachsize!=0 and $filesize>$maxattachsize) {
// too big!
@unlink($attachment);
eval("standarderror(\"".gettemplate("error_attachtoobig")."\");");
exit;
}


Replace it with:

if ($maxattachsize!=0 and $filesize>$maxattachsize and $bbuserinfo[usergroupid]!=5 and $bbuserinfo[usergroupid]!=6 and $bbuserinfo[usergroupid]!=7) {
// too big!
@unlink($attachment);
eval("standarderror(\"".gettemplate("error_attachtoobig")."\");");
exit;
}

MaDCaT75
09-03-2003, 10:27 PM
Thanks I appreciate it :)