Print Page | Close Window

language-direction-security code

Printed From: Web Wiz Forums
Category: Web Wiz Web App Support Forums
Forum Name: Web Wiz Forums Language Files
Forum Description: Language Files for Web Wiz Forums so that you can run it in your own language.
URL: https://forums.webwiz.net/forum_posts.asp?TID=13770
Printed Date: 29 March 2026 at 7:01pm
Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com


Topic: language-direction-security code
Posted By: emsee
Subject: language-direction-security code
Date Posted: 11 February 2005 at 4:39am
Hi, since i have changed the deafult_style.css and added this code
HTML {
    direction : rtl;
}
P {
    direction : rtl;
}
TD {
    direction : rtl;
}
 so i can display the text RTL (hebrew language)  the security code won't let new users in. i did some invistigation and saw that if you write it backwards it works!
meaning: the code is: 123, you need to write 321 to register
how can i fix it to normal (only the security code)
 
thanks



Replies:
Posted By: acrocat
Date Posted: 11 February 2005 at 11:17pm
Interesting issue.  You could do one of two or more things. 

1.) In the register.asp file you could reverse the digits that the person entered before the string is validated

OR

2.) You can change line 1521 based on the language from:

<td width="50%" valign="top" background="<% = strTableBgImage %>">
<img src="security_image.asp?I=1&<% = hexValue(3) %>" />
<img src="security_image.asp?I=2&<% = hexValue(3) %>" />
<img src="security_image.asp?I=3&<% = hexValue(3) %>" />
<img src="security_image.asp?I=4&<% = hexValue(3) %>" />
<img src="security_image.asp?I=5&<% = hexValue(3) %>" />
<img src="security_image.asp?I=6&<% = hexValue(3) %>" />
</td>


to:

<td width="50%" valign="top" background="<% = strTableBgImage %>">
<img src="security_image.asp?I=6&<% = hexValue(3) %>" />
<img src="security_image.asp?I=5&<% = hexValue(3) %>" />
<img src="security_image.asp?I=4&<% = hexValue(3) %>" />
<img src="security_image.asp?I=3&<% = hexValue(3) %>" />
<img src="security_image.asp?I=2&<% = hexValue(3) %>" />
<img src="security_image.asp?I=1&<% = hexValue(3) %>" />
</td>

Acrocat



Posted By: emsee
Date Posted: 12 February 2005 at 8:43am
thanks man ill try that


Posted By: zMaestro
Date Posted: 25 March 2005 at 3:17am
I think it is much more easier to do so
 
<td width="50%" dir="ltr" valign="top" background="<% = strTableBgImage %>">



Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.08 - https://www.webwizforums.com
Copyright ©2001-2026 Web Wiz Ltd. - https://www.webwiz.net