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 - Spambot Stopper - Prevent Spambots from Registering (https://vborg.vbsupport.ru/showthread.php?t=294633)

kh99 08-03-2014 10:52 AM

Quote:

Originally Posted by markoroots (Post 2509536)
Hi guys,
i have just installed this mod yesterday and look what I found in one thread today:
http://www.eliquid-forum.com/threads...-the-why/page3

look also the next pages...
What is this???????

That looks like threadid 1. I guess you have "Enable posting a notice to a thread..." set to Yes, and "Specify the id of an existing thread to which notifications will be posted" to 1. So you must either specify a different threadid for those posts, or else set "Enable posting a notice to a thread..." to No.

markoroots 08-03-2014 12:14 PM

Hi kh99 and tanks for your quickly reply.

The thing is this:
If i set "Enable posting a notice to a thread..." to No
the mod doesn't stop to send post in the id1 thread

In the 4.2.1 vb look that this option work (cause i have 2 forum)
but in the 4.2.2 the post are still sent in the post id1 also if the "notification post" option is disabled.

kh99 08-03-2014 12:57 PM

Quote:

Originally Posted by markoroots (Post 2509548)
Hi kh99 and tanks for your quickly reply.

The thing is this:
If i set "Enable posting a notice to a thread..." to No
the mod doesn't stop to send post in the id1 thread

In the 4.2.1 vb look that this option work (cause i have 2 forum)
but in the 4.2.2 the post are still sent in the post id1 also if the "notification post" option is disabled.

Hmm...I may have made a mistake in the way I'm checking that option. But try setting the threadid to 0 and see if that stops it.

Chadi 08-04-2014 11:18 PM

Quote:

Originally Posted by kh99 (Post 2509351)
OK, well I'm glad you responded before I added that option. But now I'm at a loss. I guess I could try to add some logging so I can actually help people who have problems instead of telling them "I don't know".

I was just curious if you found anything yet on this? Thanks in advance.

kh99 08-05-2014 03:22 PM

Quote:

Originally Posted by Chadi (Post 2509785)
I was just curious if you found anything yet on this? Thanks in advance.

I haven't, sorry. What I meant by my last post is that unless I find time to add logging, I probably can't help. IIRC the mod actually has some messages in it but they just aren't written out anywhere, so maybe I can put them in a db table or something (or use the vb log, as I think someone else suggested a while back).

Kills 09-05-2014 06:40 PM

just installed it done got one...nice add on... Thanks

edit: I do like the redirect thing...lol

ozzy47 09-05-2014 06:43 PM

It will get alot more than that, this is a pretty cool mod. :)

ozzy47 09-07-2014 10:43 AM

Hey Kevin, question. I am trying to get this to write to the DB, when there is a timer trigger, but it don't seem to work, here is what I tried.

Hook Location, register_start
Execution Order, tried 5 and 15

Code:
PHP Code:

function kh99_sbs_post2(&$data$event)
{
   global 
$vbulletin;

   if (
$data['reject'])
   {
        
$dateline TIMENOW;
        
$vbulletin->db->hide_errors();

        
$vbulletin->db->query_write("
            INSERT INTO `"
TABLE_PREFIX ."bad_bots1`
            (
                dateline, 
                bots1, 
                agent,
                userip
            )
            VALUES 
            (
                "
.$dateline.", 
                '2', 
                '1',
                '1'
            )
        "
);   
   }


But I believe it is not doing so, and it seems to stop the post from being added also. :confused:

kh99 09-08-2014 10:25 AM

Quote:

Originally Posted by ozzy47 (Post 2514023)
Hey Kevin, question. I am trying to get this to write to the DB, when there is a timer trigger, but it don't seem to work, here is what I tried....

I don't see anything wrong with that code. I'd have to have time to re-familiarize myself with how the mod works to be able to help more.

ozzy47 09-08-2014 10:42 AM

Not in a big hurry, I am taking the counts I need from the reply count in the thread for the time being. :)


All times are GMT. The time now is 09:34 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.01652 seconds
  • Memory Usage 1,749KB
  • 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_php_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)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