Why Doesn't AutoComplete Always Work in Firefox? Zakaj ne Samodokončanje Vedno Delo v Firefox?
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. Če ste vrsto oseba, ki vedno omogoča Firefox, da shranite vaše poverilnice za prijavo za mesta, ki jih obiščete, boste morda zelo uničen, ko naletite na stran, ki ni niti vas pozove, da shranite poverilnice. We've got the lowdown on what's going on here. Imamo lowdown o tem, kaj se dogaja tukaj.
Here's that awful form I have to type into almost every day… I'm really getting tired of it. Tukaj je grozno, da je obrazec moram stavek v skoraj vsak dan ... Res sem se naveličal.

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. Zato sem si oglejte v vir za stran, in tukaj je krivec: Samodokončaj = "off", bo na obrazcu povedal Firefox onemogočiti samodejno izpolni ta obrazec. The form elements themselves also have the same tag on them. Form elemente imajo tudi sami isto oznako na njih.

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. Ugotovili boste, da se to zgodi zelo pogosto na VPN podjetij, bank in drugih mestih, kjer so zaskrbljeni zaradi varnosti in ne želim, da shranite geslo, tako da jih uporabljajo te oznake na svojih straneh, da se prepreči vaš brskalnik shranjevanje mandatov .
Your Best Option: Greasemonkey it! Your Best Možnost: Greasemonkey it!
You can use a Lahko uporabite greasemonkey Greasemonkey script to re-enable the autocomplete on the form elements. skript ponovno omogočiti autocomplete na obrazcu elementov. You can find a number of them at userscripts.org: Najdete jih v številnih userscripts.org:
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. Lahko napišete svoje Če čutite, da je všeč ... iz neznanega razloga druge skripte ne dela na mojem Otkačen podjetij vpn na delovnem mestu, zato sem ustvaril nov skript, da ročno nastavite lastnosti vsakega.
var frm = document.forms[0]; var frm = document.forms [0];
frm.setAttribute('autocomplete', 'on'); frm.setAttribute ( "autocomplete ',' o ');
frm.elements[0].setAttribute('autocomplete', 'on'); frm.elements [0]. setAttribute ( "autocomplete ',' o ');
frm.elements[1].setAttribute('autocomplete', 'on'); frm.elements [1]. setAttribute ( "autocomplete ',' o ');
Hint: the Namig: Firebug Palikuća extension is a great way to figure out what the elements are if you are writing a script. Podaljšanje je odličen način, da ugotovimo, kaj so elementi, če pišete scenarij.

Daily Email Updates Dnevni Email Updates
You can get our how-to articles in your inbox each day for free. Lahko dobite našo kako do člankov v vašo mapo »Prejeto vsak dan brezplačno. Just enter your name and email below: Preprosto vpišite vaše ime in e-pošto spodaj:



This site shows how to add autocomplete=off sites to the password manager without needing greasemonkey: Ta stran prikazuje, kako dodati autocomplete = off lokacij za parola šef ne da bi morali Greasemonkey:
http://dotancohen.com/howto/fi.....anager.php http://dotancohen.com/howto/fi.....anager.php
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. Samo da s tem zaznamek na lokaciji področju, in če strani ne bo pustil AutoSave, kliknite ta zaznamek in se bo odpravila omejitev. Fill out the form and Firefox will ask to save the info for you. Izpolnite obrazec in Firefox bo zaprosil, da shranite info za vas.
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, cs, df, DFE, i, j, x, y, funkcija n (i, kaj) (return i +% 22% 22 + kaj + ((i == 1)? % 22% 22:% 22s% 22)) = ca cea = cs = 0, df = document.forms; for (i = 0; i
Randomly some websites I use quite often will stop loading my saved logins from FF. Naključno nekatere spletne strani uporabljam zelo pogosto se bodo nehali nakladanje moje shranjene prijave iz 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. Zato bom jih dodajte spet samo zavedaš, da zdaj imam več zapisov za isti lokaciji na isti strani v parola šef. I check password manager when it stops loading in sites and it does still show them in there. Preveril sem geslo šef, ko neha nakladanje v mestih in le-ta še vedno kaže jih tam. I usually just have to delete it and read them. Jaz ponavadi samo še za brisanje, in bere. Seems pretty flaky. Izgleda precej luskasta. I also have a lot of passwords though. Imam tudi veliko gesel četudi. Too many forums and things online. Preveč forume in stvari na spletu. That could be it. To bi se lahko. I also wish it wouldn't think Prav tako želijo, da ne bi mislil, http://www.domain.com http://www.domain.com and domain.com were two different sites, and would fill in for both. in domain.com so dveh različnih lokacijah, in bi zapolnila za oba. Maybe these problems are addressed in Firefox 3. Mogoče so te težave obravnavajo v Firefox 3.
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. Vi lahko po želji ustvarite kratek php / hruška skript, ki trdi, uporabniško ime, geslo in vse druge potrebne polja po naslov v obrazec. You would most likely need to set the referrer to the actual login page's address. Vi bi verjetno morali nastaviti napotitelju na strani za prijavo dejanski naslov. Just install the http_request package for pear and create a post. Samo namestite http_request paket za hruške in ustvariti delovno mesto. What ever come's back is the content after login. Kaj kdaj prišel nazaj, je po vsebini prijavo. You can scrape that page to find whatever info you want. Lahko Provući strani, da bi našli karkoli hočeš info.
Here is a good Greasemonkey script that worked: Tukaj je dober Greasemonkey skript, ki so delovale:
http://userscripts.org/scripts/show/17453 http://userscripts.org/scripts/show/17453