태그된 질문 보이기: 모든 질문 보이기

Firefox and Twitter (X)

It started today. I can no longer sign into X if I have my Firefox browser setting "Never Remember History" enabled. If I enable "Remember History" I can log in to X. … (자세히 살펴보기)

It started today.

I can no longer sign into X if I have my Firefox browser setting "Never Remember History" enabled.

If I enable "Remember History" I can log in to X.

This has never been an issue before and is a bit frustrating.

7시간 전에 Sonia Chan님이 질문

  • 해결된 질문

Most sites will not connect due to security issues

I am running Firefox 126.0-1 on an Arch Linux system. Most websites are failing to connect for security reasons. Some sites, including google.com and nytimes.com, fail w… (자세히 살펴보기)

I am running Firefox 126.0-1 on an Arch Linux system. Most websites are failing to connect for security reasons.

Some sites, including google.com and nytimes.com, fail with an "SEC_ERROR_UNKNOWN_ISSUER" error, and their certificates confirm that they are respectively issued by Google Trust Services LLC and DigiCert Inc.

The website archlinux.org errors with "MOZILLA_PKIX_ERROR_MITM_DETECTED", stating that "Software is Preventing Firefox From Safely Connecting to This Site", citing in particular ISRG Root X1 as the problem. The certificate confirms that it is issued by Let's Encrypt.

The website duckduckgo.com simply errors with "SEC_ERROR_PATH_LEN_CONSTRAINT_INVALID" and states "Secure Connection Failed"

I have confirmed in preferences that my proxy settings are set to "No proxy" and the problem persists across troubleshooting mode and making a new profile. I have also tried removing the cert9.db file in a given profile folder.

9시간 전에 david.carlip님이 질문

8시간 전에 david.carlip님이 답변

tabs and auto updates

I just lost several hundred tabs on Firefox mobile right after it updated itself. The most recent tabs show only ten of those tabs, which were all opened and closed tod… (자세히 살펴보기)

I just lost several hundred tabs on Firefox mobile right after it updated itself. The most recent tabs show only ten of those tabs, which were all opened and closed today and aren't part of what I need to restore.

How do I get my tabs back? I've seen no 'restore previous session' option. My laptop only shows the few I have open now. What do I do to restore them?

1주 전에 Katerpie님이 질문

8시간 전에 Paul님이 마지막 답변

Primary Password issue

I am migrating to a new laptop. The new laptop keeps asking me for a primary password. I have never set one up. This issue doesn't happen on the old machine, only the new… (자세히 살펴보기)

I am migrating to a new laptop. The new laptop keeps asking me for a primary password. I have never set one up. This issue doesn't happen on the old machine, only the new one. It also won't let me disable the pop-up that asks for the primary password. Please advise.

1주 전에 Lisa Corricello-McDowell님이 질문

17시간 전에 Lisa Corricello-McDowell님이 마지막 답변

Thunderbird 115.11.0 (64-bit) not accepting Gmail password, however Outlook and web DO work

Thunderbird 115.11.0 (64-bit) Edition Windows 11 Home Version 23H2 Installed on ‎10/‎22/‎2022 OS build 22631.3593 Experience Windows Feature Experience Pack 1000.22700.10… (자세히 살펴보기)

Thunderbird 115.11.0 (64-bit) Edition Windows 11 Home Version 23H2 Installed on ‎10/‎22/‎2022 OS build 22631.3593 Experience Windows Feature Experience Pack 1000.22700.1003.0

Processor 12th Gen Intel(R) Core(TM) i7-1260P 2.10 GHz Installed RAM 16.0 GB (15.7 GB usable) Device ID 5E92FCAE-C72A-4252-8BD4-D8E95E052268 Product ID 00342-22036-83915-AAOEM System type 64-bit operating system, x64-based processor Pen and touch Touch support with 10 touch points

Thunderbird refuses to connect to Gmail with password. Fresh install of Thunderbird. New password (triple verified I'm using the same password) OAuth2 enabled Gmail account entered correctly, Thunderbird contacts Gmail, secondary authentication text sent and verified, refuses to connect.

Outlook Office 365 - works gmail.com - works Thunderbird - "Unable to log in at server. Probably wrong configuration, username or password"

Incoming IMAP SSL/TLS imap.gmail.com

Outgoing SMTP SSL/TLS smtp.gmail.com

21시간 전에 Paul Krummenacker님이 질문

20시간 전에 sfhowes님이 마지막 답변

private browsing shows up in history sometimes

once every week or two, private browsing shows up in history. it is not cleared when i close all private windows. the rest of the time it works as it's supposed to. an… (자세히 살펴보기)

once every week or two, private browsing shows up in history. it is not cleared when i close all private windows. the rest of the time it works as it's supposed to. any suggestions are welcome. thank you. running 125.0.3 on mac ventura 13.6.6

20시간 전에 zinaemail-junky님이 질문

Commentary No Longer Visable On Multiple Websites

The last Firefox update, 126.0 (64bit), that was installed 2 days ago has caused various website's commentary or forums to not be displayed. For example, Yahoo finance pa… (자세히 살펴보기)

The last Firefox update, 126.0 (64bit), that was installed 2 days ago has caused various website's commentary or forums to not be displayed. For example, Yahoo finance page, attempting to read the "community" section of a particular stock such as Walmart (WMT) nothing is displayed. This happens also on news websites that allow commentary. Google Chrome does display commentary but I don't like using Google.

This is not the first time commentary has not being displayed after an update. Happened a couple of times last year.

The desktop pc is running Windows 11, version 23H2.

Thanks, Frank

23시간 전에 Clovis People님이 질문

  • 해결된 질문

macOS disable Firefox default browser prompt non-interactively

I am trying to configure Firefox on macOS to not prompt the user to make it the default browser. I am using the following script to create the profile and set the user p… (자세히 살펴보기)

I am trying to configure Firefox on macOS to not prompt the user to make it the default browser.

I am using the following script to create the profile and set the user preferences after installing Firefox by copying `Firefox.app` from the downloaded DMG: ```

  1. !/bin/sh

open -a Firefox.app --args -CreateProfile default sleep 1

write_userpref() { USER=$(whoami) PROFILE=$(ls -1 "/Users/${USER}/Library/Application Support/Firefox/Profiles/" | grep -E "\.default$") cat << EOF > "/Users/${USER}/Library/Application Support/Firefox/Profiles/${PROFILE}/user.js" // mandatory comment? user_pref("app.update.auto", false); user_pref("app.update.disable_button.showUpdateHistory", false); user_pref("app.update.enabled", false); user_pref("breakpad.reportURL", ""); user_pref("browser.newtabpage.activity-stream.feeds.topsites", false); user_pref("browser.newtabpage.activity-stream.feeds.section.topstories", false); user_pref("browser.tabs.crashReporting.sendReport", false); user_pref("browser.discovery.enabled", false); user_pref("browser.defaultbrowser.notificationbar", false); user_pref("browser.shell.checkDefaultBrowser", false); user_pref("browser.shell.didSkipDefaultBrowserCheckOnFirstRun", false); user_pref("browser.shell.skipDefaultBrowserCheckOnFirstRun", true); user_pref("browser.newtabpage.enabled", false); user_pref("experiments.enabled", false); user_pref("extensions.pocket.enabled", false); user_pref("toolkit.telemetry.enabled", false); user_pref("update_notifications.enabled", false); EOF }

write_userpref

open -a Firefox.app --args -new-tab -P default "about:blank" sleep 3 osascript -e 'quit app "Firefox"' sleep 2

open -a Firefox.app --args -P default about:blank ```

Here's the behaviour I'm seeing:

  1. Firefox starts to an `about:blank` tab, however there is a second "Firefox Privacy Notice" tab
  2. AppleScript quits Firefox
  3. Firefox starts to an `about:blank` tab, however it is now prompting me to make it the default browser

I do not want Firefox to prompt the user to become the default browser.

My ideal scenario is that Firefox starts without the "Firefox Privacy Notice" tab and without prompting me to make it the default browser. From the observed behaviour, this doesn't seem possible.

Can anyone tell me how I can accomplish this without user interaction or MDM?

1일 전에 hal.martin님이 질문

1일 전에 hal.martin님이 답변

Firefox Android Notification Bitwarden

I keep getting these notifications, and because they relate to Bitwarden" I'm very reluctant to just click on the "accept" button in the message because of the possibilit… (자세히 살펴보기)

I keep getting these notifications, and because they relate to Bitwarden" I'm very reluctant to just click on the "accept" button in the message because of the possibility of a scam and the exposure it may create.

Is the notification genuine? How do I know? How can I update Firefox settings to achieve the same result without responding to the notification?

Bit paranoid I accept, but better careful than having regrets! Thks

2일 전에 Mildred PC님이 질문

1일 전에 Mildred PC님이 마지막 답변

Recent problems recieving and sending

I keep getting the message "Sending of password for user kcmsansiro did not succeed. Mail server pop3.iinet.net.au responded: [SYS/TEMP] Account is temporarily unavailabl… (자세히 살펴보기)

I keep getting the message "Sending of password for user kcmsansiro did not succeed. Mail server pop3.iinet.net.au responded: [SYS/TEMP] Account is temporarily unavailable." and "Sending of password for user kcmsansiro did not succeed. Mail server pop3.iinet.net.au responded: Disconnected for inactivity." and "Login to server pop3.iinet.net.au with username kcmsansiro failed" on all 3 accounts (kcmsansiro, phildemaria and philrossi)

I can still receive messages on phildemaria but cant send without getting these messages

Recently been migrated to the message co

Thanks for any advice you can offer

1일 전에 Philip Demaria님이 질문

Master password for andriod

Hey, Can't seem to find the master password feature on android that's on the desktop version. Saw a previous thread from a year ago that implied that it was cause the unl… (자세히 살펴보기)

Hey, Can't seem to find the master password feature on android that's on the desktop version. Saw a previous thread from a year ago that implied that it was cause the unlocking of the phone was enough, but that didn't make sense to me, because you have to unlock a computer as well?

I just worry that if my phone gets hacked, they would just be able to easily pull the firefox passwords, and I wouldn't mind that extra layer of protection. Any chance I missed the setting or of this getting added? Or is this something I shouldn't worry about due to the way the data is secured?

Anyway, thank you for any perspectives in advance!

1일 전에 liamgilhool님이 질문

Comments do not load

On a couple of sites (e.g. Petapixel) when I click "Load Comments", nothing happens. I suspect this may be because Firefox security is preventing comments from loading b… (자세히 살펴보기)

On a couple of sites (e.g. Petapixel) when I click "Load Comments", nothing happens. I suspect this may be because Firefox security is preventing comments from loading because of site tracking or other security issues. Is this the cause?

2개월 전에 dclark님이 질문

1일 전에 jscher2000 - Support Volunteer님이 마지막 답변

Disqus Comments doesn't load if Browser Privacy set to Strict

TL;DR : Disqus comments used to work while using privacy Strict mode now it doesn't. After years of it working out of the get-go while using Strict mode up till rec… (자세히 살펴보기)

TL;DR : Disqus comments used to work while using privacy Strict mode now it doesn't.

After years of it working out of the get-go while using Strict mode up till recently (about a year ago this was really low on my priority list) refused to work I though it was my Ad blocker was causing issues but after setting it in the filters to allow and even after turning it off still no dice.

Removed all add-ons tried again still Disqus comment section refused to load in the websites I regularly visit. So after giving up, I just look around in the browser setting to see if there is anything that may cause conflict with certain scripts from running.

2개월 전에 ianjay.tt님이 질문

1일 전에 jscher2000 - Support Volunteer님이 마지막 답변

Not showing Disquis Comments and Blogs when visiting virtueonline.org

When I visit the web site virtueonline.org using Firefox browser, the Disqus comment section does not appear below articles on the site. Sometimes, when I go in and out … (자세히 살펴보기)

When I visit the web site virtueonline.org using Firefox browser, the Disqus comment section does not appear below articles on the site. Sometimes, when I go in and out of the article, the Disqus comment section will appear, but not always. When I use Microsoft Edge, the Disqus comment sections appear.

4개월 전에 Roy Quick님이 질문

1일 전에 jscher2000 - Support Volunteer님이 마지막 답변

An error occurred during a connection to login.acg.aaa.com

Unable to login to my AAA account from my PC though I can with no issues on my android phone. security.tls.version.max is set to 4 SSL Report: login.acg.aaa.com (104.68… (자세히 살펴보기)

Unable to login to my AAA account from my PC though I can with no issues on my android phone.

security.tls.version.max is set to 4

SSL Report: login.acg.aaa.com (104.68.100.81) shows A+ rating - https://www.ssllabs.com/ssltest/analyze.html?d=login.acg.aaa.com

Please help.

1일 전에 Max님이 질문

Passwort

Hallo, durch eine Unachtsamkeit habe ich das Hauptpasswort (Primäres Passwort.) von Thunderbird gelöscht. Ich finde auf den Hilfeseiten keinen Hinweis wie man da Passwo… (자세히 살펴보기)

Hallo, durch eine Unachtsamkeit habe ich das Hauptpasswort (Primäres Passwort.) von Thunderbird gelöscht. Ich finde auf den Hilfeseiten keinen Hinweis wie man da Passwort zurücksetzten kann. Dadurch komme ich nicht mehr an meine Mails. Freundliche Grüße

1일 전에 Frank Heinig님이 질문

1일 전에 david님이 마지막 답변

I've lost my password to log into Thunderbird. There is no provision to change it, and it wasn't saved by Thunderbird password manager. There MUST be a way around this problem. Please help.

I've lost my password to log into Thunderbird. There is no provision to change it, and it wasn't saved by Thunderbird password manager. There MUST be a way around this pr… (자세히 살펴보기)

I've lost my password to log into Thunderbird. There is no provision to change it, and it wasn't saved by Thunderbird password manager. There MUST be a way around this problem. Please help.

1일 전에 Hai Dang HUYNH님이 질문

1일 전에 christ1님이 마지막 답변

Last update 126.0

After the last Firefox update: - i was logged out of my mozilla account; - i was logged out of my Facebook account; - i was logged out of my bluesky account; - i was log… (자세히 살펴보기)

After the last Firefox update: - i was logged out of my mozilla account; - i was logged out of my Facebook account; - i was logged out of my bluesky account; - i was logged out of my Facebook account; - my Instagram account is suspended;

yesterday morning all of these were logged-in and working fine.

Had to work for 30 minutes to re-log-in. And I cannot reactivate Instagram, I contacted support, nothing yet.

2일 전에 massmedia314님이 질문

1일 전에 jscher2000 - Support Volunteer님이 마지막 답변