Jump to content
MakeWebGames

Captcha Problem


Joshua

Recommended Posts

Using McCodesV2 when I turn Captcha on, It simply displays a small red X instead of the image. I have even tried a few free captcha mods i've found on the site and I always get this same error.

I know i'm missing something, but I for the life of me don't know what. Any help?

Link to comment
Share on other sites

Re: Captcha Problem

I'm currently on a buddies server that is large and vast. I've got unlimited SQL domains, Emails, etc.. all the space I can use as well as every script from Fantastico Delux that anyone could ever need.

 

I haven't seen anything about GD tho :\

Link to comment
Share on other sites

  • 9 months later...

Yes i realize this is a old thread.... regardless here is a good script to test for GD library support w/ image type support detailed as well.

if you cant get an image to display this would e a good troubleshooting start

create file testgd.php

<?php

/* Displays details of GD support on your server */

echo '<div style="margin: 10px;">';

echo '<p style="color: #444444; font-size: 130%;">GD is ';

if (function_exists("gd_info")) {

echo '<span style="color: #00AA00; font-weight: bold;">supported</span> by your server!</p>';

$gd = gd_info();

foreach ($gd as $k => $v) {

	echo '<div style="width: 340px; border-bottom: 1px solid #DDDDDD; padding: 2px;">';
	echo '<span style="float: left;width: 300px;">' . $k . '</span> ';

	if ($v)
		echo '<span style="color: #00AA00; font-weight: bold;">Yes</span>';
	else
		echo '<span style="color: #EE0000; font-weight: bold;">No</span>';

	echo '<div style="clear:both;"></div></div>';
}

} else {

echo '<span style="color: #EE0000; font-weight: bold;">not supported</span> by your server!</p>';

}

echo '

by [url="http://www.dagondesign.com"]dagondesign.com[/url]</p>';

echo '</div>';

?>

 

run script in your browser

 

 

 

wrx

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...