vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Anti-Spam Options - [GlowHost] Spam-O-Matic - Spam Firewall stops forum spam (https://vborg.vbsupport.ru/showthread.php?t=248042)

TheSupportForum 09-26-2012 02:57 PM

Quote:

Originally Posted by CharlieDelta (Post 2368722)
You can use this plugin and this code change.

Works for me.

just do this for code




PHP Code:


if (!is_member_of($user['usergroupid'], 6)) // we dont want to ban our admin account now do we
        

            
print_table_break(''$INNERTABLEWIDTH);
            
print_table_header("Submit to StopForumSpam");
            if (
$vbulletin->options["glowhostspamomatic_apikey"])
                
print_label_row('Submit these details to www.stopforumspam.com ban list<BR><table><tr><td>Username:</td><td><input type="text" name="username"  size="30" value="'
$user['username'] . '"></td></tr><tr><td>Email:</td><td><input type="text" name="email"  size="30" value="' $user['email'] . '"></td></tr><tr><td>IP:&nbsp;</td><td><input type="text" name="ip_addr"  value="' .$user['ipaddress'] . '"></td></tr></table><input name="api_key" type="hidden" value="' $vbulletin->options['vbstopforumspam_apikey'] .    '"><input onclick="this.form.action=\'http://www.stopforumspam.com/add.php\';this.form.submit()"  type="button" class="button" value="' $vbphrase['submit'] . '"/>');

            else
                
print_label_row('You need an API key from www.stopforumspam.com before you can submit to the database' ,'');    
        } 

all he needed to do is use the settings from the product

is the old stopforumspam setting string for the other product he is using
PHP Code:

$vbulletin->options['vbstopforumspam_apikey'

this is glowhost setting string for stopforumspam api
PHP Code:

$vbulletin->options['glowhostspamomatic_apikey'


ForceHSS 09-26-2012 02:58 PM

Quote:

Originally Posted by simonhind (Post 2368728)
just do this for code




PHP Code:

if (!is_member_of($user['usergroupid'], 6)) // we dont want to ban our admin account now do we
        

            
print_table_break(''$INNERTABLEWIDTH);
            
print_table_header("Submit to StopForumSpam");
            if (
$vbulletin->options["vbstopforumspam_apikey"])
                
print_label_row('Submit these details to www.stopforumspam.com ban list<BR><table><tr><td>Username:</td><td><input type="text" name="username"  size="30" value="'
$user['username'] . '"></td></tr><tr><td>Email:</td><td><input type="text" name="email"  size="30" value="' $user['email'] . '"></td></tr><tr><td>IP:&nbsp;</td><td><input type="text" name="ip_addr"  value="' .$user['ipaddress'] . '"></td></tr></table><input name="api_key" type="hidden" value="' $vbulletin->options['glowhostspamomatic_apikey'] .    '"><input onclick="this.form.action=\'http://www.stopforumspam.com/add.php\';this.form.submit()"  type="button" class="button" value="' $vbphrase['submit'] . '"/>');

            else
                
print_label_row('You need an API key from www.stopforumspam.com before you can submit to the database' ,'');    
        } 


I tried that did not work you need to use the code change

TheSupportForum 09-26-2012 03:07 PM

Quote:

Originally Posted by ForceHSS (Post 2368729)
I tried that did not work you need to use the code change

ah i just rechanged the code again i missed something

anyways it works for me on vb 4.2.0 with no issues

here is my screenshot

https://vborg.vbsupport.ru/

ForceHSS 09-26-2012 03:12 PM

Quote:

Originally Posted by simonhind (Post 2368732)
ah i just rechanged the code again i missed something

anyways it works for me on vb 4.2.0 with no issues

here is my screenshot

https://vborg.vbsupport.ru/

this is the code I am using is your code the same if not post yours
PHP Code:

if (!is_member_of($user['usergroupid'], 6)) // we dont want to ban our admin account now do we
        

            
print_table_break(''$INNERTABLEWIDTH);
            
print_table_header("Submit to StopForumSpam");
            
                
print_label_row('Submit these details to www.stopforumspam.com ban list<BR><table><tr><td>Username:</td><td><input type="text" name="username"  size="30" value="'
$user['username'] . '"></td></tr>
<tr><td>Email:</td><td><input type="text" name="email"  size="30" value="' 
$user['email'] . '"></td></tr><tr><td>IP:&nbsp;</td>
<td><input type="text" name="ip_addr"  value="' 
.$user['ipaddress'] . '"></td></tr></table>
<input name="api_key" type="hidden" value="oysr2wv46udtbp"><input onclick="this.form.action=\'http://www.stopforumspam.com/add.php\';this.form.submit()"  type="button" class="button" value="' 
$vbphrase['submit'] . '"/>');   
        } 


TheSupportForum 09-26-2012 03:19 PM

Quote:

Originally Posted by ForceHSS (Post 2368740)
this is the code I am using is your code the same if not post yours
PHP Code:

if (!is_member_of($user['usergroupid'], 6)) // we dont want to ban our admin account now do we
        

            
print_table_break(''$INNERTABLEWIDTH);
            
print_table_header("Submit to StopForumSpam");
            
                
print_label_row('Submit these details to www.stopforumspam.com ban list<BR><table><tr><td>Username:</td><td><input type="text" name="username"  size="30" value="'
$user['username'] . '"></td></tr>
<tr><td>Email:</td><td><input type="text" name="email"  size="30" value="' 
$user['email'] . '"></td></tr><tr><td>IP:&nbsp;</td>
<td><input type="text" name="ip_addr"  value="' 
.$user['ipaddress'] . '"></td></tr></table>
<input name="api_key" type="hidden" value="oysr2wv46udtbp"><input onclick="this.form.action=\'http://www.stopforumspam.com/add.php\';this.form.submit()"  type="button" class="button" value="' 
$vbphrase['submit'] . '"/>');   
        } 


yeah you are just using it as a plugin and nothing to do with the product as there are no vb variables shown for glowhost product

mine is based on [GlowHost] Spam-O-Matic - Spam Firewall stops forum spam
vb variables which is why i suggested using my code as it fits the need for the plugin addon for stopforumspam

ForceHSS 09-26-2012 03:25 PM

I am using this plugin
with the above coding as
Product: vBulletin
Hook Location: useradmin_edit_column1
Title: Submit to StopForumSpam.com
Execution Order: 5
Plugin PHP Code:

then putting in the above code

If this is wrong say

TheSupportForum 09-26-2012 03:29 PM

Quote:

Originally Posted by ForceHSS (Post 2368745)
I am using this plugin
with the above coding as
Product: vBulletin
Hook Location: useradmin_edit_column1
Title: Submit to StopForumSpam.com
Execution Order: 5
Plugin PHP Code:

then putting in the above code

If this is wrong say

its fine as you are using it as a seperate plugin from this product

i just meant that the code i changed is based on the product itself thats all

dougdirac 09-26-2012 09:15 PM

This mod has been a life saver. I just want to point out, though, that I finally got around to changing my Human Verification Options from ReCaptcha to a very easy Question and Answer, and now I hardly have any spam even getting to the SFS check stage. I used to see one every few minutes, no I only have one every several hours. Pretty awesome.

imported_dfmafia 09-28-2012 01:25 PM

I lost the stats in the WGO box. whats the code to re-insert it manually?

An uninstall and install isn't working.

Floyd R Turbo 09-29-2012 04:36 PM

Newbie to forums here, I just purchased and attempted to install vB5 beta 11 and gave up after 3 installs and then realizing that it was a bad idea to try out a beta when I hadn't done anything beyond HTML in 10 years LOL, and no plug-ins were written for it yet.

Installed vB4.2 P2 with ease after the learning steps above and then installed keycaptcha (LOVE that thing!), SOM and vB Bad Behaviour, thanks to links on vbulletin.com. Got an Aksimet and StopForumSpam keys also. Also added a Q&A to the registration screen. I think with all of that, I may never have much of a spammer problem at all.

Had trouble with getting new "test" users set up, it was pegging every attempt as a spammer, turning SOM off fixed it, but I still wanted it up and running. Read the first 300 and last 200 posts on this thread (roughly) and determined that I hadn't configured it right, but there really isn't a guide for configuring. I figured out from various posts that I needed to

1) disable Akismet in vBulletin and let SOM handle it
2) decrease the SFS remote expiry from 90 days to 10 days (I believe it was this that fixed the registration problem)

Can anyone think of anything else I should consider? I do not have newbies manager on. I do have auto-moderation on, but I might shut this off unless a problem arises.

From reading what I have read on here and vbulletin.com, I am very happy to have found the tools to prevent problems from happening. Now I suppose it's a waiting game to see if the bots can break keycaptcha.

Thank you so much to the developers on this site. The installs went very smoothly...so far, so good!


All times are GMT. The time now is 04:01 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.04597 seconds
  • Memory Usage 1,792KB
  • 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
  • (6)bbcode_php_printable
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (6)pagenav_pagelinkrel
  • (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