PDA

View Full Version : Can someone please modify this hack to do this, If possible?


Rebel38
05-25-2003, 09:08 AM
Hi I just installed Mists "Minimum Posts to View Memberlist hack"
which can be found Here (https://vborg.vbsupport.ru/showthread.php?s=&threadid=48604) and I would like to know if it is possible to do the same thing, but making it so the member has to make 5 posts before they can view other members profiles?
I dont know the first thing about coding and would appreciate any help I can get.

Thanks in advance
Rebel38

Chris M
05-25-2003, 09:54 AM
Run this query in phpmyadmin:

INSERT INTO setting (settingid,settinggroupid,title,varname,value,desc ription,optioncode,displayorder) VALUES (NULL,7,'Minmimum Posts to view Profiles','profileminposts','0','Here you enter the number of posts a user must have before he/she can view a members profile.','','6');

Now open member.php, and find:

if ($action=="getinfo") {
$templatesused = "getinfo_sendpm,aol,icq,yahoo,getinfo_birthday,geti nfo_customfields,getinfo";
include("./global.php");
add after:
if ($bbuserinfo[posts] < $profileminposts) {
eval("standarderror(\"".gettemplate("error_profileminposts")."\");");
}

Now add a template called: error_profileminposts
Sorry you need at least $profileminposts posts before you can view this members profile.

:)

Satan

Rebel38
05-26-2003, 01:48 AM
Thanks hellsatan, Works great.
much appreciated for the mate.

Thanks
Rebel38

Chris M
05-26-2003, 11:57 AM
No problems:)

Satan