Showing questions tagged: Show all questions
  • Solved
  • Archived

I need to turn off my Delete cookies and site data when Firefox is closed setting.

I need to turn off my Delete cookies and site data when Firefox is closed setting.I have wrongly turn on this setting i need to turn off this setting.please help me to ch… (read more)

I need to turn off my Delete cookies and site data when Firefox is closed setting.I have wrongly turn on this setting i need to turn off this setting.please help me to change it.

Asked by Sridhar 1 year ago

Answered by FredMcD 1 year ago

  • Solved
  • Archived

How to unblock a website that exceptions does not help

I have spent hours trying to unblock a site i have previously used before your upgrade. every time its a nightmare. Why can't your program remember exceptions. I tried… (read more)

I have spent hours trying to unblock a site i have previously used before your upgrade. every time its a nightmare. Why can't your program remember exceptions. I tried all the exception options. I tried adding the certificate exception and was told it was valid and did not need an exception. Why does everyone feel the need to make our lives harder with the illusion you are protecting us. Make it easier to go to websites that we want to go to and not a hassle every time you decide to change something. Website is https://www.btdig.com/. Thanks for your time.

Asked by risso74 1 year ago

Answered by FredMcD 1 year ago

  • Archived

autoconfig file being parsed but not applied in firefox 100

Hi My firefox 97 autoconfig worked. In version 100, i had to remove some elements and replace some with the new settings. It is now parsed on load but does not lock an… (read more)

Hi

  My firefox 97 autoconfig worked. In version 100, i had to remove some elements and replace some with the new settings. It is now parsed on load but does not lock anything per autoconfig. Any assistance would be appreciated.  File content is below:

// Firefox Default Settings -begin config file const {classes: Cc, interfaces: Ci, utils: Cu} = Components; Cu.import("resource://gre/modules/Services.jsm"); Cu.import("resource://gre/modules/FileUtils.jsm");

// Disable telemetry and health reporting lockPref("breakpad.reportURL", ""); lockPref("browser.tabs.crashReporting.sendReport", false); lockPref("datareporting.healthreport.infoURL", ""); lockPref("datareporting.healthreport.uploadEnabled", false); lockPref("datareporting.policy.dataSubmissionEnabled", false); lockPref("dom.ipc.plugins.flash.subprocess.crashreporter.enabled", false); lockPref("dom.ipc.plugins.reportCrashURL", false); lockPref("toolkit.telemetry.enabled", false);

//      Disable sync

lockPref("services.sync.addons.ignoreUserEnabledChanges", true); lockPref("identity.fxaccounts.commands.enabled", false); lockPref("identity.fxaccounts.enabled", false); lockPref("identity.fxaccounts.pairing.enabled", false); lockPref("identity.fxaccounts.toolbar.accessed", false); lockPref("identity.fxaccounts.toolbar.enabled", false); lockPref("identity.fxaccounts.auth.uri", ""); lockPref("services.sync.engine.addresses", false); lockPref("services.sync.engine.addons", false); lockPref("services.sync.engine.creditcards", false); lockPref("services.sync.engine.creditcards.available", false); lockPref("services.sync.engine.bookmarks", false); lockPref("services.sync.engine.history", false); lockPref("services.sync.engine.passwords", false); lockPref("services.sync.engine.prefs", false); lockPref("services.sync.engine.tabs", false); lockPref("services.sync.prefs.sync.dom.disable_open_during_load", false); lockPref("services.sync.prefs.sync.signon.generation.enabled", false);

// Turn on Do not Track lockPref("privacy.donottrackheader.enabled", true); lockPref("services.sync.prefs.sync.privacy.donottrackheader.enabled", true);

// Disable certificate warning bypass // Enable support for Content Security Policy lockPref("security.csp.enableNavigateTo", false); // Disable Safe Browsing anti-malware // Safe Browsing communicates with a third party and leaks the browsing history and also sends metadata about the downloads made. // https://support.mozilla.org/en-US/kb/how-does-phishing-and-malware-protection-work lockPref("browser.safebrowsing.downloads.enabled", false); lockPref("browser.safebrowsing.malware.enabled", false);

// Turn on XSS Filter lockPref("browser.urlbar.filter.javascript", true);

// Restrict third party cookies lockPref("network.cookie.cookieBehavior", 1);

// Enable Flash as it's in a sandbox lockPref("plugin.state.flash", 2);

// Disable webcam and microphone unless necessary lockPref("media.navigator.enabled", false); lockPref("media.navigator.video.enabled", false);

//      Clear personal and temporary data on shutdown 

lockPref("privacy.clearOnShutdown.cache", true); lockPref("privacy.clearOnShutdown.cookies", true); lockPref("privacy.clearOnShutdown.downloads", true); lockPref("privacy.clearOnShutdown.formData", true); lockPref("privacy.clearOnShutdown.history", true); lockPref("privacy.clearOnShutdown.offlineApps", true); lockPref("privacy.clearOnShutdown.openWindows", false); lockPref("privacy.clearOnShutdown.sessions", true); lockPref("privacy.clearOnShutdown.siteSettings", true); lockPref("privacy.cpd.cache", true); lockPref("privacy.cpd.cookies", true); lockPref("privacy.cpd.downloads", true); lockPref("privacy.cpd.formdata", true); lockPref("privacy.cpd.history", true); lockPref("privacy.cpd.offlineApps", true); lockPref("privacy.cpd.openWindows", false); lockPref("privacy.cpd.passwords", true); lockPref("privacy.cpd.sessions", true); lockPref("privacy.cpd.siteSettings", true);

// Prevent saving passwords lockPref("signon.rememberSignons", false); lockPref("services.sync.prefs.sync.signon.rememberSignons", false); lockPref("signon.backup.enabled", false); lockPref("signon.rememberSignons.visibilityToggle", false);

// Set homepage to blank lockPref("browser.startup.homepage", "about:blank");

// set urlbar size - working lockPref("layout.css.devPixelsPerPx", "-1.2");

// Prevent the use of SPDY, Websockets and WebRTC if not supported by the web proxy // https://wiki.mozilla.org/Media/WebRTC lockPref("media.peerconnection.enabled", false);

// Disable UI buttons lockPref("pref.privacy.disable_button.cookie_exceptions",true); lockPref("browser.toolbars.bookmarks.showOtherBookmarks", false); lockPref("browser.migrate.showBookmarksToolbarAfterMigration", false); lockPref("browser.toolbars.bookmarks.visibility", "never"); lockPref("browser.urlbar.shortcuts.bookmarks", false);

// Disable updates and notifications lockPref("app.update.BITS.enabled", false); lockPref("app.update.service.enabled", false);

// Disable device sensors lockPref("device.sensors.enabled", false);

// Disable Pocket integration lockPref("browser.pocket.enabled", false); lockPref("extensions.pocket.enabled", false);

// Disable Firefox's new Screenshot tool (requires at least Firefox 55) // https://github.com/auberginehill/firefox-customization-files/issues/1 // https://www.ghacks.net/2017/08/12/how-to-disable-firefoxs-new-screenshot-tool/ lockPref("extensions.screenshots.disabled", true); // Disable the version updated page lockPref("browser.startup.homepage_override.mstone", "ignore"); // Disable default browser check lockPref("browser.shell.checkDefaultBrowser", false);

// Disable search suggestions // By default everything that is typed in the search box is sent to the search engine. lockPref("browser.search.suggest.enabled", false); lockPref("browser.search.suggest.enabled.private", false); lockPref("browser.urlbar.showSearchSuggestionsFirst", false); lockPref("services.sync.prefs.sync.browser.urlbar.showSearchSuggestionsFirst", false); lockPref("browser.urlbar.shortcuts.history", false); lockPref("browser.urlbar.suggest.bookmark", false); lockPref("browser.newtabpage.activity-stream.improvesearch.topSiteSearchShortcuts", false);

// Change default search engine to Google - others removed through Group Policy lockPref("browser.search.region", "US"); lockPref("browser.search.removeEngineInfobar.enabled", "True"); lockPref("browser.search.searchEnginesURL", "http://www.google.com/search?q=");

// New Tab settings lockPref("browser.newtab.preload", false); lockPref("browser.newtabpage.activity-stream.showSponsored", false); lockPref("browser.newtabpage.enabled", false);

// Turn on tracking protection // This makes Firefox block known tracking domains by default. lockPref("privacy.trackingprotection.enabled", true);

// [CHROME:userChrome.css - userContent.css][bug 1541233][69] lockPref("toolkit.legacyUserProfileCustomizations.stylesheets", true);

//////////////////////// thanks,

        jd

Asked by jon.dickens 1 year ago

Last reply by jon.dickens 1 year ago

  • Archived

2 step Authentication

Every time I log into Quickbooks using Firefox as my browser i am asked for a code. 2 Step authentication is turned off in both Intuit and Firefox. Other browsers (Chrome… (read more)

Every time I log into Quickbooks using Firefox as my browser i am asked for a code. 2 Step authentication is turned off in both Intuit and Firefox. Other browsers (Chrome and Safari) do not require 2 step authentication to log into Quickbooks. How do I stop Quickbooks from asking me for the code for each login when using Firefox??

Asked by home41 1 year ago

Last reply by cor-el 1 year ago

  • Archived

Two-Factor Auth Setup will not accept numerical codes from newly created Authy 'Firefox Account'

I got a new phone and went to reset my 2FA, scan a new QR, and go about my day. I successfully removed the old 2FA setup from Authy on my older phone, and from my Mozil… (read more)

I got a new phone and went to reset my 2FA, scan a new QR, and go about my day.

I successfully removed the old 2FA setup from Authy on my older phone, and from my Mozilla account. I can access my user account settings for my Mozilla account and select to add a new 2FA method.

I land on the page which displays a QR code, which I can scan with Authy, and which immediately shows my account information as confirmation.

However, once I try to enter the first numerical code displayed -- Mozilla's text field declines on "incorrect code". I have done this over several times, tried on both phones, and waited for further numerical codes to be generated from the app. No success.

Right now I am on default email based 2FA and cannot for the life of me get the QR or manual onboarding process to accept a code from my app. I have to return my old phone soon so I was hoping to get some advice and figure this out just in case the issue was due to something there.

Asked by DonyWahlberg 1 year ago

Last reply by cor-el 1 year ago

  • Archived

Saved passwords and users could not use in firefox.

https://www.gfashion.com/en/ This website is important for me. I have saved all passwords and users info to firefox. When I login in , the username and password is empty… (read more)

https://www.gfashion.com/en/ This website is important for me. I have saved all passwords and users info to firefox. When I login in , the username and password is empty.

Even if I click the username input box, the stored user list will not be displayed, but when I click the password box, the stored user password list can be displayed, which is unacceptable. I also tried in mobile version. It is the same thing.

I have used all the methods mentioned in Support, but still cannot solve the problem. But the website works well in Chrome and Edge. Although I like this software very much, I have to use it sparingly because it is troublesome to log in every time. I hope you can support this type of website, thank you.

Asked by wasay200312 2 years ago

Last reply by cor-el 2 years ago

  • Solved
  • Archived

Virus / malware issue

Hi, I tried to download a script but Firefox warned me it had a virus / malware. So I immediately put it in trash, emptied trash, restarted my Macbook and used Bitdefende… (read more)

Hi, I tried to download a script but Firefox warned me it had a virus / malware. So I immediately put it in trash, emptied trash, restarted my Macbook and used Bitdefender to scan my Mac. Fortunately it detected no viruses. So I think I'm good (Hopefully!)

But, every time I open Firefox now, a little window appears at the top showing my last download and telling me it had a virus or malware - I'm posting a screenshot of this. I removed it from my history, and cleared the preview panel, but it still pops up. To be clear, this only happens when I completely close Firefox and reopen it, not when I just open new windows or tabs.

How can I get it to stop popping up with this message? Also - one other oddity, each time I open Firefox, it says the time this script was downloaded matches the time I open Firefox (as opposed to when I actually downloaded the pdf - about an hour ago)

Asked by sunnybleckinger 2 years ago

Answered by jscher2000 - Support Volunteer 2 years ago

  • Archived

Secure Connection Failed

I keep getting this Problem Loading Page message: Secure Connection Failed An error occurred during a connection to www.google.com. SSL peer reports incorrect Message A… (read more)

I keep getting this Problem Loading Page message:

Secure Connection Failed

An error occurred during a connection to www.google.com. SSL peer reports incorrect Message Authentication Code.

Error code: SSL_ERROR_BAD_MAC_ALERT

   The page you are trying to view cannot be shown because the authenticity of the received data could not be verified.
   Please contact the website owners to inform them of this problem.
    I've been through the Security settings and can't seem to find a fix. This seems to have started with the last update...

Asked by shaena.a 1 year ago

Last reply by Terry 1 year ago

  • Archived

credit card number appears and then disappears in firefox autofill

I have credit card autofill enabled, because I do a lot of business online and it is very convenient. Maddeningly, it has started doing something I can't find a way to fi… (read more)

I have credit card autofill enabled, because I do a lot of business online and it is very convenient. Maddeningly, it has started doing something I can't find a way to fix. I put the mouse over the box asking for a credit card number, the saved numbers pop up, I select one, and then the pop-up box disappears without filling in the credit card number. There has got to be a fix for this, but I cannot find it. Pls. advise...

Asked by s.wilber 2 years ago

Last reply by jdench1 1 year ago

  • Archived

Saved User ID Name

I use Firefox and have saved my User ID and Passwords for my ATT email (https://currently.att.yahoo.com/) and my ATT account (att.com). It was populating these fields be… (read more)

I use Firefox and have saved my User ID and Passwords for my ATT email (https://currently.att.yahoo.com/) and my ATT account (att.com). It was populating these fields before but now the User ID wont populate and I have to type the info in. The Password populates OK. What happened and what can I do to get it to work?

Asked by Mary Ryckeley 1 year ago

Last reply by FredMcD 1 year ago

  • Archived

Passwords

My browser updated and I seem to have lost all of my saved passwords. I signed in but none of them seem to be saved. Not sure how to get them back or where they went. Is … (read more)

My browser updated and I seem to have lost all of my saved passwords. I signed in but none of them seem to be saved. Not sure how to get them back or where they went. Is there a way to recover or find them?

Asked by panaderoo.tb 1 year ago

Last reply by ExileFox 1 year ago

  • Solved
  • Archived

Bookmark Master Password

How can I stop Firefox from asking for the master password for bookmarks on start up? Often I don't need to use a password. It is very annoying and I think it is dangerou… (read more)

How can I stop Firefox from asking for the master password for bookmarks on start up? Often I don't need to use a password. It is very annoying and I think it is dangerous because then if I step away anyone has the use of my passwords. Firefox used to only ask when you needed to use a password to login to a site. I think this change is dangerous.

Asked by cjbill 1 year ago

Answered by FredMcD 1 year ago

  • Archived

The full non-frame login URL is changed by Password Manager.

Good Day All, My RCN Webmail login website is not being fully resolved because the full login URL is changed. Since RCN is being merged with Astound I now must choose be… (read more)

Good Day All, My RCN Webmail login website is not being fully resolved because the full login URL is changed. Since RCN is being merged with Astound I now must choose between them before getting the login page. I change it but it wont save it with the sub URL /support/email/rcn-webmail/ intact & unlike KevP's solution, @ https://support.mozilla.org/yo/questions/1360318 my page is not a frame & doesn't seem to be a redirection issue that I can tell either. Does any one know how I can troubleshoot this ? Thanks in Advance for any contributions.

Asked by 2 against Nature 1 year ago

Last reply by 2 against Nature 1 year ago

  • Archived

Why does nothing remember this browser?

The password manaer and autofill works just fine. but every damn time I try to log into anything I have to do the F-ing two factor authentication everytime. I'm so sick o… (read more)

The password manaer and autofill works just fine. but every damn time I try to log into anything I have to do the F-ing two factor authentication everytime. I'm so sick of it. It even does that even though I selected "trust this browser or device or whatever". I hate 2FA I dont care how secure it is its a pain in the ass!!!

Asked by jrocco727 1 year ago

Last reply by FredMcD 1 year ago

  • Archived

Google Sign in next button not working

I cleared the cache. Instructed to check DNS server automatically but I can not find that under Edit - Settings. Do I need to do something different? Linuxmint 20.3, FF… (read more)

I cleared the cache. Instructed to check DNS server automatically but I can not find that under Edit - Settings. Do I need to do something different?

Linuxmint 20.3, FF 100

Asked by borgward 1 year ago

Last reply by FredMcD 1 year ago