Important! This is an automatic machine translated page. If you can read english, you should Click Here to read the original English version of the article.

Why Doesn't AutoComplete Always Work in Firefox? Prečo nie vždy dokončovanie práce vo Firefoxe?

If you're the type of person that always allows Firefox to save your login credentials for the sites you visit, you might be very frustrated when you come across a site that doesn't even prompt you to save the credentials. Ak ste typ človeka, ktorý vždy Firefox umožňuje ukladať svoje prihlasovacie údaje o navštívených stránkach, môžete byť veľmi frustrovaní, keď narazíte na web, ktorý sa ani výzva na uloženie poverenia. We've got the lowdown on what's going on here. Máme Lowdown o tom, čo sa tu deje.

Here's that awful form I have to type into almost every day… I'm really getting tired of it. Tu je ten strašný formulára musím napísať do takmer každý deň ... som naozaj unavená z toho.

image

So I take a look into the source for the page, and here's the culprit: the AUTOCOMPLETE=”off” on the form will tell Firefox to disable auto completing for that form. Tak som sa pozrieť do zdrojového kódu na stránky, a tu je vinníka: dokončovania = "off" na formulári povie Firefox deaktivovať funkciu automatického ukončenia pre tento formulár. The form elements themselves also have the same tag on them. Formulářové prvky samé o sebe majú aj rovnaké značky na nich.

image

You'll find this happens quite often on corporate vpns, banks, and other sites where they are worried about security and don't want you to save your passwords, so they use this tag in their pages to prevent your browser from saving the credentials. Zistíte to stane docela často na firemné VPN, bánk a iných miest, kde sú obavy o bezpečnosť a nechcete uložiť heslá, takže používať túto značku na svojich stránkach, aby sa zabránilo váš prehliadač od uloženia poverenia .

Your Best Option: Greasemonkey it! Vaša najlepšia voľba: Greasemonkey to!

You can use a Môžete použiť greasemonkey Greasemonkey script to re-enable the autocomplete on the form elements. skript opäť-dať možnosť autocomplete na formulár prvky. You can find a number of them at userscripts.org: Môžete nájsť niekoľko z nich na userscripts.org:

http://userscripts.org/scripts/search?q=autocomplete http://userscripts.org/scripts/search?q=autocomplete

Or you can write your own if you feel like it… for some reason the other scripts did not work on my screwy corporate vpn at work, so I created a new script that manually set the attributes of each. Alebo môžete napísať svoj vlastný, ak budete chcieť z nejakého dôvodu ... ďalšie skripty nefungovali na môj praštěná firemnej siete VPN, v práci, tak som vytvoril nový skript ručne nastaviť atribúty každého.

var frm = document.forms[0]; var frm = document.forms [0];
frm.setAttribute('autocomplete', 'on'); frm.setAttribute ( 'autocomplete', 'on');
frm.elements[0].setAttribute('autocomplete', 'on'); frm.elements [0]. setAttribute ( 'autocomplete', 'on');
frm.elements[1].setAttribute('autocomplete', 'on'); frm.elements [1]. setAttribute ( 'autocomplete', 'on');

Hint: the Tip: Firebug Firebug extension is a great way to figure out what the elements are if you are writing a script. Rozšírenie je skvelý spôsob, ako zistiť, ktoré prvky sú, ak píšete scenár.

This article was originally written on 08/4/07 Tagged with: Tento článok bol pôvodne napísaný na 08/4/07 Tagged s: Firefox Firefox , , Firefox & Web Firefox & webový

Daily Email Updates Denný Svářeč

You can get our how-to articles in your inbox each day for free. Môžete si naše jak-na články vo vašej schránky každý deň zadarmo. Just enter your name and email below: Stačí zadať svoje meno a e-mail nižšie:


Name: Meno:
Email: E-mail:

Comments (5) Komentáre (5)

  1. What is Firefox? Čo je Firefox?

    This site shows how to add autocomplete=off sites to the password manager without needing greasemonkey: Táto stránka ukazuje, ako pridať autocomplete = z miest, ktoré majú správcu hesiel, bez nutnosti Greasemonkey:
    http://dotancohen.com/howto/fi.....anager.php http://dotancohen.com/howto/fi.....anager.php

  2. Garga L Garg L

    Just make a bookmark with this in the location field, and when a page won't let you autosave, click this bookmark and it will remove the restrictions. Len sa záložku s týmto v mieste poľa, a keď stránka vás nenechá autosave, kliknite na túto kartu, a to sa odstráni obmedzenia. Fill out the form and Firefox will ask to save the info for you. Vyplňte formulár a Firefox sa bude pýtať na uloženie informácií pre vás.

    javascript:(function(){var ca,cea,cs,df,dfe,i,j,x,y;function n(i,what){return i+%22 %22+what+((i==1)?%22%22:%22s%22)}ca=cea=cs=0;df=document.forms;for(i=0;i javascript: (function () (var ca, CEA, sk, DF, DFE, i, j, x, y, n function (i, co) (return i +% 22% 22 + čo + ((i == 1)? % 22% 22:% 22s% 22)) = ca cea = sk = 0; df = document.forms; for (i = 0; i

  3. darrell Darrell

    Randomly some websites I use quite often will stop loading my saved logins from FF. Náhodne niektorých webových stránkach sa používa dosť často sa zastaví načítanie moje uložené prihlasovacie údaje z FF. So I will add them again only to realize that now I have multiple records for the same site on the same page in the password manager. Tak som sa pridať je opäť len uvedomiť si, že teraz musím viac záznamov na rovnakom mieste na rovnakej stránke do správcu hesiel. I check password manager when it stops loading in sites and it does still show them in there. I či správca hesiel, keď je v zastaví načítanie stránok a to sa ešte ukázať im tam. I usually just have to delete it and read them. Väčšinou jednoducho musieť zmazať a čítať ich. Seems pretty flaky. Zdá sa, že dosť potrhlý. I also have a lot of passwords though. Tiež mám veľa hesiel hoci. Too many forums and things online. Príliš veľa vecí fóra a on-line. That could be it. To by mohlo byť ono. I also wish it wouldn't think Tiež som si nemyslím, že by http://www.domain.com http://www.domain.com and domain.com were two different sites, and would fill in for both. a domain.com dva rôzne weby, a zaplnilo by pre obe strany. Maybe these problems are addressed in Firefox 3. Možno, že tieto problémy sú riešené vo Firefoxe 3.

  4. Brent Brent

    You could optionally create a short php / pear script that submits the user name, password and any other required fields to the post address in the form. Dalo by sa prípadne vytvoriť krátky php / php skript, ktorý tvrdí, užívateľské meno, heslo a ďalšie potrebné polia poštová adresa vo forme. You would most likely need to set the referrer to the actual login page's address. Človek by s najväčšou pravdepodobnosťou musieť nastaviť odkazujúcich na skutočnú adresu prihlasovaciu stránku. Just install the http_request package for pear and create a post. Stačí nainštalovať balík pre http_request hruškou a vytvoriť pracovné miesto. What ever come's back is the content after login. Čo sa niekedy vráti sa späť, je obsah po prihlásení. You can scrape that page to find whatever info you want. Môžete škrípanie tejto stránke nájdete informácie, čo chcete.

  5. Logan Logan

    Here is a good Greasemonkey script that worked: Tu je dobré Greasemonkey skript, ktorý pracoval:
    http://userscripts.org/scripts/show/17453 http://userscripts.org/scripts/show/17453


Leave a Comment Zanechať komentár




Leave your Zanechajte svoj friendly priateľský comment here. komentár tu.

If you have a computer help question, Ak máte počítač pomôže otázku, click here to leave it on the forums kliknite tu nechať to na fórach instead. miesto.

Note: Your comment may not show up immediately on the site. Poznámka: Váš komentár sa nezobrazia okamžite na mieste.

Our Friends Naši priatelia
Getting Started Začíname


About How-To Geek O tom, ako-To Geek
What Is That Process? Čo je to za proces?
svchost.exe svchost.exe
jusched.exe jusched.exe
dwm.exe Dwm.exe
ctfmon.exe ctfmon.exe
wmpnetwk.exe wmpnetwk.exe
wmpnscfg.exe WMPNSCFG.exe
rundll32.exe rundll32.exe
wfcrun32.exe wfcrun32.exe
Ipoint.exe Ipoint.exe
Itype.exe Itype.exe
Wfica32.exe Wfica32.exe
Mobsync.exe Mobsync.exe
conhost.exe conhost.exe
Dpupdchk.exe Dpupdchk.exe Adobe_Updater.exe Adobe_Updater.exe

Copyright © 2006-2009 HowToGeek.com. Copyright © 2006-2009 HowToGeek.com. All Rights Reserved. All Rights Reserved.