vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Have to be registered for 5 days before viewing a forums (https://vborg.vbsupport.ru/showthread.php?t=42075)

Shepski 08-08-2002 09:36 PM

Have to be registered for 5 days before viewing a forums
 
Following on from my "have to have 5 posts before viewing a forum" thread I am now requiring to make it 5 posts and 5 days since registering. The code I used for the first bit is:

Code:

//put that in forumdisplay just before
//GENERATE forumjump:

if ($bbuserinfo[usergroupid]==X AND $bbuserinfo[posts]<Y AND $foruminfo[forumid]==3)
{
eval("standarderror (\"".gettemplate ("error_minposts")."\");");
exit;
}


but I cant workout the syntax to make it 5 posts and has been registered for 5 days.

Anyone got any clues on this?

thanks

DarkDraco07 08-08-2002 10:58 PM

whats the point of soemthing like this?

ipscone 08-09-2002 01:10 AM

How can they make a post, if they can't even see the forum?

If they can't view it, they won't even know the subject of the forum, if they can't view it.

Lesane 08-09-2002 04:09 AM

Look on the code of my hack(the newthread.php part):
https://vborg.vbsupport.ru/showthrea...threadid=34935

Shepski 08-09-2002 07:55 AM

Quote:

Originally posted by ipscone
How can they make a post, if they can't even see the forum?

If they can't view it, they won't even know the subject of the forum, if they can't view it.

you are missing my point. Take a look at my forum (link in sig). Its only ONE forum that I need to regulate not all of them and its to stop the recent spate of people posting 5 spam posts in-order to get into the forum in question.

Quote:

Originally posted by Lesane
Look on the code of my hack(the newthread.php part):
https://vborg.vbsupport.ru/showthrea...threadid=34935

I take it its something to do with this line
Code:

$jointime = (time() - $bbuserinfo[joindate]) / 86400;
but I am not proficient enuf to understand how to get it too work :(

Lesane 08-09-2002 08:17 AM

Use this code (with the part of yours):

PHP Code:

$jointime = (time() - $bbuserinfo[joindate]) / 86400// amount of days registered
if (5>$jointime AND $bbuserinfo[usergroupid]==AND $bbuserinfo[posts]<AND $foruminfo[forumid]==3)
{
eval(
"standarderror(\"".gettemplate("error_minposts")."\");");




All times are GMT. The time now is 08:55 AM.

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.00937 seconds
  • Memory Usage 1,725KB
  • 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_code_printable
  • (1)bbcode_php_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (6)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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete