• Решено

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… (читать ещё)

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.

Задан AccidentalRogue 2 месяца назад

Дан ответ AccidentalRogue 2 месяца назад

  • Решено

Firefox View Open Tabs is EMPTY!

Firefox View Open Tabs is my favorite feature. I (used to) use it daily, but now, even though I have NUMEROUS windows (over 40) and multiple tabs in many of those windows… (читать ещё)

Firefox View Open Tabs is my favorite feature. I (used to) use it daily, but now, even though I have NUMEROUS windows (over 40) and multiple tabs in many of those windows, View Open Tabs is completely empty. I'd very much like to restore that 'index' without losing all those pages/tabs (it's my reading & ToDo list).


Sometime recently, I found it using gobs of CPU even though Javascript was (and still is) disabled, so I found the top CPU process and killed it. Instead of a single page going blank, Firefox crashed. Sometime after that I noticed that View Open Tabs was no longer populating. Maybe that contributed or instigated the dysfunction?

Задан Mike Landis 2 недели назад

Дан ответ Mike Landis 1 неделю назад

  • Решено

Stop Auto Open After Download

Hi, I am a student, who tend to mass download files at once. The annoying part is that after every download, firefox automatically opens up the downloaded file in a new … (читать ещё)

Hi,

I am a student, who tend to mass download files at once. The annoying part is that after every download, firefox automatically opens up the downloaded file in a new tap. How can I disable automatically open files after download?

Thanks.

Задан z7798xxzzz 5 месяцев назад

Дан ответ Terry 5 месяцев назад

  • Решено

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… (читать ещё)

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.

Задан gotaug 2 месяца назад

Дан ответ gotaug 2 месяца назад

  • Решено

Firefox exclusively scrolling extremely fast

Scrolling in Firefox is causing any webpage to scroll many lines at once with a single click, and it seems to be exclusively happening to Firefox, as every other applicat… (читать ещё)

Scrolling in Firefox is causing any webpage to scroll many lines at once with a single click, and it seems to be exclusively happening to Firefox, as every other application scrolls normally. I have tried searching here and elsewhere for a solution, and I have tried to change about:config settings based on the recommendations I could find to no avail. I have also tried to refresh Firefox and have used Troubleshoot Mode, but those too have not worked. I have no clue as to what could have caused this, as I have not been messing with any settings prior to this.

Задан eventfulhorizon 2 месяца назад

Дан ответ eventfulhorizon 2 месяца назад

  • Решено

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… (читать ещё)

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.

Задан Patrick R. 2 месяца назад

Дан ответ zeroknight 2 месяца назад

  • Решено

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 … (читать ещё)

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!!!

Задан carlrgoodwin 2 месяца назад

Дан ответ cor-el 2 месяца назад

  • Решено

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?

Задан hal.martin 1 день назад

Дан ответ hal.martin 1 день назад

  • Решено

Sending emails to group in address book

I have established a group in Thunderbird. I want to send a group email to all the individuals in my group. I believe that in the past I could click on the group name in … (читать ещё)

I have established a group in Thunderbird. I want to send a group email to all the individuals in my group. I believe that in the past I could click on the group name in the address book and have all the emails within the group come up in the To line of the email. Now I have to click on the group and then on each individual, which sends their email to the To line, but then when I click on the second person, the email is sent to the individual in the To line of a new email. How can I choose at one time all the emails of individuals in the group?

Задан cherimadison 3 месяца назад

Дан ответ Wayne Mery 3 месяца назад

  • Решено

Newish user, lots of issues.

I just recently downloaded Thunderbird after using Mac Mail for years. Mail suddenly refused to display messages and no one on the Apple forum could figure out why. So I … (читать ещё)

I just recently downloaded Thunderbird after using Mac Mail for years. Mail suddenly refused to display messages and no one on the Apple forum could figure out why. So I was advised to download Thunderbird. So far, I'm not a fan. Here are my issues: 1. Unread messages in the Inbox are in bold. But the bold is so close to the normal font that I can't tell them apart. Is there another, better way to mark unread messages? A tick/check mark? A coloured background? 2. Messages are automatically organised into conversations. But when the latest message comes in, the inbox message doesn't go bold. So there is no way of knowing where to find it. I have to go through all messages that have a conversation (more than one message in the inbox) and find one where the latest message is in bold at the bottom. It's a royal pain. I see the number next to the account on the left, but nothing is in bold on the right. Grrr. 3. The conversations are the wrong way up. I want the most recent message at the top, not the bottom. I would actually prefer not to have them in conversations at all, just the most recent message, but I realise that is probably asking too much. 4. There is no number next to the Thunderbird icon on my desktop when I get a message. I used to appreciate this in Mail. It told me if it was worth going to my inbox. With Thunderbird I have to open the program to find out. Ok, that's enough for now. I'd better not get started on the shortcomings of the search function, or how to bring the unread messages to the top of the inbox list... There are just too many issues to address is one posting. Thanks for any help you can give.

Задан Clive Chafer 3 месяца назад

Дан ответ david 3 месяца назад

  • Решено

Can not download newest VDH Companion App and I can't set up a github.com account to even report the problem

Hello, I have tried to download the newest VDH Companion App (via the link on the github.com webpage) Seven (yes, 7) times and every time the download Fails or I get "Ze… (читать ещё)

Hello,

I have tried to download the newest VDH Companion App (via the link on the github.com webpage) Seven (yes, 7) times and every time the download Fails or I get "Zero bytes". I tried to contact "Support" but there is only a Support Forum and nobody else has posted this as an issue that I was able to find when I searched. So no support is offered. The website suggests that I create an account to be able to post a new issue. However, Every time I have tried to set up a github.com account, I am Unable to do so. The page to set up an account either doesn't load OR if it loads, I can not add any information to it. I am a VDH Registered User and until this morning, the current VDH app I am using, version 8.2.1.1 was working just fine. But now when I try to use it, it says that my VDH Companion App needs to be updated. But I can not even download it to update it. I am running the current version of FF, 123.0.1 on an iMac with Sonoma OS 14.4. We used to be able to email Mig but not anymore. The github.com support page is unwieldy at best and I see that numerous requests for help or support have not been answered or even acknowledged. I am a paid Registered user with a license, but that doesn't seem to matter. I, like many others from what I read online, count on using this app almost every day and I would think that the mechanism for updates should be working correctly. The update files I tried to download came across at crazy low speeds, like 20.1 to 40.5 Kbps! I spent over an hour with Tech Support for HughesNet and much to my chagrin, No Other Websites had any issues with download speed. It was only happening on the github.com website and this one file update. Sorry if TMI but I am just trying to thorough.

Задан jdstickledc 2 месяца назад

Дан ответ jscher2000 - Support Volunteer 2 месяца назад

  • Решено

How to restore Get Messages and (Write) New Message icons above folders in left pane.

I'm running Thunderbird 115.6.0. I used to have a little icon of a cloud, and a button marked New Message (to compose), both just above the listing of mail and local fol… (читать ещё)

I'm running Thunderbird 115.6.0. I used to have a little icon of a cloud, and a button marked New Message (to compose), both just above the listing of mail and local folders in Thunderbird's left-hand pane. Then I clicked on something (that I thought was for something else) and those two icons are gone. I have looked until I'm blue in the face but can't identify whatever it is that will bring these back. Can someone clue me in? Many thanks!

Задан Electrojim 4 месяца назад

Дан ответ david 4 месяца назад

  • Решено

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… (читать ещё)

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

Задан benherrmann1 1 месяц назад

Дан ответ cor-el 1 месяц назад

  • Решено

How do I see my bookmarks toolbar on IOS

I'm tryin to swap over to firefox from chrome vbut I can't see my bookmarks. It seems that the desktop version supports a bookmarks toolbar but the IOS version doesn't. t… (читать ещё)

I'm tryin to swap over to firefox from chrome vbut I can't see my bookmarks. It seems that the desktop version supports a bookmarks toolbar but the IOS version doesn't. t wouldn't be so bad if I could see ALL my bookmarks on IOS but I can't. I can't find any way of accessing them.

I don't need a bookmarks toolbar on IOS, I just want access to those I bookmark on desktop into the bookmarks toolbar.

Any ideas?

Задан Darren Parr 2 недели назад

Дан ответ Darren Parr 2 недели назад

  • Решено

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 … (читать ещё)

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?

Задан markatdxb 3 недели назад

Дан ответ zeroknight 2 недели назад

  • Решено
  • Архивировано

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… (читать ещё)

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.

Задан Simson FireFox 6 месяцев назад

Дан ответ zeroknight 6 месяцев назад

  • Решено

Windows taskbar doesn't unhide itself when firefox is maximised.

Automatically hide taskbar in desktop mode => Enabled Firefox => Maximised When cursor is moved to outer edge of screen, taskbar should unhide (Expected behaviour) … (читать ещё)

Automatically hide taskbar in desktop mode => Enabled Firefox => Maximised When cursor is moved to outer edge of screen, taskbar should unhide (Expected behaviour) but in this case it remain hidden (Reality). Firefox along with all other spinoffs give same result. Chromium based browser works perfect, and taskbar automatically unhide itself.

As OLED screen have became common as monitor, Taskbar auto-hide is must. If this issue cann't be fixed I may have to change my primary browser which I used for almost 15 years.

Kindly, look into it. If Chromium can do it, why not Firefox.

Задан idsks111 1 месяц назад

Дан ответ idsks111 1 месяц назад

  • Решено

Google ReCAPTCHA does not work

Hey, Google reCaptcha is not working for about 1 day, but no problem in Chrome browser. Does anyone else experience this? I use the latest firefox browser. reCaptcha de… (читать ещё)

Hey,

Google reCaptcha is not working for about 1 day, but no problem in Chrome browser. Does anyone else experience this? I use the latest firefox browser.

reCaptcha demo: https://www.google.com/recaptcha/api2/demo

Задан jankec08 2 недели назад

Дан ответ Paul 1 неделю назад