Zobrazenie otázok označených:

browser.sessionstore.resume_from_crash = false, yet browser still restarted after crahs

I recently had to reinstall Windows, as a result of a hard drive issue. This involved reinstalling Firefox from scratch. As such I had browser.sessionstore.resume_from_c… (ďalšie informácie)

I recently had to reinstall Windows, as a result of a hard drive issue. This involved reinstalling Firefox from scratch.

As such I had browser.sessionstore.resume_from_crash set to false, but browser.sessionstore.max_resumed_crashes was still set to its default value of 1. The combination resulted in a browser restore after a crash...

This would seem to imply that browser.sessionstore.resume_from_crash has either been deprecated (though that is not mentioned in the knowledgebase article), or it is not being correctly interrogated in the code. Unless I am missing something, and I do not want to go thru the entire config to see what else I might need to set...

If I am reading this wrong, please let me know if there are other entries that need to change from default. In the event of a crash, I want the browser to start with my home pages, NOT restore.

Currently on FF 125.0.3 (64-bit) - and yes, I know there is an update waiting for me to restart my browser yet again...

Windows info below ++++++++ Edition Windows 10 Home Version 22H2 OS build 19045.4412 Experience Windows Feature Experience Pack 1000.19056.1000.0

Archivované 1 90

Secure Connection Failed An error occurred during a connection to www.healthpartners.com. Certificate path length constraint is invalid. Error code: SEC_ERROR_PATH_LEN_CONSTRAINT_INVALID

Secure Connection Failed An error occurred during a connection to www.healthpartners.com. Certificate path length constraint is invalid. Error code: SEC_ERROR_PATH_LEN_CO… (ďalšie informácie)

Secure Connection Failed

An error occurred during a connection to www.healthpartners.com. Certificate path length constraint is invalid.

Error code: SEC_ERROR_PATH_LEN_CONSTRAINT_INVALID

This seems to be caused by Firefox. I don't have this problem with Edge, Chrome or Opera

Archivované 1 126

No push notification on Twitter/X ?

I had issue with notifications (showed up but when i click on them they didnt were redirecting to original tweet) so i cleaned cookies after cleaning cookies i doesnt hav… (ďalšie informácie)

I had issue with notifications (showed up but when i click on them they didnt were redirecting to original tweet) so i cleaned cookies after cleaning cookies i doesnt have option to turn on push notifications.

Archivované 3 45

Lost all tabs from previous session and standard fixes don't work

My Firefox settings are configured to "Open previous windows and tabs" on Startup. This worked fine until this morning, when I lost all of the tabs in my session, includi… (ďalšie informácie)

My Firefox settings are configured to "Open previous windows and tabs" on Startup. This worked fine until this morning, when I lost all of the tabs in my session, including the pinned ones. The last time I closed Firefox, there was only one window open.

I have already tried these ideas to restore the tabs:

  • CTRL+SHIFT+T: Does nothing
  • CTRL+SHIFT+N: Does nothing
  • Three bar menu -> History -> Recently closed tabs: The list is empty
  • Three bar menu -> History -> Recently closed windows: The option is greyed out
  • Three bar menu -> History -> Restore previous session: The option does not exist in the menu
  • Open user profile folder and open sessionstore-backups folder: There are three files named "previous.jsonlz4", "recovery.baklz4" and "recovery.baklz4". They are each 2KB and contain only an empty tab with the URL "about:home". There are three additional files starting with "upgrade" but they are from too long ago, so they don't contain the tabs I require.

The contents of these tabs are vitally important for my work, so this is causing me significant stress. If anyone can suggest ways to recover my previous tab beyond the documented fixes, I would greatly appreciate it. Thank you so much to anyone who can help!

Archivované 16 508

Incredible slow download speeds with 999Mbps connection (below 15Mbps)

Just recently Firefox seems to have its downloads capped at 15-16 meg speedtests show the full 1Gig speed OPERA AND EDGE both download at the full 999 megs but firefox … (ďalšie informácie)

Just recently Firefox seems to have its downloads capped at 15-16 meg speedtests show the full 1Gig speed OPERA AND EDGE both download at the full 999 megs but firefox has recently stopped downloading any faster then 19 meg

what in firefox could be causing this its not happening in any other browser.

Vyriešené Archivované 3 370

Cannot drag tab to detach it from the current window

After updating to the current version of my OS(listed below) I can no longer drag a tab to detach it from the firefox window. Doing so drags a preview of the tab, but it … (ďalšie informácie)

After updating to the current version of my OS(listed below) I can no longer drag a tab to detach it from the firefox window. Doing so drags a preview of the tab, but it is never separated from the current window. I can drag it to an already existing window to move tabs from one window to another, but not to create a new window from a single tab.

OS: Manjaro Linux 24.0.0 Wynsdey Linux kernel version: 6.6.30-2-MANJARO (64-bit) Desktop Environment: KDE Plasma 6.0.4 KDE Framework version: 6.1.0 QT Version: 6.7.0 Display Server: Wayland Firefox version: 125.0.3 (64-bit)

Archivované 2 288

File not downloaded, There are potential security risks

hello,when i download my attached files in mailbox(mail.xmvds.com), it can be everytime warnning me ,but i trust this url ,it is my company's office mailbox ,how can it u… (ďalšie informácie)

hello,when i download my attached files in mailbox(mail.xmvds.com), it can be everytime warnning me ,but i trust this url ,it is my company's office mailbox ,how can it unblock it ,?

Archivované 1 189

Firefox does not display background color in option tags

I am trying to use a <select> tag to display a color selector. So each <option> has a background color to match its displayed text: ```<select id="strokeC… (ďalšie informácie)

I am trying to use a <select> tag to display a color selector. So each <option> has a background color to match its displayed text:

```<select id="strokeColor" name="strokeColor" style="width: 10em;">

             <option value="black" style="background: #000000; text: #FFFFFF">
                     black
             </option>

<option value="aqua" style="background: #00FFFF">

                     aqua
             </option>

<option value="blue" style="background: #0000FF">

                     blue
             </option>

<option value="brown" style="background: #A52A2A">

                     brown
             </option>

<option value="gray" style="background: #808080">

                     gray
             </option>

<option value="green" style="background: #00FF00">

                     green
             </option>

<option value="magenta" style="background: #FF00FF">

                     magenta
             </option>

<option value="orange" style="background: #FFA500">

                     orange
             </option>

<option value="purple" style="background: #800080">

                     purple
             </option>

<option value="red" style="background: #FF0000">

                     red
             </option>

<option value="white" style="background: #FFFFFF">

                     white
             </option>

<option value="yellow" style="background: #FFFF00">

                     yellow
             </option>

<option value="#000000" selected="" style="background: #000000">

                     #000000
             </option>
         </select>```

On Chrome this displays as expected:

https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2024-04-18-22-02-25-eebbd5.png

But on Firefox the background colors are ignored:

https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2024-04-18-22-02-35-bd90ee.png

How can I get Firefox to display the background colors?

Archivované 14 324

Editing contacts

I am trying to switch from Google to Firefox, but I still use my Google email. I uploaded my contacts from Google to Firefox, but I am trying to edit my own contact info … (ďalšie informácie)

I am trying to switch from Google to Firefox, but I still use my Google email. I uploaded my contacts from Google to Firefox, but I am trying to edit my own contact info in Gmail contacts, but when I click the edit button, nothing happens. Do I need to edit it in Firefox, and will that edit migrate back to Gmail? Why can't I edit it in my Gmail contacts (in the Gmail right-hand toolbar), and it will update my Firefox contacts automatically?

If you are going to require "A" file type, fucking say what type it has to be and provide a converter or screenshot tool! I Tried .Docx and PDF. Word does not save to PNG or JPEG so they are not an option.

AT THIS POINT, I AM STRONGLY RECONSIDERING SWITCHING FIREFOX!!!!!!

Archivované 1 189

Thin white border left when fit screen

Hi, i just got a new laptop (Asus Zephryus G16, 2560 x 1600 screen) and after installing Firefox there is a thin white border to the left of the screen when running in fi… (ďalšie informácie)

Hi, i just got a new laptop (Asus Zephryus G16, 2560 x 1600 screen) and after installing Firefox there is a thin white border to the left of the screen when running in fit screen. This problem is not present when in a windowed mode or in F11 full screen.

I tried updating the Intel Arc drivers but this did not fix the problem. Changing to compatibility mode also did not fix te problem.

PS: in the uploaded screenshots it is quite dificult to see the white line(because the background is also white), but when the image is viewed in a new tab it is visible.

Thanks

Vyriešené Archivované 12 758

Log into Wise

In the past I have easily logged into my Wise account with Firefox, my default browser. Had to us Google Chrome to get into my Wise Account. WHY???

Vyriešené Archivované 15 254

Firefox automatically download files .docx from facebook page as pdf

Hello, I have problem with firefox. When I try download from facebook page files .docx, .xlsx (Microsoft Office) Firefox automatically download it as PDF and file is brok… (ďalšie informácie)

Hello, I have problem with firefox. When I try download from facebook page files .docx, .xlsx (Microsoft Office) Firefox automatically download it as PDF and file is broken. I don't know how to repair this. Please help, it is very frustrating.

Vyriešené Archivované 14 578

how to fix "suggest-unexpected" incompatible database version error?

I'm using Ubuntu 24.04 and just reinstalled for unrelated reasons. I'm trying to copy my Firefox profile over from my backup to the new installation. I used the Ubuntu Sn… (ďalšie informácie)

I'm using Ubuntu 24.04 and just reinstalled for unrelated reasons. I'm trying to copy my Firefox profile over from my backup to the new installation.

I used the Ubuntu Snap store to install Firefox and put my old profile in -- this is the one that I was using on my previous Ubuntu 24.04 installation just a couple days ago -- and everything seems fine, but I do see this error message:

[ERROR error_support::handling] suggest-unexpected: Error opening database: Incompatible database version: 18

It gets printed when I type things in the search bar, so it seems related to some sqlite database related to history and autocompletion.

Is there a way to fix this? I'm fine with just deleting it, so long as the other parts of the profile remain.

(This is a strange error, since after all I was using the exact same setup -- Firefox on Ubuntu 24.04, installed via snap -- just a couple days ago, and it was, as far as I know, up-to-date.)

Archivované 2 342

Dead keys not working only in a specific profile

Today I noticed that typing characters with accents like á, ã, â, etc. doesn't seem to work at all from firefox, they all end up ignoring the dead key and just typing the… (ďalšie informácie)

Today I noticed that typing characters with accents like á, ã, â, etc. doesn't seem to work at all from firefox, they all end up ignoring the dead key and just typing the letter itself. It can render them just fine and I can paste them from another app normally too, but actually typing them is impossible from firefox.

After trying to troubleshoot, I eventually found out a few things: - iBus is not at fault, since it works in every other app and I even restarted it, but the problem persists - This only happens in my main profile, newly created profiles don't have that problem - The problem still happens on troubleshoot mode (as long as it is my main profile) - Compose key also doesn't work (I don't want to use compose key anyway, because my keyboard has specialized dead keys, but I at least tried it)

I suspect the problem lies in a setting on about:config that's different from newly created profiles, but I have no idea which and Ctrl+F searching this site doesn't show any relevant configuration that might be the culprit.

Vyriešené Archivované 1 135

text in tab names, address bar and menu boxes

Why is the text in tab names, address bar and menu boxes so small? I did the changes to about:config and the other one that comes up when I googled this question but, wh… (ďalšie informácie)

Why is the text in tab names, address bar and menu boxes so small? I did the changes to about:config and the other one that comes up when I googled this question but, while they enlarge the text in those places, they make the page content too big.

Archivované 1 162