Viser spørgsmål med mærkatet: Vis alle spørgsmål

Firefox extremely slow to load pages or connect to Web sites after startup - Follow-Up

I see my original question is now archived at https://support.mozilla.org/en-US/questions/1380948#question-reply I never closed it because I didn't know if my last proc… (læs mere)

I see my original question is now archived at https://support.mozilla.org/en-US/questions/1380948#question-reply I never closed it because I didn't know if my last process could really fix the issue. It didn't, not always. Over the years, there have been times when the issue would still pop up, but not as often as before (2022 and earlier).

I have a feeling that during an issue, FF is having difficulty setting up shop after starting up. Consequently, it is spending more time before it could become prepared to connect to the Net. I've come up with another "solution," which is deleting (or moving out) xulstore.json in the profile folder after exiting or before starting FF. You can create a batch command or script to execute the process.

So far, FF is connecting immediately after startup.

Stillet af mobilesuit for 20 timer siden

Seneste svar af cor-el for 5 minutter siden

Netflix Error - F&355-1203

Hi, I was using FF on Ubuntu 22.04.4 LTS. Had version FF 120.x and playing video in Netflix worked fine. Then I updated to FF 124.x and playing video stopped with error… (læs mere)

Hi,

I was using FF on Ubuntu 22.04.4 LTS. Had version FF 120.x and playing video in Netflix worked fine. Then I updated to FF 124.x and playing video stopped with error F7355-1203.

I've checked the DRM setting and it is enabled, I checked addons and I have OpenH264 and Widevine installed, both set to always active.

I've checked installed codecs and I do have libavcodec58 installed. No update for that available via apt. I also have ffmpeg installed, no problem with that either. I can play Netflix videos in Chrome, but not in Firefox now. Something happened to Firefox when I updated from 120.x to 124.x. Today I updated to 125.x, same problem, Netflix video won't play.

I've unchecked the DRM setting and re-checked it, and that does reinstalled Widevine but does not fix the problem.

Any ideas what could be the cause?

Stillet af mark545 for 23 timer siden

Seneste svar af zeroknight for 10 minutter siden

Decryption tool for passwords in Firefox

Back in November 2023 I had the misfortune of a software engineer not doing his job correctly and he reinstalled the OS on my laptop instead of repairing some software th… (læs mere)

Back in November 2023 I had the misfortune of a software engineer not doing his job correctly and he reinstalled the OS on my laptop instead of repairing some software that wasn't functioning correctly. Mercifully, I have had Microsoft support working on recovering my data, which has proved a tremendous task. 4 months and counting.


We have now finally managed to recover my passwords for my browsers, but they are encrypted. Microsoft Support have therefore asked if Mozilla do a decryption tool as they cannot open the file without it being decrypted first. If I was using Microsoft Edge, they would have been able to assist as that is a Microsoft product, but as Firefox is a third party application, they've asked for assistance. By the way, these are NOT scammers or hackers 'helping' me, but Microsoft support and I get everything emailed about our support etc.

Thanks in advance.

Stillet af darrenallen73 for for 1 måned siden

Seneste svar af TechHorse for 1 time siden

Incorrect file format

It has been observed that when a user uses the Firefox browser and tries to download a DDD file, the file format is .pdf instead of .ddd. In the devtools, it was observed… (læs mere)

It has been observed that when a user uses the Firefox browser and tries to download a DDD file, the file format is .pdf instead of .ddd. In the devtools, it was observed that the content-type is text/plain in the response to the request. I changed the content-type to application/octet-stream, but the error still persists

Stillet af Borys Krasko for 1 dag siden

Seneste svar af jscher2000 - Support Volunteer for 39 minutter siden

Amazon Search has disappeared from browser and not included in list of search engines. I want amazon.uk not U.S.

Amazon search has disappeared from browser and not included in list of search engines. I want amazon.uk not U.S. and I do not know where about:config is. … (læs mere)

Amazon search has disappeared from browser and not included in list of search engines. I want amazon.uk not U.S. and I do not know where about:config is.

Stillet af tehwalker for for 1 måned siden

Seneste svar af jscher2000 - Support Volunteer for for 1 måned siden

Download files (pdf, xml) don't open in application (acrobat, firefox) since 125.0.1 Firefox

Download files (pdf, xml) don't open in application (acrobat, firefox) since 125.0.1 Firefox version from IBM Power server with Ubuntu : The message is "Fichier non… (læs mere)

Download files (pdf, xml) don't open in application (acrobat, firefox) since 125.0.1 Firefox version from IBM Power server with Ubuntu :

The message is "Fichier non téléchargé - Risque de sécurité potentiel" that is "No downloaded file, potential security risk" :

When we download a pdf file from the server, the "choice box" allow to . open in the browser or . open in Acrobat or . download on my PC. The opening fails with this message. This is the problem. The download on my PC works and when I open the file from my PC it works also.

We need this function of opening a pdf or xml directly from a server IBM Power with Ubuntu. It was OK for several years until 125.0.1 Firefox version. We had no change on the IBM server.

Can you repair this problem quickly. My PC uses Windows 10

Thank you Patrice Castejon [removed phone#]

Stillet af patrice.castejon for 9 timer siden

Seneste svar af jscher2000 - Support Volunteer for 3 timer siden

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="stroke… (læs mere)

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?

Stillet af jamescobban for 14 timer siden

Seneste svar af cor-el for 1 time siden

Proton Emails Don't Show Attached Inline Pictures

Windows 11 Firefox browser 125.0.1 In Proton Mail, when I receive an email with an picture attached inline, I get the following error message: "Your browser could not ve… (læs mere)

Windows 11 Firefox browser 125.0.1

In Proton Mail, when I receive an email with an picture attached inline, I get the following error message: "Your browser could not verify the remote server's identity. The image might be hosted using the http protocol." Is this issue with settings in Proton or Firefox? How do I fix this? See image below. Thank you.

Stillet af 2doxiedad for 1 dag siden

Seneste svar af cor-el for 1 time siden

Can Not Play Some Videos on Twitter

All Add-ons are disabled and Firefox still can not play SOME of the videos on twitter. All I can see is a spinning circle on the center of the frame and the video will n… (læs mere)

All Add-ons are disabled and Firefox still can not play SOME of the videos on twitter. All I can see is a spinning circle on the center of the frame and the video will never be played. I tried other browsers and they all works well. It seems this issue has nothing to do with my network connection.

I searched this forum and find out some thread reporting issues of not playing All videos on youtube/twitter. Replies to these thread provided some solutions ,like update ffmpeg , set media related options in about:config. I tried them all and neither of them work for me.

Stillet af chicane for 2 dage siden

Seneste svar af cor-el for 2 timer siden

Picture-in-picture since recent YouTube update keeps closing.

Picture-in-picture since recent YouTube update keeps closing. Is there way i could configure in about:config to never close and always stay open even if page refreshes an… (læs mere)

Picture-in-picture since recent YouTube update keeps closing. Is there way i could configure in about:config to never close and always stay open even if page refreshes and have it move the video play back always to the Picture-in-picture window ? If not could this be made a feature in a future update ?

YouTube especially been annoying to Firefox users, cos it keeps refreshing the whole page breaking stuff every time it plays the video, as well have issues with looping videos even tho they are already fully buffered, making entire YouTube experience as frustrating as possible as encouragement to switch to chrome, which i refuse for obvious reasons.

Anything i can do on my end ? If tested if this happens in incognito mode as well with all extensions disabled in private windows, no change of behavior.

Btw this happens on the new YouTube interface with no way to get back to the old interface, cos it keeps the annoying features of the old interface even if you try to re position stuff using hacky ways like extensions that do so, which of course break stuff even further. I just want Picture-in-picture to remain open, and to play current video in picture-in-picture that is playing automatically.

Btw the Picture-in-picture experience with chrome or chrome based browsers is absolutely horrible, giving me even more reasons to stay on Firefox besides privacy related issues and other issues.

Stillet af Muppet for 4 timer siden

Seneste svar af zeroknight for 3 timer siden

Firefox suddenly goes slow, then speeds back up

So I'll be typing like normal (I type 100 WPM), and all of a sudden, I'll type a sentence, but each individual letter starts taking about 3 seconds to show up on the scre… (læs mere)

So I'll be typing like normal (I type 100 WPM), and all of a sudden, I'll type a sentence, but each individual letter starts taking about 3 seconds to show up on the screen. I have to sit and wait a super long time for everything I typed to finally show up. Other times, I move my mouse over something I should be able to click on, and have to wait a long time for the arrow to turn into a hand, letting me click on it. These periods of slowness will last a few minutes, then disappear.

What's really interesting is that when the slowness starts, I can type just fine up in the URL bar. I might type my entire message there, then copy paste it down to where ever I was wanting to post it. However, when I do that, if I have another tab open and that tab is playing music, the music will start to break up and lag as I type. Again, after a while, the slowness disappears and we're back to normal.

Can anyone tell me what's going on?

Stillet af Trenton Knight for 16 timer siden

Seneste svar af zeroknight for 3 timer siden

You've compromised the passwords yourself

Hi Every single one of my passwords is compromised according to you. Therefore I think the data breach is with Firefox . I have set up several unique passwords recently -… (læs mere)

Hi Every single one of my passwords is compromised according to you. Therefore I think the data breach is with Firefox . I have set up several unique passwords recently - how are they breached so soon? And why every single one. It is very suspicious. Regards Caroline

Stillet af cazzyguy for 10 timer siden

Seneste svar af jscher2000 - Support Volunteer for 3 timer siden

Firefox page flickers

I recently got a new computer. Installed firefox onto it. Brought over my profile with all my data and bookmarks. But for the life of me, the page would just sporadically… (læs mere)

I recently got a new computer. Installed firefox onto it. Brought over my profile with all my data and bookmarks. But for the life of me, the page would just sporadically flicker. I tried messing with the settings; performance settings; hardware acceleration. I tried refreshing firefox. But nothing.

Stillet af anger01 for 15 timer siden

Seneste svar af zeroknight for 4 timer siden

Looking for extension for minimizing active tab.

I know that it is possible, cause, in the past, I had extension doing exactly that. When I click on an active tab, Firefox just minimized it and went back to the last one… (læs mere)

I know that it is possible, cause, in the past, I had extension doing exactly that. When I click on an active tab, Firefox just minimized it and went back to the last one I was looking at. But it was for the old version of Firefox. It wasn't compatibile with the new ver of the brawser. Can anyone can help me find some extension doing that please?

Stillet af binks77 for 10 timer siden

Seneste svar af zeroknight for 4 timer siden