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)

Syxguns 05-14-2012 01:13 AM

Quote:

Originally Posted by BadgerDog (Post 2328945)
I've done some searches in this post, but so far I can't find the answer ...

I'd like our moderators to be able to see the Spam-o-Matic logs so they can check if they get an email from someone claiming they were rejected at registration as being a spammer.

Currently, they don't see those logs, so is there a way of turning on an option so they can?

Thanks for any feedback ... :)

Regards,
Doug

BadgerDog,
There is a way to do it, but I would not suggest it. You would be giving the moderator a little too much access to the administrator panel, where damage could be done. You don't even want SuperMods to have that kind of access.

BadgerDog 05-14-2012 09:34 AM

Quote:

Originally Posted by Syxguns (Post 2329160)
BadgerDog,
There is a way to do it, but I would not suggest it. You would be giving the moderator a little too much access to the administrator panel, where damage could be done. You don't even want SuperMods to have that kind of access.

Thanks.. appreciate the feedback .. :)

I wonder if there's a way of getting the code to output a text file so the mods can download and check it that way?

Regards,
Doug

HondaATC 05-15-2012 01:01 AM

I keep getting a user reporting that they are blocked from registration because they are spam...Is their user agent or something causing it? Any ideas?

Syxguns 05-15-2012 03:01 AM

Quote:

Originally Posted by HondaATC (Post 2329445)
I keep getting a user reporting that they are blocked from registration because they are spam...Is their user agent or something causing it? Any ideas?

First make sure that you are not blocking username in the AdminCP. A lot of us learned that with that feature on, many legitimate submissions were being blocked. Also check the log file to see if it tells you why they are being blocked. If it is an IP conflict, then the only thing you can do is register for them, unless you want to turn off SOM temporarily.

HondaATC 05-15-2012 02:05 PM

That was enabled. Turned it off and I'll send him an email to try it again. Hopefully that fixes it :)

ForceHSS 05-15-2012 09:18 PM

as it blocked his name in the first place it will have that name in glowhostspamomatic_remotecache table you will need to remove his name from that table if he still cant register

Skyrider 05-17-2012 02:50 PM

Quote:

Originally Posted by djbaxter (Post 2328568)
I do agree that sometimes the email address or member name is a giveaway that might warrant submitting to the database.

Try this...

1. Admin CP >> Plugins & Products >> Add New Plugin

2. Product = vBulletin

Hook Location = useradmin_edit_column1

Title = Submit to StopForumSpam.com

Execution Order = 5

Plugin PHP 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['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' ,'');    
        } 

Plugin is active = Yes

3. Save

Thanks! However:

Quote:

You need an API key from www.stopforumspam.com before you can submit to the database
In the users (bot) AdminCP profile menu. While my spam-O-matic "StopForumSpam: API Key" options has already a key filled in.

Gripi 05-18-2012 03:54 AM

hi..

i found that the auto-ban user just wont work in here..

Easy Cleanup: Enable
Easy Cleanup: User Action - Ban User
Easy Cleanup: Banned UserGroup ID - 14 <- 14 is the usergroup ID that i already created

The post / thread is moderated, i saw the soft / hard delete also works.. but the Ban wont work, the user still not banned.

could someone help?

thanks

TheSupportForum 05-20-2012 07:15 AM

Database error in vBulletin 4.1.12:

Invalid SQL:
Code:

CREATE TABLE IF NOT EXISTS `glowhostspamomatic_log`(
                                    `date` DATETIME NOT NULL,
                                    `ip` VARCHAR(15) NOT NULL,
                                    `email` VARCHAR(255) NOT NULL,
                                    `username` VARCHAR(255) NOT NULL,
                                    `message` VARCHAR(255) NOT NULL,
                                    `is_blocked` TINYINT NOT NULL DEFAULT "0",
                                    `user_hash` VARCHAR(50) NOT NULL,
                                    `user_id` INT NOT NULL
                                ) TYPE=MyISAM;;

MySQL Error  : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TYPE=MyISAM' at line 10
Error Number  : 1064
Request Date  : Sunday, May 20th 2012 @ 03:13:05 AM
Error Date    : Sunday, May 20th 2012 @ 03:13:05 AM
Script        : admincp/plugin.php?do=productimport
Referrer      : admincp/plugin.php?do=productadd
IP Address    : --.---.--.--.
Username      : -
Classname    : vB_Database
MySQL Version : 5.5.21-55


Syxguns 05-20-2012 07:50 AM

Quote:

Originally Posted by simonhind (Post 2330893)
Database error in vBulletin 4.1.12:

Invalid SQL:
Code:

CREATE TABLE IF NOT EXISTS `glowhostspamomatic_log`(
                                    `date` DATETIME NOT NULL,
                                    `ip` VARCHAR(15) NOT NULL,
                                    `email` VARCHAR(255) NOT NULL,
                                    `username` VARCHAR(255) NOT NULL,
                                    `message` VARCHAR(255) NOT NULL,
                                    `is_blocked` TINYINT NOT NULL DEFAULT "0",
                                    `user_hash` VARCHAR(50) NOT NULL,
                                    `user_id` INT NOT NULL
                                ) TYPE=MyISAM;;

MySQL Error  : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TYPE=MyISAM' at line 10
Error Number  : 1064
Request Date  : Sunday, May 20th 2012 @ 03:13:05 AM
Error Date    : Sunday, May 20th 2012 @ 03:13:05 AM
Script        : admincp/plugin.php?do=productimport
Referrer      : admincp/plugin.php?do=productadd
IP Address    : --.---.--.--.
Username      : -
Classname    : vB_Database
MySQL Version : 5.5.21-55


It was back a number of pages when I had this error. Here is a link to the thread #1639

https://vborg.vbsupport.ru/showpost....postcount=1639


All times are GMT. The time now is 04:03 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.03817 seconds
  • Memory Usage 1,766KB
  • 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
  • (2)bbcode_code_printable
  • (1)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