Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.7 > vBulletin 3.7 Add-ons

Reply
 
Thread Tools
Forbid Users from Posting Links or Images if They Have Fewer than 15 Posts Details »»
Forbid Users from Posting Links or Images if They Have Fewer than 15 Posts
Version: 3.10, by lisss001 lisss001 is offline
Developer Last Online: Sep 2009 Show Printable Version Email this Page

Category: Add-On Releases - Version: 3.7.0 Rating:
Released: 05-08-2008 Last Update: 05-08-2008 Installs: 319
Uses Plugins Auto-Templates
 
No support by the author.

Just as the title says - if a user has fewer than 15 posts, he will be unable to post a link or an image within a message. This includes e-mail addresses and the system cannot even be fooled by the old user[at]email.com, we also locked that down.

Reduce your SPAM today!

It is a product. To install, simply import the xml via your Admin CP, Manage Products, Import New Product. No configuration is required.

Updated

12/05/2008
- Thankyou to Amykhar for allowing the future development of this modification.


Version 3.1

- Title re-created to make sense in Admin CP.
- Date updated added.
- Added protection so that users posting "user[at]user.com" cannot fool the system.

Please remember I did not create this modification, it was created by Amykhar and Erwin. Permission has been obtained for a re-release and future updates to be provided by myself. I will continue to support and update this modification as necessary in the future.

Please Remember, Click Install !

Support: I provide support as and when I can, members are free to help each other although posting code is not permitted.

VVV Screen-shots provided further down the page VVV

Certain members have been suggesting code edits for this modification. I have tried them and they just make this product stop working. Please do not attempt any manual code edits as it may stop the product from functioning. I am open to suggestions and improvements for the further development of this modification.

Please send me any code you would like included via P.M, DO NOT post it here. I can do testing and you will be credited if your code addition is added.

Feel free to offer support, suggestions and installation advice.

Show Your Support

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

Comments
  #72  
Old 09-05-2008, 12:55 PM
TitanJeff's Avatar
TitanJeff TitanJeff is offline
 
Join Date: Jul 2002
Posts: 208
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Has the issue of this shutting down the rss feeds been addressed yet? I'd love to use this if it has.
Reply With Quote
  #73  
Old 09-05-2008, 04:14 PM
aldamon aldamon is offline
 
Join Date: Oct 2001
Location: Durham, NC
Posts: 82
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I changed this to less than 1 post because 15 is too high for our board. Thanks for the hack!
Reply With Quote
  #74  
Old 10-01-2008, 06:36 PM
kevcj's Avatar
kevcj kevcj is offline
 
Join Date: Mar 2007
Location: East Texas
Posts: 334
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Does this add an extra query to the database or any extra server load?
Reply With Quote
  #75  
Old 10-01-2008, 07:01 PM
CtrlAltDel CtrlAltDel is offline
 
Join Date: Feb 2002
Location: Ohio
Posts: 107
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you, one of my forums got slammed today and the clean up was a PITA.
Reply With Quote
  #76  
Old 10-01-2008, 07:59 PM
Keyser S?ze's Avatar
Keyser S?ze Keyser S?ze is offline
 
Join Date: Apr 2002
Location: USA
Posts: 690
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

would it be possible to add a block to whats called ed2k links, i had this one little bastard flooding my forums with them to things i wont mention here

most of an ed2k link is gibberish but u can also see letters inside the gibberish and all ed2k links start out like "ed2k://"
Reply With Quote
  #77  
Old 10-02-2008, 01:12 PM
Charlie98902 Charlie98902 is offline
 
Join Date: Dec 2006
Posts: 1,156
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I am wanting to use this but I want to change the amount of posts before you can use either is this possible?
Reply With Quote
  #78  
Old 10-02-2008, 08:37 PM
Keyser S?ze's Avatar
Keyser S?ze Keyser S?ze is offline
 
Join Date: Apr 2002
Location: USA
Posts: 690
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Charlie98902 View Post
I am wanting to use this but I want to change the amount of posts before you can use either is this possible?
yea i did the same, i changed it to fewer than 3 posts, just to take care of bots

admincp>plug-in manage>edit the plaug-n, i think ull see it the setting is clearly there and right near the top
Reply With Quote
  #79  
Old 10-02-2008, 08:49 PM
Charlie98902 Charlie98902 is offline
 
Join Date: Dec 2006
Posts: 1,156
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Keyser S?ze View Post
yea i did the same, i changed it to fewer than 3 posts, just to take care of bots

admincp>plug-in manage>edit the plaug-n, i think ull see it the setting is clearly there and right near the top
If I am right it is this that needed editing? Where it says 15?

Code:
global $vbulletin;
		$pagetext =& $this->fetch_field('pagetext', 'post');
		if (($vbulletin->userinfo[posts] < 15) and (stristr($pagetext,'[url') or stristr($pagetext,'[URL') or stristr($pagetext,'www.') or stristr($pagetext,'http://'))) 
    {
     		//eval(standard_error(fetch_error('error_nourlallowed')));
				$this->error('error_nourlallowed');
				$return_value = false;
    }
Reply With Quote
  #80  
Old 10-02-2008, 09:31 PM
Charlie98902 Charlie98902 is offline
 
Join Date: Dec 2006
Posts: 1,156
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Okay that works but I can't find where I can edit the default message. If I try to post links or a pic the first time posting it says :

1. You are only allowed to post URLs to other sites after you have made 15 posts or more.

I need to be able to edit that. Anyone know how? Thanks
Reply With Quote
  #81  
Old 10-02-2008, 09:48 PM
Keyser S?ze's Avatar
Keyser S?ze Keyser S?ze is offline
 
Join Date: Apr 2002
Location: USA
Posts: 690
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

yea, the msg go to lang & phrases, its in global i think but i dont recall the exact name
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 07:30 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.06407 seconds
  • Memory Usage 2,307KB
  • Queries Executed 27 (?)
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
  • (1)bbcode_code
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)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_postinfo_query
  • fetch_postinfo
  • 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_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete