MyBB Community Forums

Full Version: add captcha in new thread
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi is there any plugin for adding captcha in newthread to stop making fake threads by robots.
I found the following information:

(2012-04-17, 07:27 AM)Yaldaram Wrote: [ -> ]Open the following files;
./showthread.php line 1052
./newreply.php line 438 and 1030
./newthread.php line 370 and 881;

Search for;
if($mybb->settings['captchaimage'] == 1 && function_exists("imagepng") && !$mybb->user['uid'])

and Change it into;

if($mybb->settings['captchaimage'] == 1 && function_exists("imagepng") && (!$mybb->user['uid'] || $mybb->user['postnum'] < 10))

Change the 10 the the number of posts you want to check against.
Thanks Smile