vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   minimum post to view threads (https://vborg.vbsupport.ru/showthread.php?t=58347)

Rampag33 11-03-2003 06:05 PM

Thx but I need a minimum post to view a thread
that will make it to where you need a certain amount of post to make a new thread.

Ii'm looking for one to view a thread.

assassingod 11-03-2003 06:09 PM

Whops, I edited the wrong file. Let me fix:)

assassingod 11-03-2003 06:14 PM

Open showthread.php and find:
PHP Code:

if ($noshutdownfunc) { 

Above add:
PHP Code:

if ($bbuserinfo[posts] < 20)
{
eval(
"standarderror(\"".gettemplate("error_notenoughposts")."\");");


(You can change 20 to whatever you want)

Create a new template called 'error_notenoughposts' with the contents:
Code:

You do not have enough posts to view this thread
Keep in mind that the only way users will be able to post is via threads

Rampag33 11-03-2003 06:38 PM

from this code it looks like it would do all threads, and I need to to specific forums for this

ex. general chat - minum would be 0
for movies minimum would be 20

assassingod 11-03-2003 06:47 PM

Alright, will work in it

Rampag33 11-03-2003 09:27 PM

thank you

assassingod 11-04-2003 06:24 AM

Do something like this:
find:
PHP Code:

if ($noshutdownfunc) { 

above:
PHP Code:

if ($bbuserinfo['posts'] < 20 AND $thread['forumid'] == 4)
{
  eval(
"standarderror(\"".gettemplate("error_notenouoghposts")."\");");


and create the template that i mentioned above

and for every forum you want to add, place after 4
PHP Code:

OR $bbuserinfo['posts'] == XX AND $thread['forumid'] == XX 


Rampag33 11-04-2003 01:33 PM

unfortunately it didn't work. I made the forum count 9999 just to make damn sure I couldn't get in it and double checc the forumid it didn't work.

Lesane 11-04-2003 02:13 PM

The code of 'assassingod' is good and therefor it must work. Are you sure that you mean no access to threads or do you mean that you want to limit the access to forums (so no view of threads listed in that forum, file: forumdisplay.php) ?

Sylvus 11-04-2003 02:24 PM

This code worked for me.

Code:

if ($bbuserinfo['posts'] < 4000 AND $thread['forumid'] == 35)
{
  eval("standarderror(\"".gettemplate("error_notenouoghposts")."\");");
}

My subforum #35 (the Announcement Forum) would not let me view any thread within that forum #35 since I had under 4000 posts. I could still go into the Announcement Forum and see all the threads that were posted, but attemping to read any of them barfed out the error template noted above (which you must create).

Only thing I can say is you have the wrong forumid for the forum you are attemping to view.

If your forums are like this:

The Bar
- General Chit Chat
- Spam stuff
- Hot women

And you want this code to only work for General Chit Chat, it's the General Chit Chat forumid # that you must use and not "The Bar" forumid.

v2.3.0 running here. Works like a charm! Thanks assassin!

Syl...


All times are GMT. The time now is 10:22 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.00993 seconds
  • Memory Usage 1,736KB
  • 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
  • (5)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)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