Icy Phoenix

     
 


Post new topic  This topic is locked: you cannot edit posts or make replies. 
Page 1 of 1
 
 
Reply with quote Download Post 
Post Firefox and its dislike of Autocomplete = "off" 
 
Despite the tabbed browsing feature, Firefox otherwise is a real pain for many reasons, especially is you are a making a web page. One problem is autocompletion. You might want to make a site more secure/easier to administer by disabling auto-completion regardless of whather the user has it set in their preferenes. An example here is changing a usernames password because they've forgotten their original one. When you go into ACP>>user management, the username and password gets auto-filled by firefox - incredibly annoying! Yes, you can personally go into firefox and change the autofill settings (not by much, you can only delete them - mozilla had a much better system!), but we should be a little more clever and allow autocomplete still to work for some things, and not for others. I have tried, unsuccessfully thus far, to implement this for firefox though. I thought I'd list the ideas here, so that anybody else trying this will know what doesn't work... and maybe somebody might even know the answer!

There is generally a tag for doing this: autocomplete = "off" which you can put inside the form and input tags. Older firefox derivatives, i.e. Mozilla, and Internet explorer, understand this attribute (even though its not W3C standard - not suprising, W3C takes years to do anything, and then cocks it all up). With Firefox, however, the mozdev team decided not to follow this attribute! If I open templates/ca_aphrodite/adm/user_edit_body and change the opening form line to [codeblock]<form action="{S_PROFILE_ACTION}" {S_FORM_ENCTYPE} method="post" autocomplete = "off">[codeblock] Firefox still autofills!
Adding it to the input tag: Firefox still autofills!
Removing "address" in lang_main for related input fields (e.g. emial address, AIM address): No result. (See http://developer.mozilla.org/en/doc..._Autocompletion - it gives conditions of where autocomplete="off" fails).

There are some suggestions around for disabling with javascript. E.g. http://forum.java.sun.com/thread.jspa?threadID=755798&tstart=90 suggests:

Code: [Download] [Hide] [Select]
<script language="JavaScript" type="text/javascript">    
function autoCompOff(id)
{
document.getElementById(id).setAttribute("autocomplete","off");
}
</script>



And also from:
http://chrisholland.blogspot.com/20...cy-disable.html

Code: [Download] [Hide] [Select]
<script language="JavaScript" type="text/javascript">
if (document.getElementsByTagName) {
var inputElements = document.getElementsByTagName("input");
for (i=0; inputElements[i]; i++) {
if (inputElements[i].className && (inputElements[i].className.indexOf("disableAutoComplete") != -1)) {
inputElements[i].setAttribute("autocomplete","off");
}//if current input element has the disableAutoComplete class set.
}//loop thru input elements
}//basic DOM-happiness-check
</script>


which also requires adding class="disableAutoComplete" to each input field.

These javascript methods are nothing more than a "html mask" - i.e. they still use autocomplete="off", but sets it in javascript to hide it from html validation (for the W3C validator).

As expected, trying these javascript methods in firefox: autofill still works!

This should be a concern not just for phpBBXS, but anybody who is building a site handling protected data - you want to minimise the risk to users accounts by ensuring autocomplete doesn't work, for that risk of users on public machines. Before anyone points it out, yes, Mozdev mention disableAutoComplete for XUL, but this is for themes/user side XML, so in all a pretty useless feature! If anyone knows a work around...
 



 
moreteavicarSend private message  
Back to topPage bottom
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.

Support us
 
Reply with quote Download Post 
Post Re: Firefox and its dislike of Autocomplete = "off" 
 
You are right about what you are saying... but regarding ACP forms there is a solution...

The problem is related to the name assigned in the ACP form which is the same assigned in the login form.

If that field name is changed, than the auto completion problem should be avoided.

When I have some free time, I'll try to change that field and see what happens.
 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Firefox And Its Dislike Of Autocomplete = "off" 
 
Easier than you think


I always used a mod (found on phpbbhacks.com) to fix that problem with straight phpBB, now I modified that mod to be applied in XS in a very simple way.

Here's the mod:

Spoiler: [ Show ]



Instead of admin/admin_users.php and templates/subSilver/admin/user_edit_body.tpl just edit files adm/admin_users.php and templates/ca_aphrodite(orwhatyougot)/admin/user_edit_body.tpl


Files are pretty the same, only search in a different directory and this will do the trick.


I tried with my own site and it works perfectly. What do you think MG, do you approve this solution?



Edit: Author Notes say that this mod is not compatible with CH which is implemented in XS. I never experienced any problems anyway, but thought it was a good thing to notice that
 



 
VortexSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Firefox and its dislike of Autocomplete = "off" 
 
Thanks Vortex!

Ah, I see... the Categories Heirarchy incompatibility is to do with predefined PHP browser variables like $HTTP_POST_VARS, (CH has changed this to $_POST). The problem will arise when you want to change a username - it will not be parsed because the form input field name has changed, and the this needs to be 'plucked' from the browser variables. So, the fix is just as easy as this mod itself, replace $HTTP_POST_VARS with $_POST!

Code: [Download] [Hide] [Select]
if( isset($_POST['edit_username']) )
{
   $_POST['username'] = $_POST['edit_username'];
}


This mod is good to note. I've been making a conference registration system, and have similar problems - the only real firefox fix is to use different form field names to the ones originally used in initial registration / login. I'm worried also about sensitive data like passport number and address - but it now looks that only the input variable "username" triggers autocompletion!
 



 
moreteavicarSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Firefox And Its Dislike Of Autocomplete = "off" 
 
I understand, thanks for the trick...


I never encountered problem because I don't let users change their nick otherwise it would become a mess... when I need to change one I do it via SQL so that's why it all worked perfectly.
 



 
VortexSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Firefox and its dislike of Autocomplete = "off" 
 
Thanks... added to DEV package.
 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Post new topic  This topic is locked: you cannot edit posts or make replies.  Page 1 of 1
 


Display posts from previous:    

HideWas this topic useful?

Link this topic
URL
BBCode
HTML




 
Permissions List
You cannot post new topics
You cannot reply to topics
You cannot edit your posts
You cannot delete your posts
You cannot vote in polls
You cannot attach files
You can download files
You cannot post calendar events


  

 

  cron