vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Miscellaneous Hacks - NoSpam! - an alternative to CAPTCHA images (https://vborg.vbsupport.ru/showthread.php?t=124828)

pmkb 09-12-2007 03:42 PM

I've installed v3.0 of the mod on two forums running 3.6.8 and it works fine.

I tried today to install v3.0 of the mod on two forums running 3.6.7 PL1 and it didn't show the questions on either of them. :(

ngng 09-21-2007 08:07 PM

Quote:

Originally Posted by pmkb (Post 1337687)
I've installed v3.0 of the mod on two forums running 3.6.8 and it works fine.

I tried today to install v3.0 of the mod on two forums running 3.6.7 PL1 and it didn't show the questions on either of them. :(

I am having the same problem wit 3.6

import-houston 09-23-2007 06:23 AM

thanks for this its really good mod

Fungsten 09-24-2007 07:21 PM

Installed on test server.

KURTZ 09-27-2007 01:10 PM

runs correctly or not with 3.6.8?

bazzup 09-27-2007 01:12 PM

Quote:

Originally Posted by KURTZ (Post 1348199)
runs correctly or not with 3.6.8?

yes i have it on 3.6.8

ETDC 09-27-2007 03:37 PM

Me too. And I haven't had a single spammer since I installed it. :) :up:

Outbackmark 09-29-2007 11:26 PM

All good on mine, 3.6.8
Thanks

maidos 09-30-2007 03:55 PM

can i only turn this setting on for a specific usergroup ?

Traxdata 10-05-2007 08:29 PM

Most effective and important hack since ever. Thank you!

ETDC 10-05-2007 09:39 PM

Quote:

Originally Posted by Traxdata (Post 1353682)
Most effective and important hack since ever.

Couldn't agree more. I could live without the rest but not this one.

Sticky!

hjmaier 10-09-2007 06:01 AM

Some of my members reported, that they don't get the No-Spam input fields during registration using Firefox (actual version). With IE it works for them. They say, that they have no plug in installed. Strangely, only some of the users get this error. For example, if i try to register using firefox it works fine.

Does anyone have similiar experiences?

Best regards
hj

tedp 10-11-2007 01:02 PM

Great mod on 3.6.8

Thank you

Ted

caliman 11-05-2007 12:23 AM

I love this mod.
I have an old version.
The new version says it will work on other pages, would that include my phpportal's feedback page? That would be awesome.

Also, please note, spammers have figured out math questions like the one shown in the example. Use something else. Trust me. I had to change mine. Since then, no spam.

class101 11-05-2007 12:34 AM

Quote:

Originally Posted by caliman (Post 1375934)
Also, please note, spammers have figured out math questions like the one shown in the example. Use something else. Trust me. I had to change mine. Since then, no spam.

Interesting doctor, looks like theses specimens have a brain :)

caliman 11-05-2007 02:56 PM

Indeed!

SOL-R 11-06-2007 07:22 PM

Hi, I installed this on my test board but I am getting two questions. It is the same question but a duplicate right below the first one.

Did I install it wrong or ??? Thoughts?

Thanks

R.

guptadogg 11-10-2007 04:42 AM

it shows the ? on the quick register mod, on my homepage, but even If I put in the correct answer to quick register takes me to regular register where i have to put in all the info back again

class101 11-10-2007 10:35 AM

I have allowed anonymous posting in my blog and would like to add te nospam question in addition to the visual captcha already present, adding $nospamfield in the blog_comment_editor template worked fine, I see the nospam field , however no check is made inside, I do not anwser the question and the post is still allowed, any idea what is wrong ?

class101 11-10-2007 11:31 AM

Ok here is how I got it working on my custom page , here its blog_post

all is made in the plugin manager, no template edit required finally because from the plugin wich is caching the templates ,it's positioning the Nospam box just up the visual captcha.

1) Edit the Nospam plugin called "Generate and insert NoSpam! question"

FIND


PHP Code:

     default:
           
$nospamdo false

ADD BEFORE

PHP Code:

      case 'blog_post':
         if (
$vbulletin->options['nospam_onoff']) {
            
$thetemplate =& $vbulletin->templatecache['blog_comment_editor'];
            
$nospamdo true;
         }
         break; 

2) Edit the Nospam plugin called "Cache the NoSpam! template"

FIND

PHP Code:

      case 'sendmessage':
         if (
$vbulletin->options['nospam_use_contactus']) {
            
$actiontemplates['contactus'][] = 'nospam';
         }
      break; 

ADD AFTER

PHP Code:

      case 'blog_post':
         if (
$vbulletin->options['nospam_onoff']) {
            
$actiontemplates['blog_comment_editor'][] = 'nospam';
         }
      break; 

3) And finally create the new plugin that will check response validity, name it as you wish, select the hook location called "blog_post_updatecomment_start" and enter this new code

PHP Code:

$vbulletin->input->clean_array_gpc('p', array(
      
'nospamnumber' => TYPE_UINT,
      
'nospam' => TYPE_STR,
));

if (
$vbulletin->options['nospam_onoff'] AND !$vbulletin->userinfo['userid'])
{
   
$nospamnumber $vbulletin->GPC['nospamnumber'];
   
$questions explode("\n"$vbulletin->options['nospam_questions']);
   
$qanda explode(":"strtolower($questions["$nospamnumber"]));
   unset(
$qanda[0]);

   function 
trim_array(&$answer)
   {
      
$answer trim($answer);
   }

   
array_walk($qanda'trim_array');

   if (!
in_array(strtolower(trim($vbulletin->GPC['nospam'])), $qanda))
   {
      eval(
standard_error(fetch_error('nospam_wrong_answer')));
   }


There is just the visual option settings not implemented in the admincp vboption, it will just check if nospam is on or off and if the user is guest like Nospam does on other pages but does the job very well hehe now I can allow guest blog comments without caring if the vb visual captcha gets break , hope that helps

youradhere4222 11-22-2007 04:26 AM

So when you enter multiple questions, it ask them randomly?

TigerWare 11-22-2007 06:00 AM

Quote:

Originally Posted by youradhere4222 (Post 1387328)
So when you enter multiple questions, it ask them randomly?

From the authors release notes:-
the hack will pick one at random when a guest attempts to register

Sean James 11-27-2007 10:56 PM

Just wanted to say i have had this hack installed for about 6 months, and it works perfectly. Has stopped all my spam bot registrations.

Thanks for your hard work.

JakeS 12-02-2007 08:56 AM

Nice job! Thanks.

ryans 12-02-2007 02:07 PM

Quote:

Originally Posted by Quantnet.org (Post 1136817)
Great news. Updated. I tested and it works great. Now, only if you can offer an option of multiple choice for the questions.

you can, just do question:answer:answer:answer

wickland 12-09-2007 10:49 PM

awesome system, 5 star and installed

Thanks!
Best

torontonian 12-11-2007 07:25 PM

I installed this in vBulletin 3.6.4 and it works perfectly. I then tried installing it in vBulletin 3.6.8 but it doesn't work - nothing appears. I set up everything the same in VB but when I try register a user or perform a search, I don't see the question.

Has anyone experienced this problem?

youradhere4222 12-12-2007 02:56 AM

You know a hack is good when vBulletin is implementing it in their next version. ;-)

irkd 12-15-2007 11:28 AM

I have a troubleshooting issue.

When I check Allow Multiple Registrations Per User, why does it refuse to show NoSpam? I've been having interesting cookie issues with my site, but I was wondering if there was a quick fix for this.

imported_gc1 12-15-2007 01:52 PM

This is the #1 Mod I think I have ever installed....

I disabled it for a while while doing some other work and forgot to enable it again, 5 spambots had registered in that time frame.

This Mod is GOLD
Thanks

UltraFanatics 12-15-2007 04:09 PM

Awesome mod mate!

Very well done A**

bmilder 12-15-2007 05:45 PM

So what's the final verdict on it running on 3.6.8 or not?

I'm not going to upgrade until I know this amazing mod will still work...

UltraFanatics 12-15-2007 06:01 PM

Worked ok for me mate, you can always try it and if it doesn work delete it. This mod takes 2 seconds to do :)

Chance4Today 12-18-2007 10:25 PM

Anyway for you to get it to work for 3.7? I can not get it to work

I need it bad

youradhere4222 12-18-2007 10:25 PM

This is default in 3.7...

Prince 12-19-2007 01:33 AM

Quote:

Originally Posted by bmilder (Post 1401673)
So what's the final verdict on it running on 3.6.8 or not?

I'm not going to upgrade until I know this amazing mod will still work...

I just installed it on 3.6.8 PL2 and it works perfectly.

Chance4Today 12-19-2007 02:20 PM

Quote:

Originally Posted by youradhere4222 (Post 1404034)
This is default in 3.7...

Yeah it is there thanks but I would still like to have the image verification also and you can only have one or the other.

BOWZONE 12-22-2007 03:18 PM

Great option!

BOWZONE clicks install!

**EDIT** Works perfectly!

Matafleur 12-23-2007 05:57 AM

Quote:

Originally Posted by bmilder (Post 1401673)
So what's the final verdict on it running on 3.6.8 or not?

I'm not going to upgrade until I know this amazing mod will still work...

It's running fine for me on 3.6.8.

BOWZONE 12-23-2007 01:38 PM

I'm running this hack on 3.6.8 patch level 2 and I'm having NO problems. Installed easily and works flawlessly.

I've not had any SPAM users since I installed it!

Scott


All times are GMT. The time now is 08:12 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.02032 seconds
  • Memory Usage 1,835KB
  • 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
  • (5)bbcode_php_printable
  • (9)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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