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)

ForceHSS 07-18-2012 12:30 AM

Quote:

Originally Posted by MediaHound (Post 2348982)
There is a setting for "Auto-Moderation: URL Count".
Does this check URLs posted in the vb blogs also?
Seems spammers are still able to post links in blogs.
The blog spam that vb attracts is just horrible and makes the admins waste so much time dealing with it. We need better tools to stop blog spam.

Blogs are not checked with this plugin it does need updated as you cant even send the spammer info to spam o matic forums

FNG 07-19-2012 01:58 PM

Quote:

Database error in vBulletin 4.2.0:

Invalid SQL:
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

Script : /forum/admincp/plugin.php?do=productimport
Referrer : /forum/admincp/plugin.php?do=productadd
Classname : vB_Database
MySQL Version : 5.5.24-cll
This is what I see when I try to import the product.

AFQ 07-22-2012 03:51 PM

I've integrated my WP with vB. A thread is made in vB for every post in make in WordPress. If I add the usergroup which automatically makes threads in vB as an exception in Spam-O-Matic, will it allow them to make threads or no?

OsideRida06 07-22-2012 06:26 PM

This is really awesome. I love this mod.

tonym 07-26-2012 01:49 AM

Best mod I ever used....was getting 50 spambot signups a day....now 0 for last 4 months now

Thanks

Froberg 07-26-2012 02:00 PM

Hi,

I love the mod, it's an absolute Godsend in keeping malicious users out of my site.

I'm running a board in Danish, and it doesn't exactly look good that Spam-O-Matic is the only thing not translated.
I've been up and down the phrase variables, will I really have to modify the xml directly? A casual perusal seems to indicate that if I change the following:

Code:

                <!-- Stats -->

                <plugin active="1" product="glowhostspamomatic" executionorder="50">
                        <title>Stats render</title>
                        <hookname>forumhome_complete</hookname>
                        <phpcode><![CDATA[

                                if (($vbulletin->options['glowhostspamomatic_stat_show_denied'] == 1) || ($vbulletin->options['glowhostspamomatic_stat_show_banned'] == 1)) {
                                        //$vbulletin->

                                        $stats = $vbulletin->db->query_first("SELECT * FROM " . TABLE_PREFIX . "glowhostspamomatic_stats");

                                        //echo '<pre>';
                                        //print_r($vbulletin->stylevars['imgdir_misc']);
                                        //echo '</pre>';

                                        $template_hook[forumhome_wgo_pos2] .= '

                                                <div class="wgo_subblock section">
                                      <h3 class="blocksubhead"><img src="'.$vbulletin->stylevars['imgdir_misc']['imagedir'].'/forum_stats.png" alt="Spam-O-Matic Statistics" />';

                                if ($vbulletin->options['glowhostspamomatic_stat_show_link'] == 1) {
                                        $template_hook[forumhome_wgo_pos2] .= '<a href="https://vborg.vbsupport.ru/showthread.php?t=248042" target="_blank">Spam-O-Matic Statistics</a>';
                                } else {
                                        $template_hook[forumhome_wgo_pos2] .= 'Spam-O-Matic Statistics';
                                }


                                $template_hook[forumhome_wgo_pos2] .= '      </h3>
                                      <div>';

                                if (($vbulletin->options['glowhostspamomatic_stat_show_denied'] == 1) && ($stats['denied'] > 0)) {
                                        $template_hook[forumhome_wgo_pos2] .= '<p>'.$stats['denied'].' Spammer'.(($stats['denied'] > 1)?'s':'').' Denied Registration</p>';
                                }

                                if (($vbulletin->options['glowhostspamomatic_stat_show_banned'] == 1) && ($stats['banned'] > 0)) {
                                        $template_hook[forumhome_wgo_pos2] .= '<p>'.$stats['banned'].' Spammer'.(($stats['banned'] > 1)?'s':'').' Permanently Banned</p>';
                                }

                                if (($vbulletin->options['glowhostspamomatic_stat_show_s_sfs'] == 1) && ($stats['s_sfs'] > 0)) {
                                        $template_hook[forumhome_wgo_pos2] .= '<p>'.$stats['s_sfs'].' Spammer'.(($stats['s_sfs'] > 1)?'s':'').' submitted to StopForumSpam</p>';
                                }

                                if (($vbulletin->options['glowhostspamomatic_stat_show_s_akismet'] == 1) && ($stats['s_akismet'] > 0)) {
                                        $template_hook[forumhome_wgo_pos2] .= '<p>'.$stats['s_akismet'].' Spammer'.(($stats['s_akismet'] > 1)?'s':'').' submitted to Akismet</p>';
                                }

                                if (($vbulletin->options['glowhostspamomatic_stat_show_mod'] == 1) && ($stats['moderated'] > 0)) {
                                        $template_hook[forumhome_wgo_pos2] .= '<p>'.$stats['moderated'].' Spammy Post'.(($stats['moderated'] > 1)?'s':'').' Automatically Moderated</p>';
                                }

                                if (($vbulletin->options['glowhostspamomatic_stat_show_removed'] == 1) && ($stats['removed'] > 0)) {
                                        $template_hook[forumhome_wgo_pos2] .= '<p>'.$stats['removed'].' Spammy Post'.(($stats['removed'] > 1)?'s':'').' Removed</p>';
                                }

                                $template_hook[forumhome_wgo_pos2] .= '      </div>
                                  </div>
                                        ';

                                }

                        ]]></phpcode>
                </plugin>

                <!-- Stats END -->

That ought to do the trick? It just seems weird that a lot of the phrases are in the phrase manager, but not these crucial bits?

Cheers!

sandboa 07-27-2012 08:23 PM

I have been getting database error reports since I installed this mod. Here is a recent example of the error:

Database error in vBulletin 4.2.0:

Invalid SQL:
INSERT HIGH_PRIORITY IGNORE INTO VB_glowhostspamomatic_remotecache(`date`, `data`, `is_spambot`, `field`) VALUES (now(), "Lauren_22", "0", "username");;

MySQL Error : MySQL server has gone away
Error Number : 2006
Request Date : Friday, July 27th 2012 @ 03:19:02 PM
Error Date : Friday, July 27th 2012 @ 03:19:15 PM
Script : http://www.sandboakeepers.com/register.php?do=addmember
Referrer : http://www.sandboakeepers.com/register.php
IP Address : 98.170.224.173
Username : Lauren_22
Classname : vB_Database
MySQL Version :

There is a different username and IP address for each error. Other than this, the mod seems to be working correctly.

ForceHSS 07-27-2012 08:42 PM

Quote:

Originally Posted by sandboa (Post 2351968)
I have been getting database error reports since I installed this mod. Here is a recent example of the error:

Database error in vBulletin 4.2.0:

Invalid SQL:
INSERT HIGH_PRIORITY IGNORE INTO VB_glowhostspamomatic_remotecache(`date`, `data`, `is_spambot`, `field`) VALUES (now(), "Lauren_22", "0", "username");;

MySQL Error : MySQL server has gone away
Error Number : 2006
Request Date : Friday, July 27th 2012 @ 03:19:02 PM
Error Date : Friday, July 27th 2012 @ 03:19:15 PM
Script : http://www.sandboakeepers.com/register.php?do=addmember
Referrer : http://www.sandboakeepers.com/register.php
IP Address : 98.170.224.173
Username : Lauren_22
Classname : vB_Database
MySQL Version :

There is a different username and IP address for each error. Other than this, the mod seems to be working correctly.

Server has gone away thing u need to talk to ur host about this

yamahapaul 07-30-2012 12:54 AM

I would like to change the

Quote:

Spam-O-Matic
in the whats going on box to something like spam statistics but can't see how to do it in phrases can anyone point me in the right place please?

yamahapaul 07-30-2012 12:55 AM

apologies if it is in here somewhere but I just haven't the patience to go through the 125 pages on this thread to see if anyone has asked before..


All times are GMT. The time now is 02:08 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.04213 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
  • (1)bbcode_code_printable
  • (4)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