vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   Number Of Posts Needed To Reply to a Thread In Certain Forums (https://vborg.vbsupport.ru/showthread.php?t=44556)

Xenon 11-09-2002 12:08 PM

everything is possible, try to take out the other numbers in the if clause ;)

BigJohnson 11-10-2002 01:32 PM

No this one is different. The other hack was u need a certain amount of new threads in certain forums in order to reply in those forums.

Now I was asking that you need a certain amount of new threads in those same forums in order to make NEW THREADS ( not replies ) in these forums

21, 28, 35, 46, 53, 61

I hope you can help me out. Thanks. Please post the code to what I should do. This is my last request. ;) Thanks so much Xenon.

Xenon 11-10-2002 01:52 PM

ahh well, i see :)

no problem at all, just open newthread.php
find
PHP Code:

$foruminfo=getforuminfo($forumid);
if (
$foruminfo['allowposting']==0) {
  eval(
"standarderror(\"".gettemplate("error_forumclosed")."\");");


below add:
PHP Code:

$threads=$DB_site->query_first("SELECT COUNT(*) as counter FROM thread WHERE postuserid=$bbuserinfo[userid] AND forumid IN(13, 17, 19, 20, 26, 27, 33, 34, 44, 45, 51, 52, 58, 59)"); 
if(
in_array($foruminfo[forumid],array(212835465361)) and $threads[counter]<5show_nopermission(); 

that should be what you wanted

BigJohnson 11-10-2002 07:04 PM

OMG thanks so much man this works great. Keep up the great work Xenon

Xenon 11-10-2002 08:12 PM

i'll try ;)

you're welcome

BigJohnson 01-12-2003 09:27 PM

Quote:

Originally posted by Xenon
ahh, i see, well here we go :)

PHP Code:

$threads=$DB_site->query_first("SELECT COUNT(*) as counter FROM thread WHERE postuserid=$bbuserinfo[userid] AND forumid IN(13, 17, 19, 20, 26, 27, 33, 34, 44, 45, 51, 52, 58, 59)"); 
if(
in_array($threadinfo[forumid],array(13171920262733344445515258,  59 )) and $threads[counter]<5show_nopermission(); 

put this into newreply.php dircetly after:
PHP Code:

if (!$threadinfo[visible]) {
  
$idname="thread";
  eval(
"standarderror(\"".gettemplate("error_invalidid")."\");");
}
if (!
$threadinfo[open]) {
  if (!
ismoderator($threadinfo[forumid],"canopenclose")) {
    eval(
"standardredirect(\"".gettemplate("redirect_threadclosed")."\",\"showthread.php?s=$session[sessionhash]&threadid=$threadid\");");
    exit;
  }



how do u do this for sub forums though?

Like need a certain amount of posts in a certain subforum before u can post in this subforum?

BigJohnson 01-13-2003 09:31 AM

is there any code for subforums or is it all the same?

Xenon 01-13-2003 02:22 PM

it's the same if i understand you the right way...

BigJohnson 01-20-2003 07:59 PM

Quote:

Originally posted by Xenon
ahh, i see, well here we go :)

PHP Code:

$threads=$DB_site->query_first("SELECT COUNT(*) as counter FROM thread WHERE postuserid=$bbuserinfo[userid] AND forumid IN(13, 17, 19, 20, 26, 27, 33, 34, 44, 45, 51, 52, 58, 59)"); 
if(
in_array($threadinfo[forumid],array(13171920262733344445515258,  59 )) and $threads[counter]<5show_nopermission(); 

put this into newreply.php dircetly after:
PHP Code:

if (!$threadinfo[visible]) {
  
$idname="thread";
  eval(
"standarderror(\"".gettemplate("error_invalidid")."\");");
}
if (!
$threadinfo[open]) {
  if (!
ismoderator($threadinfo[forumid],"canopenclose")) {
    eval(
"standardredirect(\"".gettemplate("redirect_threadclosed")."\",\"showthread.php?s=$session[sessionhash]&threadid=$threadid\");");
    exit;
  }




This shows how many posts are needed until the user can reply to certain threads.

How do we make it that you need on AVERAGE of a certain amount of posts per MONTH (30 days = 720 hours).

I would love to see this. I hope Xenon or someone else can help me out. thanks.

Xenon 01-20-2003 08:21 PM

it would be something like that:

PHP Code:

$posts=$DB_site->query_first("SELECT COUNT(*) as counter FROM post WHERE userid=$bbuserinfo[userid] AND dateline>".(time()-3600*720)); 
if(
$posts[counter]< averageshow_nopermission(); 


BigJohnson 01-20-2003 09:18 PM

what would the full code look like if i wanted to insert it. I am a little confused. Thanks

BigJohnson 01-21-2003 12:05 AM

Can u make the whole code please using the forum ids from above.

13, 17, 19, 20, 26, 27, 33, 34, 44, 45, 51, 52, 58, 59

U need 5 new threads average monthly in these forum ids before u can post in those forum ids.

Thank you.

TECK 01-21-2003 12:25 AM

Quote:

Originally posted by BigJohnson
Is there a hack out where u need a certain amount of posts to reply to threads in certain forums?

If there is I would love to know wher ei can download it. Also If it is not made I think this would be a great feature. Can someone help me out please. Thanks so much.

I no there is a hack for a certain amount of posts to make a new thread but this is not what i want. Thanks so much for helping me if you can.

Check Lesane's profile.

BigJohnson 01-21-2003 12:27 AM

Teck this request is a little different. It is posts in certain forums, not just posts in general.

BigJohnson 01-21-2003 08:39 PM

bump

BigJohnson 01-23-2003 07:24 AM

Xenon please help.

BigJohnson 01-23-2003 07:44 AM

I dont no if i am doing this right but I did this. Can u help me out. I get a database error everytime i try to make a reply now. Don't know what to do.

PHP Code:

$posts=$DB_site->query_first("SELECT COUNT(*) as counter FROM post WHERE userid=$bbuserinfo[userid] AND forumid IN(23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 55, 56) AND dateline>".(time()-3600*720));
if(
in_array($threadinfo[forumid],array(2324252627282930323334353637385556)) and $posts[counter]<2show_nopermission(); 


Xenon 01-23-2003 08:37 AM

sorry, must have somehow overlooked this thread...

PHP Code:

$posts=$DB_site->query_first("SELECT COUNT(*) as counter FROM post, thread WHERE post.userid=$bbuserinfo[userid] AND post.threadid=thread.threadid AND thread.forumid IN(23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 55, 56) AND dateline>".(time()-3600*720));
if(
in_array($threadinfo[forumid],array(2324252627282930323334353637385556)) and $posts[counter]<2show_nopermission(); 


BigJohnson 01-23-2003 09:07 PM

OK one last thing hehe. I no this is alot but so sorry haha. Xenon your so amazing.

OK the hack that you just posted above says

U need a certain amount of NEW THREADS in certain forums in order to post REPLIES in certain forums. This also uses the average feature.

I didint test it to see if it works but I will.

Now what I am looking for is sorta like the above but just a little different. Instead of needing a certain amount of NEW THREADS in certain forums in order to post REPLIES in certain forums. I need a certain amount of NEW THREADS in certain forums in order to post NEW THREADS in certain forums.

The past post is below which shows you how u did it before. The addon I would like to add is the same thing u added on the other one just made for me. The average month thingy. I hope you could please do that.

Quote:

Originally posted by Xenon
ahh well, i see :)

no problem at all, just open newthread.php
find
PHP Code:

$foruminfo=getforuminfo($forumid);
if (
$foruminfo['allowposting']==0) {
  eval(
"standarderror(\"".gettemplate("error_forumclosed")."\");");


below add:
PHP Code:

$threads=$DB_site->query_first("SELECT COUNT(*) as counter FROM thread WHERE postuserid=$bbuserinfo[userid] AND forumid IN(23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 55, 56)"); 
if(
in_array($foruminfo[forumid],array(212835465361)) and $threads[counter]<5show_nopermission(); 

that should be what you wanted

Also is there any way I can have a counter i can put in the postbit and in the getinfo that shows how many NEW THREADS they have on average for the month? All I need is the variable. I can do the templates.

This average counter thing would be for just the new threads in these forum id's

23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 55, 56

Those Id's are in both little features. So it would show one counter that shows the average monthly NEW THREADS they have in these forum ids above.

I already have the counter that counts the NEW THREADS in those certain forums. I just want a little average info next to it so people know how many NEW THREADS they have average.

Thank you. I hope you understand hehe.

BigJohnson 01-25-2003 04:13 PM

bump

BigJohnson 01-26-2003 03:43 AM

Bump

BigJohnson 01-27-2003 07:59 AM

bump.

BigJohnson 01-27-2003 07:28 PM

I hope someone can help me with what is below this message.

Quote:

Originally posted by BigJohnson
OK one last thing hehe. I no this is alot but so sorry haha. Xenon your so amazing.

OK the hack that you just posted above says

U need a certain amount of NEW THREADS in certain forums in order to post REPLIES in certain forums. This also uses the average feature.

I didint test it to see if it works but I will.

Now what I am looking for is sorta like the above but just a little different. Instead of needing a certain amount of NEW THREADS in certain forums in order to post REPLIES in certain forums. I need a certain amount of NEW THREADS in certain forums in order to post NEW THREADS in certain forums.

The past post is below which shows you how u did it before. The addon I would like to add is the same thing u added on the other one just made for me. The average month thingy. I hope you could please do that.



Also is there any way I can have a counter i can put in the postbit and in the getinfo that shows how many NEW THREADS they have on average for the month? All I need is the variable. I can do the templates.

This average counter thing would be for just the new threads in these forum id's

23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 55, 56

Those Id's are in both little features. So it would show one counter that shows the average monthly NEW THREADS they have in these forum ids above.

I already have the counter that counts the NEW THREADS in those certain forums. I just want a little average info next to it so people know how many NEW THREADS they have average.

Thank you. I hope you understand hehe.



All times are GMT. The time now is 04:00 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.01461 seconds
  • Memory Usage 1,836KB
  • 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
  • (11)bbcode_php_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (23)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