Showing questions tagged: Show all questions
  • Solved
  • Archived

Daily Mail Online

Have been unable to view readers comments for a number of weeks and can figure out how to fix. it is not all the time, like last night were available but not this morning… (read more)

Have been unable to view readers comments for a number of weeks and can figure out how to fix. it is not all the time, like last night were available but not this morning. All other browsers there is no issue including DuckDuckGo. Am using Ublock Origin, but have been using for years with no issue, even when turn off result the same.

Asked by chappie1 1 year ago

Answered by jonzn4SUSE 1 year ago

  • Solved
  • Archived

Animation CSS on my web site doesn't work on firefox

Hello, I made animations CSS on my web site and everything was working great on all browsers. I just see that it doesn't work anymore only in firefox... here is my code:… (read more)

Hello, I made animations CSS on my web site and everything was working great on all browsers. I just see that it doesn't work anymore only in firefox...

here is my code:


/* -------------------------------------- */ /* ANIMATION ANE */ @keyframes mouvement-uniforme {

   0% 		{ animation-timing-function: linear; transform: translateX(-500px); }
   100% 	{ animation-timing-function: linear; transform: translateX(30px); }

}

@-webkit-keyframes webkit-mouvement-uniforme { 0% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(30px ) translateY(-2px ) rotate(-2deg); } 2% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(60px ) translateY(2px ) rotate(2deg); } 4% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(90px ) translateY(-2px ) rotate(-2deg); } 6% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(120px ) translateY(2px ) rotate(2deg); } 8% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(150px ) translateY(-2px ) rotate(-2deg); } 10% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(180px ) translateY(2px ) rotate(2deg); } 12% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(210px ) translateY(0px ) rotate(-1deg); } 14% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(240px ) translateY(1px ) rotate(1deg); } 18% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(0deg) translateX(240px) translateY(2px ); } 24% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(1deg) translateX(240px) translateY(-2px ); } 28% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(0deg) translateX(240px) translateY(3px ); } 32% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(0deg) translateX(240px) translateY(-1px ); } 34% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(1deg) translateX(245px); } 36% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(0deg) translateX(-2px); } 38% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(-2px) translateY(2px ); } 40% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(-245px); } 42% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(-245px) rotate(1deg) translateY(-2px ); } 43% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(-245px) rotate(-3deg); } 100% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(0px); } }


@-moz-keyframes moz-mouvement-uniforme { 0% { -moz-transform: translateX(30px ) translateY(-2px ) rotate(-2deg); } 2% { -moz-transform: translateX(60px ) translateY(2px ) rotate(2deg); } 4% { -moz-transform: translateX(90px ) translateY(-2px ) rotate(-2deg); } 6% { -moz-transform: translateX(120px ) translateY(2px ) rotate(2deg); } 8% { -moz-transform: translateX(150px ) translateY(-2px ) rotate(-2deg); } 10% { -moz-transform: translateX(180px ) translateY(2px ) rotate(2deg); } 12% { -moz-transform: translateX(210px ) translateY(0px ) rotate(-1deg); } 14% { -moz-transform: translateX(240px ) translateY(1px ) rotate(1deg); } 18% { -moz-transform: rotate(0deg) translateX(240px) translateY(2px ); } 24% { -moz-transform: rotate(1deg) translateX(240px) translateY(-2px ); } 28% { -moz-transform: rotate(0deg) translateX(240px) translateY(3px ); } 32% { -moz-transform: rotate(0deg) translateX(240px) translateY(-1px ); } 34% { -moz-transform: rotate(1deg) translateX(245px); } 36% { -moz-transform: rotate(0deg) translateX(-2px); } 38% { -moz-transform: translateX(-2px) translateY(2px ); } 40% { -moz-transform: translateX(-245px); } 42% { -moz-transform: translateX(-245px) rotate(1deg) translateY(-2px ); } 43% { -moz-transform: translateX(-245px) rotate(-3deg); } 100% { -moz-transform: translateX(0px); } }



@-ms-keyframes ms-mouvement-uniforme {

   0% 		{ -ms-animation-timing-function: linear; -ms-transform: translateX(-500px); }
   100% 	{ -ms-animation-timing-function: linear; -ms-transform: translateX(0px); }

} @-o-keyframes o-mouvement-uniforme {

   0% 		{ -o-animation-timing-function: linear; -o-transform: translateX(-500px); }
   100% 	{ -o-animation-timing-function: linear; -o-transform: translateX(0px); }

}


.position { position: relative; top: -200px; left: -280px; float:left; }

.bouge { animation: mouvement-uniforme 60s ; -webkit-animation: webkit-mouvement-uniforme 20s ; -webkit-animation-iteration-count: infinite; -webkit-animation-fill-mode: forwards; -webkit-animation-duration: 15s; -webkit-animation-delay: 0s; -webkit-overflow-scrolling: auto!important;

-moz-animation: moz-mouvement-uniforme 20s; -moz-animation-iteration-count: infinite; -moz-animation-fill-mode: forwards; -moz-animation-duration: 15s; -moz-animation-delay: 0s;

-ms-animation: ms-mouvement-uniforme 10s ;

-o-animation: o-mouvement-uniforme 10s ; }



It was working fine before on firefox. it works on other browsers (opera, Edge,..) Do something changed? it's a long time that i didn't chek it so...

this is the page where a donkey should appear at the bottom of the page:

https://www.campingnoroc.com/en/our-campsite/


Thanks a lot for your help!!

Asked by Pierre MARTIN 1 year ago

Answered by Pierre MARTIN 1 year ago

  • Solved
  • Archived

Cannot add Amazon search engine to search toolbar

I am using Firefox 126.0 under Windows 10. I am trying to add search engines to the search toolbar. (Just to be clear, this is the search box that appears below the addr… (read more)

I am using Firefox 126.0 under Windows 10.

I am trying to add search engines to the search toolbar. (Just to be clear, this is the search box that appears below the address bar, not the address bar itself.)

I followed the instructions here. That worked fine for Wikipedia, Google Maps and YouTube. Then I tried to add Amazon UK. The Amazon icon is now present in the search box, but when I select it, I see this message:

Firefox could not download the search plugin from: https://d2lo25i6d3q8zm.cloudfront.net/browser-plugins/AmazonSearchSuggestionsOSD.Firefox.xml

I have no idea what this means or what to do about it.

(I also tried adding it from Settings > Search > Search Shortcuts, but Amazon does not appear on that list of search engines [unlike on my other computer]. I clicked "Find more search engines", but that brought up a list of 5,192 extensions, most of which seemed not be related to searching.)

Thanks in advance for any help or suggestions.

Mike

Asked by Mike L 1 year ago

Answered by cor-el 1 year ago

  • Solved
  • Archived

Firefox Multi-Account Containers | Container Name in URL Bar

Firefox 126.0.1 displays a very long name of a container completely in the URL bar. Firefox 127.0 truncates container names AWS long account and role names make keeping… (read more)

Firefox 126.0.1 displays a very long name of a container completely in the URL bar.

Firefox 127.0 truncates container names

AWS long account and role names make keeping the long name very convenient (works with the 'AWS SSO Containers' Add-On

Asked by Itai 1 year ago

Answered by jscher2000 - Support Volunteer 1 year ago

  • Solved
  • Archived

Add tab sharing support for Google Meet

Hey there, long story short - nowadays it's crucial to support those who WFH, and most people use G Suit for company work. I personally have a few daily calls via Google … (read more)

Hey there, long story short - nowadays it's crucial to support those who WFH, and most people use G Suit for company work. I personally have a few daily calls via Google Meet and having the TAB sharing feature available is highly appreciated. I know this was requested a lot, but this is a real dealbreaker for many people.

What are your thoughts on this? Maybe it's somewhere in the roadmap already? Thanks!

Asked by pounds.oiler_0j 1 year ago

Answered by jscher2000 - Support Volunteer 1 year ago

  • Solved
  • Archived

SSL_ERROR_INTERNAL_ERROR_ALERT

I have been working for Data Annotation for nearly a month and never got this error before. I need this money for rent! I'm trying really hard not to freak out here but t… (read more)

I have been working for Data Annotation for nearly a month and never got this error before. I need this money for rent! I'm trying really hard not to freak out here but today is the deadline for rent and the only way I'll get that money is to log on to this website so I need help and I need it now.

Asked by burlonberrydon 1 year ago

Answered by jscher2000 - Support Volunteer 1 year ago

  • Solved
  • Archived

Fifefox does not save a new payment method, clicking on save does nothing

Hi, it seems that my Firefox browser does not want to save a new payment method. I'm trying to access "Settings -> Privacy & Security -> Autofill" and then clic… (read more)

Hi, it seems that my Firefox browser does not want to save a new payment method. I'm trying to access "Settings -> Privacy & Security -> Autofill" and then click on "Saved payment methods", which opens a dialog with the existing payment methods and options to remove/add/edit. I'm clicking on Add, filling-in the card details and then clicking Save, nothing happens....

I previously had a working saved payment method, but it stopped working (I think more than 6 months ago). I tried to re-enable the credit cards by setting the following configs on about:config page:

- extensions.formautofill.creditCards.available: true
- extensions.formautofill.creditCards.supportedCountries: '...,RO' -> (I was adding my country to the existing list)

After the browser restart with those new settings when I'm on a payment page, clicking on a credit card field will show the saved credit card but if I click on it, it will not fill the details. And also trying to save a new card, manually as described previously in this message, or by the automatically prompt to save a new card after a successful payment was done. Both methods failed on me but with no error (I cannot see the saved payment on the list).

I tried removing the existing saved card, it worked removing it, but the add is still not working.

I also tried restarting in save mode, launching Firefox in a separate profile and added my country on the creditCards config for supportedCountries to show the "Saved payment methods" button on new profile, and it did not change anything.

I'm thinking there is a missing permission somewhere on the disk but I don't know where is the payment data stored on disk.

I would really appreciate any help on this.

PS: Check the attached pic to see the payment add and clicking the save button does nothing (also there are no validation errors). And the other: FF version, OS, troubleshooting info.

Asked by Mike S 1 year ago

Answered by Mike S 1 year ago

  • Solved
  • Archived

Widevine CDM Not Installing

I have been trying to solve this for a few days now. I tried to watch Netflix when it said, "Firefox is installing components needed to play the audio or video on this pa… (read more)

I have been trying to solve this for a few days now. I tried to watch Netflix when it said, "Firefox is installing components needed to play the audio or video on this page. Please try again later."

I found out this was due to Widevine not being installed AT ALL on my browser for some reason. The plugins manager has been saying that it will "be installed shortly" for a week now. I already tried toggling DRM off and on multiple times. I already tried using troubleshooting mode. I already checked GMP preferences to make sure nothing relating to Widevine was set to 'false'. I already tried turning off my antivirus long enough to try everything again and still nothing has changed. I do not have any VPNs running either. I am attaching a screenshot of what the browser console shows when I toggle DRM off and on again and try to run Netflix. I am also attaching what the gmp toggles say. Please help me figure out what is wrong!

Asked by Om Turakhia 1 year ago

Answered by Om Turakhia 1 year ago

  • Solved
  • Archived

Bookmarks backing up in json format.

Why is Firefox backing up my bookmarks in a json file, when Firefox itself doesn't recognise the file type when trying to restore said bookmarks? I WAS able to restore my… (read more)

Why is Firefox backing up my bookmarks in a json file, when Firefox itself doesn't recognise the file type when trying to restore said bookmarks? I WAS able to restore my bookmarks by converting the json file at https://www.jeffersonscher.com/ffu/bookbackreader.html. But why can't Firefox just back up as an html file like it used to? I had to go off searching the internet for a solution, turning what should've been a 5 minute job into nearly an hour 😕

Asked by IanStar 1 year ago

Answered by IanStar 1 year ago

  • Solved
  • Archived

Firefox opens "off screen"

Greetings support team. The problem is a bit complicated and I could't find anything similar to it on the net, so I'll try to explain in details what happened. One day af… (read more)

Greetings support team. The problem is a bit complicated and I could't find anything similar to it on the net, so I'll try to explain in details what happened. One day after opening the browser I noticed that it didn't launch(there was no window). After opening it again I saw that all of my previously opened tabs were gone. After that I closed Firefox and went to check the task manager. I found that Firefox was still running after closing it. I couldn't wrap my head around it and killed the programm. Then I opened it again and got the same results: first launch: no Firefox window(nothing on the taskbar either), secound launch: one empty tab. After that I opened a new tab in Firefox through task manager and my screen "swiped right", I got access to Firefox window with all of my previous tabs, but all the other programms I had opened on the taskbar were gone. Somehow Firefox opens outside my screen on a "separate one" every first time I launch the app, and the only way to switch between "screens" is to open a new tab through task manager or launch a program that was previously active to switch back to previous "screen". It is also impossible to switch between opened windows on different "screens" using gestures on the touchpad or "Alt" + "Tab". I use a laptop and never even tried to attach/connect a second monitor. I don't have another monitor attached via bluetooth or any other means in device manager. I have the latest verion of windows 10 installed and updated. I have another PC, where I use the same Firefox with the same addons on the same Mozilla account, which has no such issues. I have tried renaming the file called "xulstore.json" to "xulstore.old" or deleting it entirely, this didn't resolve the issue.

Asked by nab.layk 1 year ago

Answered by jscher2000 - Support Volunteer 1 year ago

  • Solved
  • Archived

Every download fails, including extensions

Hi there, On the 23. of Mai I first noticed that I am unable to download any files whatsoever. I tried downloading .exe files and also a .csv file. When I try to downloa… (read more)

Hi there,

On the 23. of Mai I first noticed that I am unable to download any files whatsoever. I tried downloading .exe files and also a .csv file. When I try to download one of these files it appears in the downloads window but immediately goes to the status "Failed". Any retry fails as well.

The same thing goes for extensions. I cannot download any extensions or plugins using my Firefox browser. Since I reinstalled Firefox I can now also not use Plex because Firefox can't install the required plugins.

I will attach screenshots of all the errors I get.

All of the above worked when I tried it on the Edge browser.

Firefox version: 126.0 Windows 11

Things I have tried to fix the issue:

  • Use the network connection from my phone instead of my home network
  • Disable firewall and windows defender
  • Reinstall Firefox
  • Refresh Firefox
  • Downgrade to version 125.0.1 and 122.0
  • Reset router to factory settings
  • Flush dns
  • Restart PC
  • Manually delete profile folder
  • Delete temp files
  • Change download destination
  • Disable "Block dangerous and deceptive content"
  • Troubleshoot Mode

Is Firefox using some other temporary folder for downloads?

Any ideas on how to fix this issue would be appreciated.

Thank you.

Asked by hawkes.j 1 year ago

Answered by hawkes.j 1 year ago

  • Solved
  • Archived

How to unpin Google from search bar suggestions?

I'm trying to move away from using Google, so I swapped to Duckduckgo and removed Google as a default search. However, "Search with Google" is still appearing in my searc… (read more)

I'm trying to move away from using Google, so I swapped to Duckduckgo and removed Google as a default search. However, "Search with Google" is still appearing in my search suggestions bar with a pin icon in the corner, and I can't figure out how to remove it. Does anyone know how to do this?

Asked by Cr4sh 1 year ago

Answered by cor-el 1 year ago

  • Solved
  • Archived

Extensive Battery Drain Mobile App Android

Android 14, One UI 6.0, Samsung S22+ Firefox is using a large amount of battery while idle. You can see my app runs open a lot of the day, but not in use much. It has dr… (read more)

Android 14, One UI 6.0, Samsung S22+

Firefox is using a large amount of battery while idle. You can see my app runs open a lot of the day, but not in use much. It has drained 20 percent of one days battery, and I am watching YouTube videos on another app (Grayjay btw check it out!) and it has used far less battery. If I set Firefox into a sleeping state, the app still drains a lot of battery. When in deep sleep,it stops draining as much power, but then Android keeps auto pushing their own browser to be my primary browser. I'm not sure what to do in this case, as it's too much of a hassle to have links not auto open in Firefox when in deep sleep. This excessive battery drain doesn't make sense, and I was wondering if there was any fix for this. Thanks for taking the time.

Asked by ragiangregorio+firefox 1 year ago

Answered by TyDraniu 1 year ago

  • Solved
  • Archived

Tab dragging stops working at random times

Sometimes drag functionality stops working. I can't grab a tab to move it to another position or to a new window. (Holding left click on the tab and moving the cursor doe… (read more)

Sometimes drag functionality stops working. I can't grab a tab to move it to another position or to a new window. (Holding left click on the tab and moving the cursor does nothing). Also, re-merging the tab with another firefox window stops working. (Dragging a tab to a firefox window from another firefox window doesn't merge them. It does nothing) I can right click on the tab and select Move to move it to a new window but dragging stops working. I have to close Firefox and start it again (sometimes twice), then dragging starts working again. This happens multiple times a day. I am on Linux Mint and the version is 126.0 (64-bit). This problematic behavior has only recently began.

Asked by tenkayr 1 year ago

Answered by TyDraniu 1 year ago

  • Solved
  • Archived

Keyboard shortcut to copy current tab URL

Is there a way to create a new keyboard shortcut to copy current tab URL? I've been using Arc to try some of their features, and what I miss the most is the hability to … (read more)

Is there a way to create a new keyboard shortcut to copy current tab URL?

I've been using Arc to try some of their features, and what I miss the most is the hability to copy current URL to share without touching the mouse.

Asked by Sebastian 1 year ago

Answered by jscher2000 - Support Volunteer 1 year ago

  • Solved
  • Archived

Refresh Button mysteriously disappeared?

This is a silly one, probably. My refresh button has mysteriously disappeared from my browser toolbar. I can just use cmd+shift+r to refresh, but muscle memory keeps … (read more)

This is a silly one, probably.

My refresh button has mysteriously disappeared from my browser toolbar. I can just use cmd+shift+r to refresh, but muscle memory keeps looking for the button on screen too, and it would be nice to have it back!

I opened up the customize options, thinking maybe I just removed it by accident, but refresh doesn't appear to be an option?

I also opened it up in troubleshoot mode to see if that would change anything. It did not :(

I also don't have any extensions that mess with the toolbar, so I don't think that would be an issue (and troubleshoot mode should have disabled extensions anyway I think.)

I recently updated to 126.0.1 - no idea if that has anything to do with it, but this did happen right after the update.

There are a couple more people on here with the same question, and they all had easy solutions. I'm hoping I'm just not seeing a setting somewhere.

Thanks!

Asked by Rainingredpandas 1 year ago

Answered by Rainingredpandas 1 year ago

  • Solved
  • Archived

Amazon loads slowly or not at all; all other sites are fine

Hi! I'm using Firefox 126.0 on Fedora 39. Pages from Amazon.co.uk load very slowly, incompletely, or not at all. All other Web sites are fine. I had a couple of certi… (read more)

Hi! I'm using Firefox 126.0 on Fedora 39.

Pages from Amazon.co.uk load very slowly, incompletely, or not at all. All other Web sites are fine.

I had a couple of certificate-related errors saying that the identity of the site couldn't be verified, but I can't reproduce the problem, so I can't quote the exact wording, I'm afraid.

The same Amazon pages load properly in Chrome on the same machine, and they load properly in Firefox in a VM on the same machine. That tells me network connectivity must be fine.

I've tried disabling all extensions, reverting to the default theme, running in Troubleshoot Mode, clearing cookies and site data, clearing the startup cache, disabling hardware acceleration, and creating a new profile. The new profile helps slightly, in that it loads more of the page before getting stuck. Nothing else helps at all.

I'd prefer not to refresh Firefox if I can avoid it, because I don't want to lose all my plugins and settings. This installation is five years old. Besides, a new profile didn't fix the problem.

What's the next thing to try? I'd really appreciate any ideas.

Asked by markus.laker 1 year ago

Answered by markus.laker 1 year ago

  • Solved
  • Archived

Firefox is, very relatively, slow

Hi, First, this is not a complaint. Firefox is an outstanding product that makes me very happy. I though I could post the following, because this community strives to m… (read more)

Hi,

First, this is not a complaint. Firefox is an outstanding product that makes me very happy.

I though I could post the following, because this community strives to make it better.

In a nutshell, I have a very fast Internet connection, up to 6Gbs/1Gbs speed, and Firefox is not able to go over .9/.8

I attach are 2 tests, one with Firefox and one with Chrome.

Note that when using it for anything else than speedtest, Firefox does not feel slow at all.

I'm not requesting a fix, just thought that somebody would like to know.

Asked by Bob4K 1 year ago

Answered by cor-el 1 year ago

  • Solved
  • Archived

Amazon website just churns in Firefox

Just today, I can no longer access the Amazon website. The pages load halfway and then it just churns/spins and never completes loading the page. So far I've discovered… (read more)

Just today, I can no longer access the Amazon website. The pages load halfway and then it just churns/spins and never completes loading the page. So far I've discovered no other websites that have the same problem.

I am able to access the Amazon website on three other browsers - Edge, Brave and DuckDuckGo - with no problems and normal loading speed. I don't use Chrome, so I can't speak to that.

I've tried clearing the cache and that did not help. I had a Firefox update installed a couple of days ago. Don't know how long it had been sitting there, as Firefox is almost always open and doesn't have the opportunity to update until I close everything and restart my computer, which I did a couple of days ago.

Windows 10 on a Dell pc/laptop. Firefox Version 126.0 (64-bit).

Any ideas on how to fix?

Asked by gswacker 1 year ago

Answered by cor-el 1 year ago

  • Solved
  • Archived

Extension appears to be corrupt

Hi, There many extensions such as: https://addons.mozilla.org/en-US/firefox/addon/search-on-imdb-context-menu/ that say when trying to install: Installation aborted be… (read more)

Hi,

There many extensions such as:

https://addons.mozilla.org/en-US/firefox/addon/search-on-imdb-context-menu/ that say when trying to install:

Installation aborted because the add-on appears to be corrupt.

I am using Firefox Developper Edition, with extensions.langpacks.signatures.required set to false.

This addon, after download, installs fine as a temporary addon.

How can I install it permanently?

Thanks.

Asked by Bob4K 1 year ago

Answered by TyDraniu 1 year ago