MyBB Community Forums

Full Version: Simple Captcha
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6
+1 rep i agree more security prevent to bot easy Smile
Maybe this is early, but will this plugin still work with MyBB 1.6.5?
I will make update if it will be needed.
The provided patches for newreply.php are not working in 1.6.5, this are the contents:
Search:
echo "</captcha>";
}
}

Insert After:
// START - Simple Captcha MOD
	elseif (isset($mybb->settings['simpleCaptchaPost']) && $mybb->settings['simpleCaptchaPost'] == 1)
	{
    simpleCaptcha::injectNewReplyValidate();
  }
  // END - Simple Captcha MOD

Search:
if($mybb->settings['threadreview'] != 0)

Insert before:
// START - Simple Captcha MOD
	elseif (isset($mybb->settings['simpleCaptchaPost']) && $mybb->settings['simpleCaptchaPost'] == 1)
	{
    simpleCaptcha::injectNewReplyGenerate();
  }
  // END - Simple Captcha MOD
This version isn't compatible with MyBB 1.6.5
I am going to update this plugin (and Strict Username) next week.
Give me some time - I have a lot of plugins but I haven't a lot of free time Smile
(2011-12-03, 08:33 AM)lukasamd Wrote: [ -> ]This version isn't compatible with MyBB 1.6.5
I am going to update this plugin (and Strict Username) next week.
Give me some time - I have a lot of plugins but I haven't a lot of free time Smile

Right, thanks.
Version 1.7:
- Rewrite to OOP
- Compatible with MyBB 1.6.5
- Add contrib files for MyBB 1.6.5

Plugin is avaiting validation.
You can download it from first post in this thread.
(2011-12-06, 09:35 PM)lukasamd Wrote: [ -> ]Version 1.7:
- Rewrite to OOP
- Compatible with MyBB 1.6.5
- Add contrib files for MyBB 1.6.5

Plugin is avaiting validation.
You can download it from first post in this thread.

Thanks!!
Doesn't this plugin uses settings anymore?
Yes, because settings aren't needed - if you want to use this plugin, you have to disable standard captcha -> if you want to use all options, you also must modify / replace files.
There were only on/off settings, I think that they are not needed.

Of course if I bad, write Smile
Pages: 1 2 3 4 5 6