Hello, I am using plain install plugin van Captcha.
I see the image as 2 codes which is rather confusing. How can I change it to a display image code only? Perhaps you have some samples to include and replace in php code?
You help is appreciated..
see: http://www.seis-inspection.nl/index.php?option=com_chronocontact&Itemid=242
I see the image as 2 codes which is rather confusing. How can I change it to a display image code only? Perhaps you have some samples to include and replace in php code?
You help is appreciated..
see: http://www.seis-inspection.nl/index.php?option=com_chronocontact&Itemid=242
Hi atolli,
That looks correct to me. Please post a screenshot of what you are seeing.
Bob
That looks correct to me. Please post a screenshot of what you are seeing.
Bob
Hi atolli,
Please locate the chrono_verification.php file in your com_chronocontact directory and edit this:
Locate the following line:
Change it into this:
This should remove the gray "shadowy" text in the background. Please be aware that this makes it easier for machines to read the captcha however.
/Fredrik
Please locate the chrono_verification.php file in your com_chronocontact directory and edit this:
Locate the following line:
$rand2 = substr(str_shuffle($alphanum), 0, 7);
Change it into this:
$rand2 = '';
This should remove the gray "shadowy" text in the background. Please be aware that this makes it easier for machines to read the captcha however.
/Fredrik
Hi Frederik,
Can I also replace the numbers with say a shaded area to overcome the problem you stated?
Thanks for your help. Abraham
Can I also replace the numbers with say a shaded area to overcome the problem you stated?
Thanks for your help. Abraham
Hi Abraham,
Assuming that you have the PHP GD library installed switch the Anti-Spam "What type of image to show ?" to With Fonts. This should give you a better image without all this hacking of the code.
Bob
Assuming that you have the PHP GD library installed switch the Anti-Spam "What type of image to show ?" to With Fonts. This should give you a better image without all this hacking of the code.
Bob
Hi Abraham,
Well, the point of the shaded text is to confuse software that try to interpret the image. Simply changing the background color will achieve virtually nothing. What "we" need is a non-uniform background to make it harder for a software to separate the letters/digits from the image.
Using the "With Fonts" setting Bob suggested would still keep the grey random letters and digits in the background, but makes the black text somewhat more prominent.
/Fredrik
Well, the point of the shaded text is to confuse software that try to interpret the image. Simply changing the background color will achieve virtually nothing. What "we" need is a non-uniform background to make it harder for a software to separate the letters/digits from the image.
Using the "With Fonts" setting Bob suggested would still keep the grey random letters and digits in the background, but makes the black text somewhat more prominent.
/Fredrik
Thank you all for your help. To make a suggestion it appears some more choices on how to present Captcha would be wonderful, perhaps an update? Once again thank you!
Hi Abraham,
That's the second request I remember in several years ao I'm afraid that it's pretty unlikely :-(
Bob
That's the second request I remember in several years ao I'm afraid that it's pretty unlikely :-(
Bob
hi Bob,
Well nothing ventured nothing gained...but i do believe it would make life easier for people if they had more choice iso adjusting css'. Thanks you support and wishing you a nice day!
Well nothing ventured nothing gained...but i do believe it would make life easier for people if they had more choice iso adjusting css'. Thanks you support and wishing you a nice day!
Here this is a very good forum post many of my problems regarding the Captcha Images have been solved but When I attempt to use the CAPTCHA control with Virtual Directory website, the captcha image path is not ok and the image is not displayed. I don't have the same problem when I create a regular IIS website.
I registered the httpHandler in my web.config as follows:
<httpHandlers>
<add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false" />
</httpHandlers>
<handlers>
<add name="Telerik_Web_UI_WebResource_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" />
</handlers>
Any suggestions?
Thanks.
I registered the httpHandler in my web.config as follows:
<httpHandlers>
<add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false" />
</httpHandlers>
<handlers>
<add name="Telerik_Web_UI_WebResource_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" />
</handlers>
Any suggestions?
Thanks.
This topic is locked and no more replies can be posted.