Thanks Topher, phpbb does have the option to turn on and off the the "GD CAPTCHA foreground noise:", which I didn't know. Changing it had no effect on my 3.0.4 board, maybe I am missing something along the line...Topher wrote:.....
Before I had foreground and background noise turned on so much that the characters couldn't even be seen by humans. Now I turned OFF the foreground noise (the "grid") and the characters are perfectly legible, yet the bots can't seem to be able to read them now... I'm sure it won't be perfect, but I am very happy to have this.
Code: Select all
$img = imagecreatefromjpeg($phpbb_root_path . 'includes/captcha/bg' . mt_rand(0,9) . '.jpg');
Code: Select all
$img = (($avantibot_images = glob($phpbb_root_path . 'images/captcha/*.jpg')) ? imagecreatefromjpeg($avantibot_images[array_rand($avantibot_images)]) : imagecreatetruecolor($this->width, $this->height));