Forums PhpBB

captcha and email not working on wamp

Subscribe to captcha and email not working on wamp 5 post(s), 5 voice(s)

 
Avatar richard101 2 post(s)

Hi, I installed phpbb3 on my wamp stack and found users could not register as the captcha image was blank. So I disabled that requirement and found the confirmation email sent to new accounts failed.

Ideally I would like both captcha and email confirmation to work – as I believe they’re best practice.

any advise please

richard101

 
Avatar antonio 621 post(s)

Hi Richard,

We don’t include a smtp server in the stack, so to get mail to work, manual configuration is required. Have a look at phpBB3 documentation to find out how to do it exactly. As for the captcha, I’m afraid you are right, I haven’t been able to make it work on Linux. We’ll look into it, the web server log files are not showing any error, so it may be difficult to track down.

Cheers

 
Avatar samuel 1 post

I had downloaded a couple of weeks ago and installed phpBB3 without a clue that this does not work.

any idea of this works now?

Sam

 
Avatar beltran Administrator 1,570 post(s)

Hi,

We will try to reproduce and fix it. Thanks for reporting it.

 
Avatar Fermín 9 post(s)

Hi all,

We have tested our (W|L)ampstack, and captchas methods are working well on them.
It seems this is a native phpBB bug that should be solved by them in the future.

You can test the working feature with this simple script:


<?php  
   
$image = imagecreatetruecolor(170, 60);  
$black = imagecolorallocate($image, 10, 100, 200);  
$green = imagecolorallocate($image, 150, 200, 50);  
   
imagefilledrectangle($image,0,0,399,99,$green);  
imagestring($image, 5, 20, 10, "hello!", $black); 
header("Content-type: image/png");  
imagepng($image);  
?>  

Deploy it at [stack]/apache2/htdocs/captcha.php and browse it.

Please visit http://www.phpbb.com/community for more info.

Cheers.

Forums PhpBB