Zoeken in Support

Vermijd ondersteuningsscams. We zullen u nooit vragen een telefoonnummer te bellen, er een sms naar te sturen of persoonlijke gegevens te delen. Meld verdachte activiteit met de optie ‘Misbruik melden’.

Learn More

Deze conversatie is gearchiveerd. Stel een nieuwe vraag als u hulp nodig hebt.

How do I restore cookies that I mistakenly deleted

  • 5 antwoorden
  • 137 hebben dit probleem
  • 6 weergaven
  • Laatste antwoord van cor-el

more options

I inadvertently deleted all my cookies. I need to restore the cookies as I need them to login to places such as ebay, etc. Where would I find the backup file(s) to be able to do this. Please help, I've been trying to do this myself with no luck for an hour!

I inadvertently deleted all my cookies. I need to restore the cookies as I need them to login to places such as ebay, etc. Where would I find the backup file(s) to be able to do this. Please help, I've been trying to do this myself with no luck for an hour!

Alle antwoorden (5)

more options

There isn't a way, unless you have created a backup of your Firefox profile. See Back up and restore information in Firefox profiles. Cookies are meant to be temporary anyway. Once you log back into Ebay and check mark the option to keep you signed in, there will be a new cookie set.

more options

---

Good job, Mozilla.

With all the options to Ask Before Deleting, you left off the one that would actually make a difference in my life.

Good Job.

Now, all I have is Mozilla cookies.

Yummy.

---

more options

How and where did you delete cookies?

more options

I accidentally clicked "remove all cookies" when I was editing cookies. My heart sank as I realized I clicked the wrong button. I was sure that something that important would have a verification step before actually removing all your cookies. I was wrong.

more options

You can remove some or all buttons in the Cookie Manager and use the Delete key instead to remove selected cookies.

Add code to the userChrome.css file below the default @namespace line.

The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

/* Remove buttons in Cookies: "View Cookies" window */
#CookiesDialog     button#removeCookie         {display:none!important}
#CookiesDialog     button#removeAllCookies     {display:none!important}
#PermissionsDialog button#removePermission     {display:none!important}
#PermissionsDialog button#removeAllPermissions {display:none!important}