I set the captcha to Image (GD). I had someone install the PHP GD feature on my server but I guess they missed something? Can you tell me how to fix this problem so I can get the Captcha "GD" working?
Below is a screen capture of the error message received when attempting to use the captcha as a regular downloader.
[img]Click%20Here%20to%20See%20Image[/img]
XFileSharing Pro - (Captcha mode) GD error "Security Image" at line 1
- PilgrimX182
- Posts: 2186
- Joined: Mar 22, 2006 1:39 pm
Try this: in Modules/SecImage.pm replace
with
Code: Select all
eval {require GD::SecurityImage;};
die"Can't init GD::SecurityImage" if $@;
Code: Select all
use GD::SecurityImage;