Отображение вопросов с тегом: Показать все вопросы
  • Решено

Hostinger h-panel

Since about 13:00 GMT yesterday, Firefox could not load or display the Hostinger h-panel. It sometimes partially and sometimes completely displays all the page content. B… (читать ещё)

Since about 13:00 GMT yesterday, Firefox could not load or display the Hostinger h-panel. It sometimes partially and sometimes completely displays all the page content. But all the controls are dead. Firefox seems to be very busy doing something. I told Hostinger and they spent some time looking into the problem. They got Firefox to load the h-panel but said that it was vastly slower than other browsers in doing so. With me, Firefox still stops doing anything once the content is loaded and ALL controls on the page are still dead. When closing Firefox in this state, there is considerable delay before the window actually closes.

I thought that perhaps Hostinger had done an update that called in some proprietary JavaScript extensions that Firefox couldn't handle. I get the impression that in trying to display the h-panel pages, Firefox is trying to acquire some content from an external site, as requested somewhere within the HTML/JavaScript source code.

Any ideas? robert_john.morton@yahoo.com

Задан robert_john.morton 4 месяца назад

Дан ответ robert_john.morton 4 месяца назад

  • Решено

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 месяца назад

  • Решено

Webpage elements do not open.

On this webpage on the link below, when the 'Comments' button is clicked, nothing happens. It works via the Chrome browser. https://www.mirror.co.uk/news/politics/george… (читать ещё)

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

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

Firefox won't start after updating. How to restore the previous version without losing profile data?

Firefox won't start after updating to version 123.0 on Ubuntu OS. At the same time, no errors will appear, and there is also no specific crash report that would help und… (читать ещё)

Firefox won't start after updating to version 123.0 on Ubuntu OS.

At the same time, no errors will appear, and there is also no specific crash report that would help understand the reason.

How to restore the previous version without losing profile data?

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

Последний ответ от zeroknight 2 месяца назад

  • Решено

honey shopping app - drop down boxes wont open

If i am on amazon for example and an item has more than 1 option, Honey presents drop down selection box so you can choose which one to drop list The issue is the drop d… (читать ещё)

If i am on amazon for example and an item has more than 1 option, Honey presents drop down selection box so you can choose which one to drop list The issue is the drop down box never opens when you click on it, doesn't matter where on it you click, it wont open. I have cleared cache, reinstalled honey and nothing helps. I have multiple desktop pc's all running tumbleweed and they all have this issue. If i load Chromium that works ok, but i use Firefox and not Chromium. I'm using openSuse Tumbleweed (latest update).

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

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

Latest Linux Mint Version of Firefox

Hi Just updated Linux Mint from 20.3 to vs 21. Firefox Help now shows FF version Mint - 001-1.0 121.0.1 Also shows that FF updates disabled by Administrator… (читать ещё)

Hi Just updated Linux Mint from 20.3 to vs 21. Firefox Help now shows FF version Mint - 001-1.0 121.0.1

Also shows that FF updates disabled by Administrator.

Is this the latest version for LM 21 ? And how do I enable updates automatically?

Thanks

Charles Harris

Задан Charlie Harris 4 месяца назад

Последний ответ от jonzn4SUSE 4 месяца назад

  • Решено

Installing custom Firefox extension

I'm at a loss for words here. I have a website I frequent and it has a really annoying behavior. I'm a developer so finally I mustered the strength to do something about … (читать ещё)

I'm at a loss for words here. I have a website I frequent and it has a really annoying behavior. I'm a developer so finally I mustered the strength to do something about it. I googled how to create an extension in Firefox and within 5 minutes I had a working extension that solved their annoyance. However, I can only load it temporarily. If I close Firefox, it goes away. When I try to actually install it, it says I need to have it signed. I have now spent the better part of an hour trying to find out how to self sign it. I refuse to believe that I have to submit this to Mozilla for me to be able to install my own code. Can someone please send me in the direction of how i self sign and install my own extension. I have no intention of publishing, I only want to run this for myself.

Задан viktor37 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 3 дня назад

Дан ответ hal.martin 3 дня назад

  • Архивировано

"Your browser is being managed by your organization". I am a home user WTF?

I get the message under Settings: "Your browser is being managed by your organization". Clicking on that message shows that the policy DisableAppUpdate is true. Methods… (читать ещё)

I get the message under Settings: "Your browser is being managed by your organization". Clicking on that message shows that the policy DisableAppUpdate is true. Methods for remeding this situation do not work. Please advise on how to change the policy to allow update please

Задан Let's Jump 2 года назад

Последний ответ от jonzn4SUSE 1 год назад

  • Архивировано

Cannot autofill Credit Card Info

Got sick and tired of having to enter payment card info every time, so I decided to RTFM and follow instructions. I worked my way thru all the instructions on found on t… (читать ещё)

Got sick and tired of having to enter payment card info every time, so I decided to RTFM and follow instructions. I worked my way thru all the instructions on found on the forum pages, and was entering the information via about:config, and got to the popup where I was asked to confirm, and clicked the button, then clicked it harder, but nothing happened.

My guess is that my Firefox and/or my Leap15.3 installation has left some file permission read-only and Firefox is unable to save this bit of data, but I really don't want to run Firefox as root. I can say more, but I see there are more boxes to fill.

So, I included a screenshot of what I hope will be the useful part of my config file.

Задан The Singer Man 2 года назад

Последний ответ от jonzn4SUSE 2 года назад

  • Архивировано

Fixing the new way of opening files

Hello, Starting Firefox 97, opening a file involves downloading it the same way as if I choose to save it. It results in both Download folder and downloads list in the b… (читать ещё)

Hello,

Starting Firefox 97, opening a file involves downloading it the same way as if I choose to save it. It results in both Download folder and downloads list in the browser being polluted with a million of files I only wanted to open once with a specific app (pdfs, xls, m3u etc.).

Previously Firefox was using a hidden internal folder for saving such files and deleting them later, so Open In App really meant "open, do not save locally". Now any option just means "Save the file to the Download folder and let it be there forever".

How can I fix this unsuccessful UX decision apart from downgrading to an older version?

Thank you.

P.S. "If you dislike new features in the latest version of Firefox, your first reaction might be to go back to the previous version. Rather than downgrading, try getting used to the new features..." is probably the worst suggestion you can possibly give to someone with their workflow broken by a sudden update they can't decline with a feature they never asked for.

Задан Cryosleeper 2 года назад

Последний ответ от Terry 2 года назад

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

Recover pre-previous session

I had a number of tabs open today (~40). Because Firefox started to malfunction, I had to restart Firefox. It happened to me before and I knew that I can restore my previ… (читать ещё)

I had a number of tabs open today (~40). Because Firefox started to malfunction, I had to restart Firefox. It happened to me before and I knew that I can restore my previous session so I safely closed the tabs.

When I restarted it, I opened a tab and then I tried to open the Application Menu, but accidentally closed the window. Now, when I've re-opened Firefox and attempted to restore the previous session only that last tab appeared.

Is it possible to recover the pre-previous session? I use Ubuntu 18.04. Where is this information located? and how can I retrieve it?

Задан amberbear 2 года назад

Дан ответ Dropa 2 года назад

  • Архивировано

I marked "Ask always" for Microsoft excel files, but Firefox always download them

HI! I'm using Firefox 98 on Linux Ubuntu 20.04. after the last update I found several settings changed and I had to reset them, but there is one setting I can't manage. I… (читать ещё)

HI! I'm using Firefox 98 on Linux Ubuntu 20.04. after the last update I found several settings changed and I had to reset them, but there is one setting I can't manage. In the download preferences I set all the Microsoft Excel entries to "Always ask", but every time that I try to see an Excel file (no download, just open with ...), this is automatically downloaded. I definitively don't want to download it. How can I change this behavior? P.S.: I realized right now that there is the same problem with .docx files and I don't know how many others file types.

Задан luca.dgh 2 года назад

Последний ответ от jonzn4SUSE 2 года назад

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

Prevent websites from opening new tabs

I just reinstalled my operative system, and with that my Firefox settings got reset. I know there is an entry in about:config to prevent ads from opening new tabs and pop… (читать ещё)

I just reinstalled my operative system, and with that my Firefox settings got reset. I know there is an entry in about:config to prevent ads from opening new tabs and pop ups without authorization, even from legit websites like the login pop-up windows when doing a sign in in Google, in those cases to allow the windows it's needed to click on the lock icon next to the URL bar and allow it from there. The problem is that I don't remember the name of that setting and I have spend an hour looking for it on Google.

Задан ttfh3500 2 года назад

Дан ответ ttfh3500 2 года назад

  • Архивировано

Firefox 97 os/system print dialog

Hi, how do we set Firefox 97 to use the os/system print dialog? Before Firefox 97 we could change these settings in about:config: print.tab_modal.enabled = false widget… (читать ещё)

Hi, how do we set Firefox 97 to use the os/system print dialog?

Before Firefox 97 we could change these settings in about:config:

print.tab_modal.enabled = false widget.use-xdg-desktop-portal = true

But they are both gone now.

There is now widget.use-xdg-desktop-portal.print, which is an integer (2 by default).

But no matter what integer it is set to, we still don't get the os/system print dialog.

We are using Arch Linux, but we don't expect that to be of any importance -- after all, it worked before Firefox 97.

Thanks for your time :o)

Задан johnny1000 2 года назад

Последний ответ от jscher2000 - Support Volunteer 1 год назад

  • Архивировано

cannot figure out how to make scale and colorize scrollbars in firefox 98

Using firefox in linux mint 19.3 mate. Until firefox 97, I could control the size and color of the firefox scrollbars with a system CSS. Since a firefox update to versio… (читать ещё)

Using firefox in linux mint 19.3 mate. Until firefox 97, I could control the size and color of the firefox scrollbars with a system CSS. Since a firefox update to version 98, firefox ignores those settings. Nothing has changed in my firefox settings, my about:config, or system settings. But now the scrollbars are barely visible low contrast narrow bars that are unpleasant to work with, and I can't figure out how to change this. suggestions? tnx

Задан stranglehold 2 года назад

Последний ответ от stranglehold 2 года назад

  • Архивировано

Cursor size

I'm using Firefox Version 98.0.2 on Ubuntu 21.10 with Wayland and Gnome 40.4.0. I choose a larger cursor size from Ubuntu's Settings->Accessibility->Cursor Size. Ho… (читать ещё)

I'm using Firefox Version 98.0.2 on Ubuntu 21.10 with Wayland and Gnome 40.4.0. I choose a larger cursor size from Ubuntu's Settings->Accessibility->Cursor Size. However, in Firefox the cursor always displayed in the smallest size.

Задан shaishasag 2 года назад

Последний ответ от jonzn4SUSE 1 год назад

  • Архивировано

Please explain why i can't read an html file with Firefox

I installed Rust on my laptop and want to browse to the documentation which is installed at file:///home/lochlann/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/share… (читать ещё)

I installed Rust on my laptop and want to browse to the documentation which is installed at file:///home/lochlann/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/share/doc/rust/html/intro.html. I try to open this in Firefox and this fails with the message: Access to the file was denied

The file at /home/lochlann/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/share/doc/rust/html/intro.html is not readable.

   It may have been removed, moved, or file permissions may be preventing access.

I have read permissions on the file. No matter, it fails. I try to open the file using Firefox and navigate the directory structure rather than typing in the location. The file opens in the browser, the location is listed as file:///run/user/1000/doc/1f137432/index.html. Can you explain to me why Firefox cannot render a file that is where i put it and has appropriate permissions yet can render the same file where I did not put it? I have always been a fan but this looks more like a virus than I am comfortable with.

Задан lochlann 2 года назад

Последний ответ от Terry 1 год назад

  • Архивировано

Firefox account verification email is has timestamp rendered in Greek date instead of English

To post on this support forum I just created a Firefox account. The system then emailed me a verification code to check my address. While nearly the entire email was in E… (читать ещё)

To post on this support forum I just created a Firefox account. The system then emailed me a verification code to check my address. While nearly the entire email was in English, the time seemed to be rendered in Greek. This seems a bit odd to me. My browser is set to English, with no other languages present. My IP address is in the Netherlands. See the contents of the email below.

Cheers, Maarten


Copy/paste this code into your registration form. ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌‌‌ Firefox logo Is this you signing up? Firefox on Linux 's-Hertogenbosch, NB, Netherlands (estimated) IP address: 45.95.64.129 Πέμπτη, 17 Μαρ 2022 8:05:45 ΜΜ (CET) If yes, use this verification code in your registration form: 195505 It expires in 5 minutes. This is an automated email; if you received it in error, no action is required. For more information, please visit Mozilla Support. Mozilla. 2 Harrison St, #175, San Francisco, CA 94105 Mozilla Privacy Policy Firefox Cloud Terms of Service

Задан geekabit 2 года назад

Последний ответ от geekabit 2 года назад