Joomla 1.5.8
Where do I check the version of Chronoform?
My form:
http://www.liv-laga.no/index.php?option=com_chronocontact&chronoformname=innme
Yesterday my cousin moved my site that he hosts to a new server. After that the Captcha anti-spam image will not show. I've spent this morning googling for answers without any luck. GD is installed (see attachment), but my cousin said there might be some php.ini parameters that we need to change. I have no idea where to start...
In FAQ 30 you say:
To use ImageVerification you must turn it ON in the AntiSpam tab and add {imageverification} to your form code where you want the verification to appear.
I've done this.
ImageVerification depends on some PHP features being installed on your site. From version 2.3 there is a diagnostic on the Anti Spam tab that checks for these and will not enable ImageVerification if they are not installed.
I don't know my version, but I include a print screen.
If all is well there and images still do not display then you can get more 'informative' error reports if you Change the header at line 17 in chrono_verification.php from header("Content-type: image/png"); to header("Content-type: text/html");. Then point your browser directly to that file i.e. http://www.example.com/components/com_chronocontact/chrono_verification.php
It will show PHP errors on things php cannot handle. This should provide enough input to fix the problem.
I did this and got a message I don't understand:
Fatal error: Call to undefined function imagecreatefrompng() in /home/admin.liv-laga.no/public_html/components/com_chronocontact/chrono_verification.php on line 96
Line 95-98
}else{
$image = imagecreatefrompng("background.png");
$greylight = imagecolorallocate($image, 199, 199, 199);
$black = imagecolorallocate($image, 0, 0, 0);
May you point me in the right direction?