CAPTCHA I just need numbers

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
saleh
User
Posts: 470

CAPTCHA I just need numbers

Post by saleh »

Hello
CAPTCHA I just need numbers


mobhar
User
Posts: 11712

Post by mobhar »

You need to change the following code in "ewcaptcha.php" file that belongs to the CAPTCHA extension:
$possible = '23456789BCDFGHJKMNPQRSTVWXYZ'; // possible characters // P61

to:
$possible = '1234567890'; // possible characters


saleh
User
Posts: 470

Post by saleh »

Good
It works successfully
Thank you


saleh
User
Posts: 470

Post by saleh »

hello

I need only be 4 digits


saleh
User
Posts: 470

Post by saleh »

Thank you
I found the solution

change
var $characters = 6;

to:
var $characters = 4;


Post Reply