| View previous topic :: View next topic |
| Author |
Message |
Joseph
Joined: 26 Jan 2007 Posts: 16
|
Posted: Nov 03, 2008 9:08 pm Post subject: (Captcha mode) GD error "Security Image" at line 1 |
|
|
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 Here to See Image[/img] |
|
| Back to top |
|
 |
PilgrimX182

Joined: 22 Mar 2006 Posts: 1901 Location: UFO Lab
|
Posted: Nov 05, 2008 7:06 am Post subject: |
|
|
Try this: in Modules/SecImage.pm replace
| Code: | eval {require GD::SecurityImage;};
die"Can't init GD::SecurityImage" if $@; |
with
| Code: | | use GD::SecurityImage; |
|
|
| Back to top |
|
 |
Joseph
Joined: 26 Jan 2007 Posts: 16
|
Posted: Nov 08, 2008 9:13 pm Post subject: |
|
|
Thank you. It worked.  |
|
| Back to top |
|
 |
|