vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Setting number of posts to allow use of a forum? (https://vborg.vbsupport.ru/showthread.php?t=320278)

K-fab 09-18-2015 02:10 PM

Setting number of posts to allow use of a forum?
 
I've searched here on the forums for the answer and keep coming up with nothing...

I have a forum (for sale section) that requires (well... it did) that a member have a minimum of 20 posts before they can post in it. Somehow this limiter's been removed and new members are able to post in it.

I've searched permissions and moderations for the forums, for the members, trying to find that little key, but alas, I've come up empty.

So can someone please tell me how to go about setting it up so my members must have a minimum of 20 posts before they can post in that section?

Thanks in advance.

Dave 09-18-2015 02:55 PM

A simple way to do this is by hooking at the newthread_start location.
AdminCP > Plugins & Products > Plugin Manager > Scroll to bottom and click add new plugin.

You can do something like:
PHP Code:

if($vbulletin->userinfo['posts'] < 100 && $_REQUEST['f'] == 54){
  
print_standard_redirect('You must have a post count of at least 100 to post in this section.'falsetrue);


< 100 means that if the user has less than 100 posts, they can not post.
$_REQUEST['f'] == 54, 54 is the ID of the forum.

K-fab 09-20-2015 01:23 PM

Thank you.

I'll have to look and see if there's something along this line installed by the previous owner of the forum. I know we had a 20 post minimum in place before people could post in the For Sale section, but can't for the life of me figure out why this would have turned off.

--------------- Added [DATE]1442763804[/DATE] at [TIME]1442763804[/TIME] ---------------

Okay, I've added the code (cut/pasted your example), made it 20 instead of 100 and the ID of the forum is 84 - so that's all set.

I see two boxes - Hook Location and Execution Order.
Hook Location is blank - do I leave it blank or ??
Execution Order has a 5 in it. Same thing - leave it alone or ??

--------

addition to this - I hit 'save and reload' and it's telling me to 'Please Complete All Required Fields', so obviously I can't leave hook location blank. What do select? There's a massive number of things to use.

I also see a box that says 'Product' - it's defaulting to vBulletin. Is that correct?

PinkMilk 09-20-2015 02:29 PM

"A simple way to do this is by hooking at the newthread_start" ;)

--------------- Added [DATE]1442766997[/DATE] at [TIME]1442766997[/TIME] ---------------

Cyb - Advanced Permissions Based on Post Count


All times are GMT. The time now is 02:13 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.01905 seconds
  • Memory Usage 1,719KB
  • 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
  • (1)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)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