Topic: Captcha missing image

You don't quote the PHP constant which throw a PHP notice when php.ini

error_reporting  =  E_ALL

This could break a lot of your code, among them one about missing captcha image (tested) and maybe one about new post fails (just a guess)

thanks

web-based file manager : http://www.ajaxbrowser.net/

Re: Captcha missing image

Thankiossk  Cool!

Re: Captcha missing image

PHP constant doesn't need to be quoted, otherwise it will become a string.

Re: Captcha missing image

Slavok wrote:

PHP constant doesn't need to be quoted, otherwise it will become a string.

They don't need but if you enable all error message you'll got a notice that could break a lot of code when prior to some cookie/session start. Otherwise, if you've

error_reporting  =  E_ALL & ~E_NOTICE

you won't have any problem.

web-based file manager : http://www.ajaxbrowser.net/

Re: Captcha missing image

PunBB is compatible with E_ALL. The bug in pun_antispam caused the first issue. I fixed it yesterday. Maybe the bug in online users tracking cause the second one. It was fixed a long time ago, you can test the last version from SVN.

Re: Captcha missing image

Is there a particular method to upgrade to the svn version ? YOu talked about a 'maintenance mode' in the upgrade page. Plus what branches should I use ? (not really familiar with svn).

p.s.: the antispam update solve my issue, thanks !

web-based file manager : http://www.ajaxbrowser.net/

Re: Captcha missing image

You can download the last version from here ("Download in other formats: Zip Archive" link at the bottom of the page).

You have to turn Maintenance mode on in the admin panel (Administration » Management » Maintenance mode) during the update.

Re: Captcha missing image

Great info...works out for me too. Had a bit of trouble in the beginning.

Re: Captcha missing image

What kind of trouble do you have?