Version: 3.10, by lisss001
Developer Last Online: Sep 2009
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.
VVVScreen-shots provided further down the pageVVV
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.
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://"
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;
}