vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Beta Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=34)
-   -   Forum Activity Check For Forum Access (Per Forum) (https://vborg.vbsupport.ru/showthread.php?t=76963)

sabret00the 03-22-2005 02:02 PM

find:
PHP Code:

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_checknotenoughposts')); 
        } 
    } 

and replace with
PHP Code:

$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_checknotenoughposts'));
        }
    } 


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

Quote:

Originally Posted by esfron
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.

Quote:

- 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

Quote:

Originally Posted by sabret00the
I'll add it in the morning :)

Thanks.

sabret00the 04-24-2005 05:30 PM

Quote:

Originally Posted by esfron
Thanks.

done already :)

esfron 04-24-2005 06:34 PM

Quote:

Originally Posted by sabret00the
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."


All times are GMT. The time now is 08:10 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01308 seconds
  • Memory Usage 1,756KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_php_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete