Go Back   vb.org Archive > vBulletin Modifications > vBulletin 3.8 Modifications > vBulletin 3.8 Add-ons

Reply
 
Thread Tools
Cyb - Prevent Newbies from Posting to Wrong Forum Details »»
Cyb - Prevent Newbies from Posting to Wrong Forum
Version: 2.2.1, by Valter Valter is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Category: New Posting Features - Version: 3.8.x Rating:
Released: 01-09-2009 Last Update: 01-09-2009 Installs: 118
Uses Plugins Auto-Templates
 
No support by the author.

Info:
Members of selected usergroups will need to confirm destination forum for the new thread if their post count is less than the number you choose. If member is not in the correct forum, he will be able to choose a different one from a drop-down menu, then continue with posting.


Installation:
1. Import XML file (as product): AdminCP > Plugin System > Manage Products > [Add/Import Product]


To set options:
Go to AdminCP > vBulletin Options > Cyb Prevent Newbies from Posting to Wrong Forum


Versions:
v1.0 - Apr 29. 2006.
-First Release
v1.5 - May 10. 2006.
-Fixed few bugs
-Improved functionality and compatibility
-Now users with custom styles can use hack regularly (read installation step #2)
-Added option to choose affected usergroups (view updated screenshots)
-Please uninstall old version before installing new one
v1.6 - Aug 04. 2006.
-Release of this hack for vB v3.6
v1.7 - Aug 05. 2006.
-Uncached template bug fix
v1.8 - Sep 29. 2006.
-Several improvements:
*three templates removed
*javascript code improved
*phrases used instead of settings
*added links to phrases to settings page for easier customizations/translations
*confirmation dialog look improved
*easier usergroup selection (thanks to Andreas)
-Added Product Version Checking
v1.9 - Nov 11. 2006.
-Updated javascript code to improve compatibility with some browsers
-Fixed error which maked code not Valid XHTML 1.0 Transitional
v2.0 - Nov 12. 2006.
-Forum description for selected destination forum shown (automatically hidden if description field is blank)
-Option to disable new function above
v2.1 - Jul 27. 2007.
-Fixed bug (WYSIWYG editor locked in Firefox after destination forum confirmation)
-Improved group membership checking (works now for supplementary usergroups too)
-General code cleanup and optimization
v2.2 - May 03. 2008.
-Compatible with vBulletin 3.7
-Minor bugs fixed
v2.2.1 - May 04. 2008.
-Fixed bug with "affected usergroups" setting


If you like this hack please click INSTALL.

Download Now

File Type: zip Cyb - Prevent Newbies from Posting to Wrong Forum 2.2.1.zip (3.7 KB, 564 views)

Screenshots

File Type: jpg acp.jpg (48.1 KB, 0 views)
File Type: jpg confirm.jpg (47.5 KB, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #22  
Old 11-06-2009, 10:43 PM
EcoCav EcoCav is offline
 
Join Date: Oct 2007
Posts: 105
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by EcoCav View Post
After I installed this, it wont show the forums or the dropdown list, only the description.
I have tried it on all for styles, and on the standard style too.

Quote:
Originally Posted by EcoCav View Post
Any update or information on this?

Just checking to see if this has been fixed or if anyone knows away around this issue?
Reply With Quote
  #23  
Old 11-07-2009, 12:34 AM
Nadeemjp Nadeemjp is offline
 
Join Date: Aug 2008
Location: Japan
Posts: 601
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hey will you be considering to upgrade for vb4? cause i dont wanna loose this mod
Reply With Quote
  #24  
Old 12-18-2009, 05:44 PM
Freesteyelz's Avatar
Freesteyelz Freesteyelz is offline
 
Join Date: Jan 2006
Posts: 1,552
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by EcoCav View Post
Just checking to see if this has been fixed or if anyone knows away around this issue?
If your Forum Jump Menu is disabled, try enabling it. That worked for me.
Reply With Quote
  #25  
Old 12-18-2009, 06:00 PM
Freesteyelz's Avatar
Freesteyelz Freesteyelz is offline
 
Join Date: Jan 2006
Posts: 1,552
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If you want only selected forums affected try:

This step only addresses which forums are affected when creating a new thread. It does not affect the forums listed in the Jump Menu.

Quote:
Originally Posted by gigaenvy View Post
Thanks for this coolness!

Is there a way to only enable this for certain forums and then to only select specified forums from the dropdown?

Go into Plugin Manager --> Cyb - Prevent Newbies from Posting to Wrong Forum - MN (newthread_start)

Find:

Code:
   if (($vbulletin->options['cyb_preventnewthread_pcneeded'] > $vbulletin->userinfo['posts']) AND is_member_of($vbulletin->userinfo, split(',', $vbulletin->options['cyb_preventnewthread_affectedgroups'])) AND ($vbulletin->GPC['fcon']!=1) AND ($_REQUEST['do']!='postthread'))

and Replace it with:

Code:
   if (($vbulletin->options['cyb_preventnewthread_pcneeded'] > $vbulletin->userinfo['posts']) AND is_member_of($vbulletin->userinfo, split(',', $vbulletin->options['cyb_preventnewthread_affectedgroups'])) AND ($vbulletin->GPC['fcon']!=1) AND ($_REQUEST['do']!='postthread') AND in_array($forumid, array(x,y,z)))

Where "x,y,z" are replace it with your Forum ID's that you want affected. To add more forums just separate the ID's with a comma. See if that works.
Reply With Quote
  #26  
Old 12-19-2009, 03:51 PM
gigaenvy gigaenvy is offline
 
Join Date: Jul 2004
Posts: 84
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Freesteyelz View Post
If you want only selected forums affected try:

This step only addresses which forums are affected when creating a new thread. It does not affect the forums listed in the Jump Menu.




Go into Plugin Manager --> Cyb - Prevent Newbies from Posting to Wrong Forum - MN (newthread_start)

Find:

Code:
   if (($vbulletin->options['cyb_preventnewthread_pcneeded'] > $vbulletin->userinfo['posts']) AND is_member_of($vbulletin->userinfo, split(',', $vbulletin->options['cyb_preventnewthread_affectedgroups'])) AND ($vbulletin->GPC['fcon']!=1) AND ($_REQUEST['do']!='postthread'))

and Replace it with:

Code:
   if (($vbulletin->options['cyb_preventnewthread_pcneeded'] > $vbulletin->userinfo['posts']) AND is_member_of($vbulletin->userinfo, split(',', $vbulletin->options['cyb_preventnewthread_affectedgroups'])) AND ($vbulletin->GPC['fcon']!=1) AND ($_REQUEST['do']!='postthread') AND in_array($forumid, array(x,y,z)))

Where "x,y,z" are replace it with your Forum ID's that you want affected. To add more forums just separate the ID's with a comma. See if that works.
Thanks Freestyle for replying and taking the time to help out!
Reply With Quote
  #27  
Old 02-23-2010, 08:43 PM
Valter Valter is offline
 
Join Date: Aug 2005
Location: Sarajevo
Posts: 2,432
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Released for vBulletin 4, here:
https://vborg.vbsupport.ru/showthread.php?t=236718
Reply With Quote
  #28  
Old 12-30-2010, 11:11 AM
rosqa93 rosqa93 is offline
 
Join Date: Dec 2010
Posts: 8
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

click to contine and open new thread?
Reply With Quote
  #29  
Old 05-14-2011, 03:52 AM
Elric Elric is offline
 
Join Date: Dec 2008
Location: Germany
Posts: 65
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

TOP addon, thanks.
Reply With Quote
  #30  
Old 05-03-2012, 08:18 PM
Taleempoint Taleempoint is offline
 
Join Date: Jun 2011
Location: www.taleempoint.com
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thank uuu
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 03:57 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.04377 seconds
  • Memory Usage 2,326KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (4)bbcode_code
  • (5)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (9)postbit
  • (3)postbit_attachment
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete