Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> Security - PHP Nuke
Author Message
pdoobepd
Worker
Worker



Joined: May 07, 2005
Posts: 129

PostPosted: Thu Mar 16, 2006 1:38 pm Reply with quote

Is there an Alternate Text Version of Security code image for the Blind???

I am webmaster for a radio show and we recently got a request stating our "image security code" is blocking a blind person from becoming a member. Is there a way to show both the Image number and a Text of the same number for a secured log in ?

Or is there another way I can adjust some coding somewhere to allow for this ?

Thanks!
Ging...

P.S. For instance is there a way for the "title" of the image to show the image number code so the Blind can access it ? Or will this leave the site vulnerable ?

_________________
Only registered users can see links on this board! Get registered or login! 
View user's profile Send private message
montego
Site Admin



Joined: Aug 29, 2004
Posts: 9457
Location: Arizona

PostPosted: Thu Mar 16, 2006 2:49 pm Reply with quote

I am actually not so sure that wouldn't open up the door so to speak. You may want to consider some form of Approve Membership module such as that offered at http://www.ulsoft.scarbridge.co.uk/index.php

Maybe then, at least registrants can be "screened" and "approved" for membership. Just a thought.

_________________
Only registered users can see links on this board! Get registered or login!
Only registered users can see links on this board! Get registered or login! 
View user's profile Send private message Visit poster's website
montego







PostPosted: Thu Mar 16, 2006 2:50 pm Reply with quote

Sorry, meant to also say that you might then turn off the security code check.
 
evaders99
Former Moderator in Good Standing



Joined: Apr 30, 2004
Posts: 3221

PostPosted: Thu Mar 16, 2006 7:51 pm Reply with quote

Mmm a text of the number just bypasses the use for it. Mostly the security code is designed to stop robots from reading it.. unfortunately it will stop blind people too. I suggest disabling if your site is for blind users

_________________
- Only registered users can see links on this board! Get registered or login! -

Need help? Only registered users can see links on this board! Get registered or login! 
View user's profile Send private message Visit poster's website
djmaze
Subject Matter Expert



Joined: May 15, 2004
Posts: 727
Location: http://tinyurl.com/5z8dmv

PostPosted: Thu Mar 16, 2006 7:57 pm Reply with quote

<img src="securitycode" alt="the code" title="securitycode">

make the 'title' random but understandable for humans. that would be sufficient
 
View user's profile Send private message Visit poster's website
evaders99







PostPosted: Thu Mar 16, 2006 8:04 pm Reply with quote

Mm that's a good idea. Perhaps instead of digits, it does a literal word translation of the number.. ala
One-hundred twenty-three

Don't know how that code would work though Wink
 
djmaze







PostPosted: Thu Mar 16, 2006 10:29 pm Reply with quote

Code:


$numbers = array(
    '1' = 'one',
    '2' = 'two',
    '3' = 'three',
    '4' = 'four',
    '5' = 'five',
    '6' = 'six',
    '7' = 'seven',
    '8' = 'eight',
    '9' = 'nine',
    '10' = 'ten',
    '20' = 'twenty',
    '30' = 'thirty',
    '40' = 'fourty',
);

$code = 23;
$str = '';
if (isset($numbers[$code[0].'0'])) {
    $str = $numbers[$code[0].'0'];
}
if (isset($numbers[$code[1]])) {
    $str .= $numbers[$code[1]];
}

echo $str;

result: twentythree

This is english specific though, for example dutch uses drie-en-twintig (three and twenty)
 
evaders99







PostPosted: Thu Mar 16, 2006 11:13 pm Reply with quote

Well if its the standard 6 digits, you'll have to add the various other places in there...
Smile
 
pdoobepd







PostPosted: Fri Mar 17, 2006 10:05 am Reply with quote

ok so where would I place that coding if I were to use it ?

I would prefer the "title" of the image come up with the text version of number image displayed. At least then the Reader the blind person uses should pic it up.

For instance this code <img src="securitycode" alt="the code" title="securitycode"> for the image only with the "title" showing the actual image code number, what should the code look like and where should it be placed if I wanted to test it ?

I really would like to find a workable way around this keeping the security code in place.
Thanks for all the feed back.
 
Display posts from previous:       
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> Security - PHP Nuke

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©