vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Anti-Spam Options - [GlowHost] Spam-O-Matic for vB 3.8 (StopForumSpam, Akismet, Auto-Moderation and more) (https://vborg.vbsupport.ru/showthread.php?t=248470)

Dave 12-17-2015 06:23 AM

Yep, remove that line and it should work fine again.

oldengine 01-10-2016 01:02 AM

Just installed on 3.8.9 - Great!

Does anyone answer the phone here? I'd sure like to discuss operations of Spam-O-Matic.

Lots of bots trying to get in and still getting through. Still on manual approval. Did the renaming of register.php - not effective.

T.P. 03-08-2016 07:38 PM

Note for the Developer:

PHP Code:

                $db->query_write('CREATE TABLE IF NOT EXISTS `'.TABLE_PREFIX.'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; '
);


                 
$db->query_write('CREATE TABLE IF NOT EXISTS `'.TABLE_PREFIX.'glowhostspamomatic_remotecache`(
                                    `date` DATETIME NOT NULL,
                                    `field` VARCHAR(20) NOT NULL,
                                    `is_spambot` INT NOT NULL,
                                    `data` VARCHAR(255) NOT NULL
                                 ) TYPE=MyISAM; '
); 

Please use instead only "ENGINE" not TYPE !!!

Quote:

The older TYPE option was synonymous with ENGINE. TYPE was deprecated in MySQL 4.0 and removed in MySQL 5.5. When upgrading to MySQL 5.5 or later, you must convert existing applications that rely on TYPE to use ENGINE instead.
http://stackoverflow.com/questions/1...le-type-myisam

John Diver 05-13-2016 09:23 PM

Hey,

I have done the above and I am still getting a blank forum - Running PHP 5.4.45

I haven't made any changes apart from this.

Anyone know what could be causing this?

Thanks

oldengine 09-02-2016 01:34 AM

Anyone notice that when www.stopforumspam.com is down, you then get duplicate account names in your user database?

oldengine 09-02-2016 02:55 PM

Also that spammers are able to get here without an email address:

2016-09-01 21:36:31 192.210.134.135 ShellaNzu cesartorrez@hidebox.org Spam-O-Matic Tagged email - cesartorrez@hidebox.org - Spammer Found and rejected.
2016-09-01 21:02:26 134.249.141.83 JCQcWwDm Passed StopForumSpam checks. Sent to vBulletin Registration System.
2016-09-01 21:02:25 134.249.141.83 JCQcWwDm Passed StopForumSpam checks. Sent to vBulletin Registration System.
2016-09-01 21:02:24 134.249.141.83 JCQcWwDm Passed StopForumSpam checks. Sent to vBulletin Registration System.
2016-09-01 21:02:23 134.249.141.83 JCQcWwDm Passed StopForumSpam checks. Sent to vBulletin Registration System.
2016-09-01 21:02:22 134.249.141.83 JCQcWwDm Passed StopForumSpam checks. Sent to vBulletin Registration System.
2016-09-01 21:02:21 134.249.141.83 JCQcWwDm Passed StopForumSpam checks. Sent to vBulletin Registration System.
2016-09-01 21:02:20 134.249.141.83 JCQcWwDm Passed StopForumSpam checks. Sent to vBulletin Registration System.
2016-09-01 21:02:19 134.249.141.83 JCQcWwDm Passed StopForumSpam checks. Sent to vBulletin Registration System.
2016-09-01 21:02:19 134.249.141.83 JCQcWwDm Passed StopForumSpam checks. Sent to vBulletin Registration System.
2016-09-01 21:02:17 134.249.141.83 JCQcWwDm Passed StopForumSpam checks. Sent to vBulletin Registration System.
2016-09-01 21:02:15 134.249.141.83 JCQcWwDm Passed StopForumSpam checks. Sent to vBulletin Registration System.
2016-09-01 21:02:15 134.249.141.83 JCQcWwDm Passed StopForumSpam checks. Sent to vBulletin Registration System.
2016-09-01 21:02:14 134.249.141.83 JCQcWwDm Passed StopForumSpam checks. Sent to vBulletin Registration System.
2016-09-01 21:01:59 134.249.141.83 JCQcWwDm Passed StopForumSpam checks. Sent to vBulletin Registration System.
2016-09-01 20:48:43 199.15.233.174 zffuui60 nulu9894@mail.com Spam-O-Matic Tagged ip - 199.15.233.174 - Spammer Found and rejected.

134.249.141.83 Email shows on stopforumspam as empty@unknown.com

There's no one here, so is this software a dead duck?

m7sen 09-12-2017 12:53 AM

any upgade ?

how can i stop spam emails sent it from my site

TAIFUN_T 02-13-2018 03:36 PM

Quote:

Originally Posted by hqlman (Post 2318087)
Tested working fine with VB3.8.7 patch level 2

Had to make a small change to the XML files sql syntax for it to import, so if you get SQL error whilst importing the XML file, make the changes mentioned below.

In product-glowhostspamomatic.xml

FIND:
Code:

) TYPE=MyISAM; ');
REPLACE WITH:
Code:

) TYPE=ENGINE; ');
SAVE AND RE IMPORT XML FILE, ENJOY :)

Are you sure?

Maybe)

Code:

ENGINE=MyISAM

Alice 06-24-2018 04:22 PM

I'm running vBulletin 3.8.11, and I tried installing this plugin today, and got this error:

Code:

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;;


BirdOPrey5 06-27-2018 11:12 AM

You have to chamge TYPE=MyISAM to ENGINE=MyISAM.


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