Log in

View Full Version : Forum Activity Check For Forum Access (Per Forum)


sabret00the
02-23-2005, 10:00 PM
FAQ
i wrote it but when i tried to bullet it, it went all pear shaped, in short, no more questions :p

thanks to Dean for the assistance :)

in "/forums/forumdisplay.php" find
// check if there is a forum password and if so, ensure the user has it set
verify_forum_password($foruminfo['forumid'], $foruminfo['password']);

and addove it add

$facffa_checkforums = explode(",", $vboptions['facffa_checkforums']);
$facffa_excludeusergroups = explode(",", $vboptions['facffa_excludeusergroups']);
if (($vboptions['facffa_checkforumactivity'] AND in_array($foruminfo['forumid'], $facffa_checkforums) AND !in_array($bbuserinfo['usergroupid'], $faffa_excludeusergroups)))
{
// forum activity check
$definedtime = ($vboptions['facffa_checkforumactivitytime'] * 86400);
$limit = TIMENOW - $definedtime;
$recentpostcount = $DB_site->query_first("
SELECT COUNT(*) AS total
FROM " . TABLE_PREFIX . "post
WHERE userid = $bbuserinfo[userid]
AND dateline >= $limit
");

if ($recentpostcount['total'] < $vboptions['facffa_checkforumactivityposts'])
{
eval(print_standard_error('facffa_checknotenoughpo sts'));
}
}


now shoot over to the "/forums/showthread.php" and find
// ************************************************** *******************************
// get thread info
$thread = verify_id('thread', $threadid, 1, 1);
$threadinfo = &$thread;

and below that add

$facffa_checkforums = explode(",", $vboptions['facffa_checkforums']);
$facffa_excludeusergroups = explode(",", $vboptions['facffa_excludeusergroups']);
if (($vboptions['facffa_checkforumactivity'] AND in_array($threadinfo['forumid'], $facffa_checkforums) AND !in_array($bbuserinfo['usergroupid'], $faffa_excludeusergroups)))
{
// forum activity check
$definedtime = ($vboptions['facffa_checkforumactivitytime'] * 86400);
$limit = TIMENOW - $definedtime;
$recentpostcount = $DB_site->query_first("
SELECT COUNT(*) AS total
FROM " . TABLE_PREFIX . "post
WHERE userid = $bbuserinfo[userid]
AND dateline >= $limit
");

if ($recentpostcount['total'] < $vboptions['facffa_checkforumactivityposts'])
{
eval(print_standard_error('facffa_checknotenoughpo sts'));
}
}

now you need to add the phrase
You have not had enough forum activity in order to access this forum, please become more active then check back there-after.
this slots in front end-error messages :)

now what else was there, oh yeah the options
direct your browser to http://www.mydomain.com/forums/admincp/options.php?do=addgroup
(please don't take that literally)

and then put this in the boxes

Varname: facffa
Title: Forum Activity Check For Forum Access (Per Forum)
vB Default: No

once you done that you should be in there? i hoe so cos you need to populate that group with, oh yeah you do that by clicking this http://www.mydomain.com/forums/admincp/options.php?do=addsetting&grouptitle=facffa

Varname: facffa_checkforumactivity
Title: Turn This Option On?
Description: Turning this on will mean that this hack will start working and checking if users have enough posts in order to access specified forums and their threads
Option Code: yesno
Default: no
vBulletin Default: no

Varname: facffa_checkforumactivitytime
Title: Required Time For Forum Activity
Description: This is the option for how many posts in XX days they need to access the forum.
Option Code:
Default: 1
vBulletin Default: no

Varname: facffa_checkforumactivityposts
Title: Required Posts For Forum Activity
Description: This is the setting for how many posts they need in the above time in order to access that forum.
Option Code:
Default: 1
vBulletin Default: no

Varname: facffa_checkforums
Title: Protected Forums
Description: These are the forums id's you want to protect with this hack, please seperate them with a comma.
Option Code:
Default:
vBulletin Default: no

Varname: facffa_excludeusergroups
Title: Excluded Usergroups
Description: These are the usergroup id's you want to exclude from having to actually post, please seperate them with a comma.
Option Code:
Default:
vBulletin Default: no

now i aint had time to test this so test it on your test board and let me know if you get a chance to test it before me, heh the nature of beta huh

even if this hack don't work, feed it to your search engine, by that i mean www.ebslive.com :cool: and stop stealing my smilies :lol:

and i'm spent.

UPDATED: 24/04/05 19:28

DeMiNe0
02-24-2005, 12:32 PM
What does this hack do? Have any screenshots?

sabret00the
02-24-2005, 12:36 PM
see the faq does come in handy, stupid Standard editor :tantrum:

ok say you got a forum called chit-chat, but you run a car site, you want to know your users are there to more than just chit-chat right and actually talk about what's really good ^o) (the cars) so you install this for the chit-chat forum and then voila they can't access the chit-chat forum unless they've made 50 posts in 2 days.

Guest190829
02-24-2005, 01:27 PM
Very nice, I will try this. Thanks sabret00the ;)

esfron
03-21-2005, 11:43 PM
I got:
Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/.../forumdisplay.php on line 217


// get permission to view forum
$_permsgetter_ = 'forumdisplay';
$forumperms = fetch_permissions($forumid);
if (!($forumperms & CANVIEW))
{
print_no_permission();
}

if (($vboptions['facffa_checkforumactivity'] AND in_array($foruminfo['forumid'], $vboptions['facffa_checkforums'])))
{
// forum activity check
$definedtime = ($vboptions['facffa_checkforumactivitytime'] * 86400);
$limit = TIMENOW - $definedtime;
$recentpostcount = $DB_site->query_first("
SELECT COUNT(*) AS total
FROM " . TABLE_PREFIX . "post
WHERE userid = $bbuserinfo['userid'] <- Line 217
AND dateline >= $limit
");

if ($recentpostcount['total'] < $vboptions['facffa_checkforumactivityposts'])
{
eval(print_standard_error('facffa_checknotenoughpo sts'));
}
}

lasto
03-21-2005, 11:57 PM
can u change the number of posts required etc to say 5 per day ? - but even that may seem a lot to some people.
You are basically forcing them to post and a lot of people dont like that - but i do :)

esfron
03-22-2005, 12:06 AM
No forcing. You can turn on this option or not... fix the days, etc.

One screen is worth a 1000 words. See Screenshot.

lasto
03-22-2005, 12:15 AM
arg right well then its a good hack then as u can set it for example to say they gotta have 2 posts in last week etc or even 2 in last month.

Should cut down on zero posters as well.

sabret00the
03-22-2005, 07:14 AM
I got:
Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/.../forumdisplay.php on line 217


// get permission to view forum
$_permsgetter_ = 'forumdisplay';
$forumperms = fetch_permissions($forumid);
if (!($forumperms & CANVIEW))
{
print_no_permission();
}

if (($vboptions['facffa_checkforumactivity'] AND in_array($foruminfo['forumid'], $vboptions['facffa_checkforums'])))
{
// forum activity check
$definedtime = ($vboptions['facffa_checkforumactivitytime'] * 86400);
$limit = TIMENOW - $definedtime;
$recentpostcount = $DB_site->query_first("
SELECT COUNT(*) AS total
FROM " . TABLE_PREFIX . "post
WHERE userid = $bbuserinfo['userid'] <- Line 217
AND dateline >= $limit
");

if ($recentpostcount['total'] < $vboptions['facffa_checkforumactivityposts'])
{
eval(print_standard_error('facffa_checknotenoughpo sts'));
}
}

change

// get permission to view forum
$_permsgetter_ = 'forumdisplay';
$forumperms = fetch_permissions($forumid);
if (!($forumperms & CANVIEW))
{
print_no_permission();
}

if (($vboptions['facffa_checkforumactivity'] AND in_array($foruminfo['forumid'], $vboptions['facffa_checkforums'])))
{
// forum activity check
$definedtime = ($vboptions['facffa_checkforumactivitytime'] * 86400);
$limit = TIMENOW - $definedtime;
$recentpostcount = $DB_site->query_first("
SELECT COUNT(*) AS total
FROM " . TABLE_PREFIX . "post
WHERE userid = $bbuserinfo['userid']
AND dateline >= $limit
");

if ($recentpostcount['total'] < $vboptions['facffa_checkforumactivityposts'])
{
eval(print_standard_error('facffa_checknotenoughpo sts'));
}
}

to

// get permission to view forum
$_permsgetter_ = 'forumdisplay';
$forumperms = fetch_permissions($forumid);
if (!($forumperms & CANVIEW))
{
print_no_permission();
}

if (($vboptions['facffa_checkforumactivity'] AND in_array($foruminfo['forumid'], $vboptions['facffa_checkforums'])))
{
// forum activity check
$definedtime = ($vboptions['facffa_checkforumactivitytime'] * 86400);
$limit = TIMENOW - $definedtime;
$recentpostcount = $DB_site->query_first("
SELECT COUNT(*) AS total
FROM " . TABLE_PREFIX . "post
WHERE userid = $bbuserinfo[userid]
AND dateline >= $limit
");

if ($recentpostcount['total'] < $vboptions['facffa_checkforumactivityposts'])
{
eval(print_standard_error('facffa_checknotenoughpo sts'));
}
}

esfron
03-22-2005, 12:23 PM
Got:

Warning: in_array(): Wrong datatype for second argument in /forumdisplay.php on line 219


Line 219 -> if (($vboptions['facffa_checkforumactivity'] AND in_array($foruminfo['forumid'], $vboptions['facffa_checkforums'])))
{
// forum activity check
$definedtime = ($vboptions['facffa_checkforumactivitytime'] * 86400);
$limit = TIMENOW - $definedtime;
$recentpostcount = $DB_site->query_first("
SELECT COUNT(*) AS total
FROM " . TABLE_PREFIX . "post
WHERE userid = $bbuserinfo[userid]
AND dateline >= $limit
");

if ($recentpostcount['total'] < $vboptions['facffa_checkforumactivityposts'])
{
eval(print_standard_error('facffa_checknotenoughpo sts'));
}
}

and the following error:

vBulletin Message:
Unable to add cookies, header already sent.
File: /home/.../includes/init.php
Line: 27

sabret00the
03-22-2005, 02:02 PM
find:
if (($vboptions['facffa_checkforumactivity'] AND in_array($foruminfo['forumid'], $vboptions['facffa_checkforums'])))
{
// forum activity check
$definedtime = ($vboptions['facffa_checkforumactivitytime'] * 86400);
$limit = TIMENOW - $definedtime;
$recentpostcount = $DB_site->query_first("
SELECT COUNT(*) AS total
FROM " . TABLE_PREFIX . "post
WHERE userid = $bbuserinfo[userid]
AND dateline >= $limit
");

if ($recentpostcount['total'] < $vboptions['facffa_checkforumactivityposts'])
{
eval(print_standard_error('facffa_checknotenoughpo sts'));
}
}

and replace with

$facffa_checkforums = explode(",", $vboptions['facffa_checkforums']);

if (($vboptions['facffa_checkforumactivity'] AND in_array($threadinfo['forumid'], $facffa_checkforums)))
{
// forum activity check
$definedtime = ($vboptions['facffa_checkforumactivitytime'] * 86400);
$limit = TIMENOW - $definedtime;
$recentpostcount = $DB_site->query_first("
SELECT COUNT(*) AS total
FROM " . TABLE_PREFIX . "post
WHERE userid = $bbuserinfo['userid']
AND dateline >= $limit
");

if ($recentpostcount['total'] < $vboptions['facffa_checkforumactivityposts'])
{
eval(print_standard_error('facffa_checknotenoughpo sts'));
}
}

sabret00the
03-22-2005, 02:07 PM
first post updated to fix post instanced. :)

esfron
03-22-2005, 03:11 PM
It seems to work. My server just crashed... I'll doublecheck tonight to be sure.

Thank you very much
I have been waiting for this a long time

Click Install

sabret00the
03-22-2005, 03:22 PM
It seems to work. My server just crashed... I'll doublecheck tonight to be sure.

Thank you very much
I have been waiting for this a long time

Click Install
thank you, you done all the testing i never got around to doing :)

esfron
03-22-2005, 07:46 PM
OK. It works fine today. I'll check back tomorrow.

- The forums id's separated with a space i.e. 2 26 124 does'nt work. It is working with a comma i.e. 2,26,124.

- It would be nice to make changes so members of certain usergroups (moderators, admin, etc) could be excluded from the activity. This could maybe be a future update. :)

Thanks

Llamaman
04-18-2005, 08:57 PM
I am interested in this hack also.

- It would be nice to make changes so members of certain usergroups (moderators, admin, etc) could be excluded from the activity. This could maybe be a future update.

If this feature was introduced then I would defenetly install and make use of this hack!

sabret00the
04-18-2005, 09:00 PM
I'll add it in the morning :)

esfron
04-24-2005, 04:54 PM
I'll add it in the morning :)

Thanks.

sabret00the
04-24-2005, 05:30 PM
Thanks.
done already :)

esfron
04-24-2005, 06:34 PM
done already :)

Parse error: parse error, unexpected T_STRING, expecting ']' in /home.../forumdisplay.php on line 226
I added ['usergroupid'] in forumdisplay and showthread but I got Warning: in_array(): Wrong datatype for second argument in /forumdisplay.php on line 223

It does'nt work with id=6 (admin). Got "You have not had enough forum activity in order to access this forum, please become more active then check back there-after."

sabret00the
04-24-2005, 06:45 PM
what's line 223?

esfron
04-24-2005, 06:51 PM
223:

if (($vboptions['facffa_checkforumactivity'] AND in_array($foruminfo['forumid'], $facffa_checkforums) AND !in_array($bbuserinfo['usergroupid'], $faffa_excludeusergroups)))

esfron
04-24-2005, 07:41 PM
Right now as user, I made 1 posts in 1 day. I tryed to access to protected forum but I get:

Unable to add cookies, header already sent.
File: /home.../includes/init.php
Line: 27

Init.php is fine because the hack is working without the usergroups update. I replaced the last forumdisplay&showthread by the old ones.

esfron
04-25-2005, 01:44 PM
OK. I fixed the last one.

Right now, I get "Warning: in_array(): Wrong datatype for second argument in /showthread.php on line 319". Usergroups are not going to be excluded.

319 -> if (($vboptions['facffa_checkforumactivity'] AND in_array($threadinfo['forumid'], $facffa_checkforums) AND !in_array($bbuserinfo['usergroupid'], $faffa_excludeusergroups))) Any idea ?
.

sabret00the
04-25-2005, 01:50 PM
can you put 27 in the excuded usergroups in the vboptions and tell me if you still get the error please.

esfron
04-25-2005, 02:17 PM
Usergroups:

- not connected (ID=1): error is:
Warning: in_array(): Wrong datatype for second argument in /showthread.php on line 319
AND
You have not had enough forum activity in order to access this forum, please become more active then check back there-after.


- connected member4 (ID=27), error is:
Warning: in_array(): Wrong datatype for second argument in /showthread.php on line 319
AND
Unable to add cookies, header already sent.
File: /home.../includes/init.php
Line: 27


Fix for forumdisplay:

if (($vboptions['facffa_checkforumactivity'] AND in_array($threadinfo['forumid'], $facffa_checkforums) AND !in_array($bbuserinfo['usergroupid'], $faffa_excludeusergroups)))
{

Marco van Herwaarden
04-25-2005, 08:20 PM
What php version are you running?

esfron
04-25-2005, 08:54 PM
Php 4.3.11

Darmak
05-14-2005, 02:12 AM
Usergroups:

- not connected (ID=1): error is:
Warning: in_array(): Wrong datatype for second argument in /showthread.php on line 319
AND
You have not had enough forum activity in order to access this forum, please become more active then check back there-after.


- connected member4 (ID=27), error is:
Warning: in_array(): Wrong datatype for second argument in /showthread.php on line 319
AND
Unable to add cookies, header already sent.
File: /home.../includes/init.php
Line: 27


Fix for forumdisplay:

if (($vboptions['facffa_checkforumactivity'] AND in_array($threadinfo['forumid'], $facffa_checkforums) AND !in_array($bbuserinfo['usergroupid'], $faffa_excludeusergroups)))
{
To solve your problem replace in your forumdisplay.php & showthread.php this line

if (($vboptions['facffa_checkforumactivity'] AND in_array($threadinfo['forumid'], $facffa_checkforums) AND !in_array($bbuserinfo['usergroupid'], $faffa_excludeusergroups)))
{

Whit

if (($vboptions['facffa_checkforumactivity'] AND in_array($threadinfo['forumid'], $facffa_checkforums) AND !in_array($bbuserinfo['usergroupid'], $facffa_excludeusergroups)))
{

TYPO error... :p

esfron
05-14-2005, 09:23 AM
Es bueno. Muchas gracias amigo Darmark de M?xico.
Thank you very much, Sabret00the. :up:

Nick0r
05-15-2005, 07:20 PM
I'd like a mod to this, it could work one of two ways

a) User needs xx posts BEFORE his xx per week starts.
b) User is in additional usergroup X then his XX per week starts.

Either way works good for me, no need to have both.

sabret00the
05-16-2005, 02:28 PM
User is in additional usergroup X then his XX per week starts.
it's as simple as adding AND in_array($bbuserinfo[membergroupid], X,X,X) to the conditionals.

KevinL
07-05-2005, 01:51 AM
This works really well!

Thanks! :)