For install AntiBot links you need to create some heard code . No problem I will show you everything . To do it be careful . Please get a backup your site then start . CodeBlock is not work so I give some code raw link . First open Notepad++ or download it from Here . Now download Antibotlinks.zip Now extract the downloaded antibotlinks.zip. Upload the antibotlinks.php to /libs. Now open index.php with Notepad++ from your website root Press CTRL+F and find $data['captcha_info'] = $captcha; Add the following lines of code after: # AntiBotLinks require_once('libs/antibotlinks.php'); $antibotlinks = new antibotlinks(true);// true if GD is on on the server, false is less secure if (array_key_exists('address', $_POST)) { if (!$antibotlinks->check()) { $antibotlinks->generate(5, true);// number of links once they fail to solve min 3 - max 5, the second param MUST BE true } } else { $antibotlinks->generate(3);// initial number of links min 3 - max 5 } Then find $data['captcha_valid'] && And add the following lines of code after it: # AntiBotLinks $antibotlinks->is_valid() && Now open yoursite.com/templates/YOURTHEME/index.php Add the following lines of code before : Code is here : http://pastebin.com/raw/CUWQgKYh Look for:
Invalid captcha code!
And add the following lines after it: Code is here: http://pastebin.com/raw/qdWRRZ4i Then after the next add: Code is here: http://pastebin.com/raw/XPbgifYr Between , insert these lines of code five times: Code is here: http://pastebin.com/raw/jtiC01vA This is where the links will appear. Finally find and delete these lines of code: