• Solved

Videos buffering and/or not playing

When I try to play a video on Firefox desktop, it takes it a long time to load. Once it has loaded, whenever I pause it for more than a few seconds, or if I try to skip a… (read more)

When I try to play a video on Firefox desktop, it takes it a long time to load. Once it has loaded, whenever I pause it for more than a few seconds, or if I try to skip around the video (either by clicking around in the loaded section of the progress bar or using +/- seconds buttons), the video begins buffering again before the video resumes. This makes it extremely difficult and frustrating to watch anything that requires me to pause, rewind, or fast forward. I've noticed this issue affect multiple video viewing sites, such as YouTube, Vimeo, and Netflix. My roommate also uses Firefox, but doesn't have this issue, so I know it's not a problem with my internet. I thought it might be a problem with my computer, but I tried to replicate the issue in Chrome and everything worked fine there. The issue has persisted almost a week. I have:

  • Rebooted my computer several times
  • Deleted my history/cache
  • Disabled my extensions
  • Turned off Java scripts in firefox (this disabled my ability to load sites like YouTube completely, so I turned it back on)
  • Updated my computer
  • Updated my graphics drivers
  • Refreshed firefox
  • Uninstalled and reinstalled firefox (and rebooted my computer)
  • Uninstalled and reinstalled firefox AND deleted all the data it stored on my computer (and rebooted my computer)

I am currently using version 123.0.1 of Firefox. My OS is Windows 10 22H2.

Asked by AccidentalRogue 2 months ago

Answered by AccidentalRogue 2 months ago

Free Antivirus, AVG no longer supports Firefox

I have used Firefox for years and had AVG free antivirus installed also for years. Tonight I had a popup window open from AVG informing me that AVG no longer support Fire… (read more)

I have used Firefox for years and had AVG free antivirus installed also for years. Tonight I had a popup window open from AVG informing me that AVG no longer support Firefox and have uninstalled their antivirus addon with immediate effect.

Does anyone know of a Free antivirus program that is any good and still supports Firefox?

Asked by mac_rame 21 hours ago

Last reply by jonzn4SUSE 20 hours ago

  • Solved

Files downloaded in Firefox Private Browsing are deleted automatically after closing the browser

I am facing issue while downloading files in Firefox Private Browsing. Whenever I download my PDF files, as soon as I close the browser window, the files also get deleted… (read more)

I am facing issue while downloading files in Firefox Private Browsing. Whenever I download my PDF files, as soon as I close the browser window, the files also get deleted automatically. What should I do to rectify this issue.

Asked by kashishjaggi16 1 month ago

Answered by cor-el 1 month ago

  • Solved

ctrl+c opens Britannica.com with the selected text in the search field.

How do I return ctrl+c to just copying the selected text? I have checked the extension shortcuts and not found anything there. I have also searched extensively for solu… (read more)

How do I return ctrl+c to just copying the selected text?

I have checked the extension shortcuts and not found anything there. I have also searched extensively for solutions, before making this post.

Asked by gotaug 2 months ago

Answered by gotaug 2 months ago

  • Solved

Unable to paste screenshot into Google Translate

When I try to screenshot (Windows+Shift+S) and paste the screenshot into Google Translate, I get the error message: Unable to paste from clipboard right now. Try copying… (read more)

When I try to screenshot (Windows+Shift+S) and paste the screenshot into Google Translate, I get the error message:

Unable to paste from clipboard right now. Try copying the image again.

This functionality works in every other browser I've tried (Chrome, Edge, Brave, Opera GX), so it's not a Google problem, I don't think.

Asked by Patrick R. 2 months ago

Answered by zeroknight 2 months ago

  • Solved

IE Tab extension...

There used to be an extension called "IE Tab". It allowed you to right click on the link, and open the site in a tab, using Internet Explorer, for sites that didn't work … (read more)

There used to be an extension called "IE Tab". It allowed you to right click on the link, and open the site in a tab, using Internet Explorer, for sites that didn't work properly in Firefox. I was wondering if anybody knows of any similar extension that would do the same for Edge? I can't open Twitter (X) using Firefox anymore, but I can open it using Edge. I don't like Edge (obviously), but I have no choice. Thanks in advance!!!

Asked by carlrgoodwin 2 months ago

Answered by cor-el 2 months ago

How do I delete the thousands of Recently Bookmarked items

When I open the Manage Bookmarks in Firefox I have thousands (not exaggerating) of recently bookmarked items. How to I delete all of them? I think I turned that feature… (read more)

When I open the Manage Bookmarks in Firefox I have thousands (not exaggerating) of recently bookmarked items. How to I delete all of them? I think I turned that feature off via the browser.bookmarks.showRecentlyBookmarked. I changed it from True to False I have tried deleting them one by one but it seems like they recreate and I am not making any progress deleting. How do I delete all of them?

Thank you.

Asked by DRC 4 months ago

Last reply by cor-el 4 months ago

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… (read more)

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?

Asked by hal.martin 4 hours ago

Last reply by hal.martin 3 hours ago

  • Archived

Firefox Relay

I removed the Firefox Relay, however whenever I want to open my email its still there and I have to keep entering my email address manually, How do \i get rid of it? … (read more)

I removed the Firefox Relay, however whenever I want to open my email its still there and I have to keep entering my email address manually, How do \i get rid of it?

Asked by claudehebert75 6 months ago

Last reply by Terry 6 months ago

  • Solved

virtual Console of dell idrac 8 not working

We still use some Dell 13g servers equipped with idrac 8. When I'm trying to launch the virtual Console the window opens up but nothing shows. This used to work fine in … (read more)

We still use some Dell 13g servers equipped with idrac 8. When I'm trying to launch the virtual Console the window opens up but nothing shows. This used to work fine in previous versions of Firefox. I can't tell from which version it stopped but it's not long ago. Also idrac 9 console works fine in Firefox When trying to open console idrac 8 in Chrome it works fine Any idea what could be causing it? Any config switch to tweak?

Asked by markatdxb 2 weeks ago

Answered by zeroknight 1 week ago

  • Solved

Several question re: latest version of Mozilla (version 104) - Resizing URL bar and having more add-ons shown

Hello all... This one has been driving me a bit batty as of late. I tend to use lots of extensions/add-ons and for most of them, I want the icons to show on the tool ba… (read more)

Hello all...

This one has been driving me a bit batty as of late. I tend to use lots of extensions/add-ons and for most of them, I want the icons to show on the tool bar - that is, the part to the right of the URL/search bar. It used to be that you could adjust the size of your URL/search bar to make it smaller so that more add-on icons could be displayed - but as of recently, that is no longer possible (at least from what I can gather). Right now, I only have 10 add-on icons showing to the right of my URL bar and I have no clue how to access the other add-ons/extensions that I would like to use.

If I can recall correctly, at one time there was a way to show the additional extension/add-on icons in something called an overflow bar - but I can no longer find that, and half of the add-ons I want to access, I cannot do it because they are no longer shown to the right of the URL bar (except for the 10 that are there now).

So my questions are:

How can I resize the URL/Search bar to make it smaller width-wise, so that perhaps, more add-on icons will show to the right - and/or how can I access the rest of my add-ons if they are hidden in some kind of overflow bar?

I have included a screen shot on my current view, showing the add-on icons (some of them) that show to the right of the URL bar - but I have at least 10 others that I cannot find anywhere and would like them to show also.

Thanks in advance...

Ben

Asked by benherrmann1 1 month ago

Answered by cor-el 1 month ago

scheduled task running

ive built a new pc and have a flashing program popup every 10min. upon assistance from a really good pc guy, we've found its a firefox default browser agent with a long … (read more)

ive built a new pc and have a flashing program popup every 10min. upon assistance from a really good pc guy, we've found its a firefox default browser agent with a long code.

its not listed in my scheduled tasks, eyt runs every 10min. only thing close to firefox would be thrunderbird, but iirc, mozilla and thunderbird are not longer the same company. either way. i need this thing to stop running every 10min.

Asked by Brett Isaacs 21 hours ago

Last reply by Brett Isaacs 6 hours ago

Only display fully downloaded files in the download folder

Hello dear community, I have a program that continuously monitors the download folder under Windows 11 for a specific file and retrieves it. I download this file in Fire… (read more)

Hello dear community,

I have a program that continuously monitors the download folder under Windows 11 for a specific file and retrieves it. I download this file in Firefox, but the said program gives an error.

I have noticed that when files are downloaded in FireFox, they already appear in the Downloads folder with the corresponding file extension with 0 bytes and these are then apparently swapped or merged with the .parts file.

The problem is that the mentioned program now tries to retrieve the unfinished file, which then leads to an error.

Does anyone know if it is possible to customize Firefox so that the file only appears in the download folder when the download is fully complete?

Many thanks for your help :D

Asked by Andrijan 1 day ago

Last reply by Andrijan 4 hours ago

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… (read more)

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!

Asked by king__lego 6 days ago

Last reply by jonzn4SUSE 8 hours ago

Firefox will not play DRM content video

For a few weeks now, FIrefox will not play DRM content video on this computer. I have tried all the suggested solutions and none have worked. Also, I uninstalled and re… (read more)

For a few weeks now, FIrefox will not play DRM content video on this computer. I have tried all the suggested solutions and none have worked. Also, I uninstalled and reinstalled Firefox, but the problem remains. I am very frustrated with this problem and am ready to get rid of Firefox permanently on ALL our computers unless this can be fixed.

Thank you in advance for your assistance.

Asked by GALearyCPA 5 days ago

Last reply by jonzn4SUSE 5 days ago

multiple issues with PiP on Ubuntu

For some time now, I've been experiencing the following issues with PiP: The floating window opens in a random (and annoying) place and does not place itself automati… (read more)

For some time now, I've been experiencing the following issues with PiP:

  • The floating window opens in a random (and annoying) place and does not place itself automatically on the lower right corner as it used to (where I always move it, so it has no memory as it used to)
  • It's impossible to keep the "always on top" mode on by default, and I have to do it every single time
  • When I toggle windows, the PiP window is always the next one, even when it was not the one I switched from, and I have to always toggle twice for switching between two windows when I have a 3rd PiP window
  • When I change language using the keyboard shortcut, it changes the language on the PiP window, and I have to use the language icon bar. Then, the PiP window becomes activated, and I have to toggle back to the window I was working on before (on which I wanted to change language). I have the "separate languages for separate windows" option activated.

It's been some months now, and all those things were working before an update but never came back...

Does anyone know if there's a way of fixing these issues? I've tried things I found online but nothing seems to work.

Many thanks

Asked by gtpeonta 6 days ago

  • Solved
  • Archived

message from Firefox: Firefox is already running but not responding, the old Firefox process must be closed to open a new one.

This only happens when clicking a link from an email in Thunderbird most of the time it is a news platform. I have to copy the link and open a new tab in Firefox to have… (read more)

This only happens when clicking a link from an email in Thunderbird most of the time it is a news platform. I have to copy the link and open a new tab in Firefox to have it work.

Asked by Simson FireFox 6 months ago

Answered by zeroknight 6 months ago