Showing questions tagged: Show all questions
  • Archived

Azure DevOps unusable in Firefox

Hello, I'm using Firefox as my default browser for a while now (10+ years) and I'm getting frustrated with this issue when using Azure Devops. Comments don't load at all … (read more)

Hello, I'm using Firefox as my default browser for a while now (10+ years) and I'm getting frustrated with this issue when using Azure Devops. Comments don't load at all and most pages take a long time to load if they load at all. Various features also take a long time to load or don't work at all (examples include adding a reviewer, referencing a story with #, etc.). Anyone else experience this?

It works well for maybe an hour, and after a couple of days it makes no sense anymore.

Now I'm using firefox containers with a container only for Azure Devops and seems working better but ... Curious thing is that it pops up and asks for credentials periodically every 5 or 10 minutes. Well, unless the boxes are already filled up with the credentials.

Thanks,

Asked by leo87 1 year ago

Last reply by leo87 1 year ago

  • Archived

Synced Tabs - no longer works

Dear Mozilla Support, [please forgive my poor English - FRENCH is my mother tongue] CONTEXT - I use a Linux (Peppermint) Live DVD to surf the Web, always on the same lap… (read more)

Dear Mozilla Support, [please forgive my poor English - FRENCH is my mother tongue]

CONTEXT - I use a Linux (Peppermint) Live DVD to surf the Web, always on the same laptop. I do NOT use any hard disk inside that laptop, just the Live DVD spinned by a DVD player. Only the RAM stores data => fresh new distro for every session - years ago, I created a Firefox account, and the Sync worked perfectly, and allowed me to back up my Bookmarks AND my Opened Tabs (they are stored in Mozzila's cloud, and after each sign in and a sync, they reappear in the left panel). Regarding the Synced Tabs, the left panel used to store all the previous Live DVD sessions (generally with the device's name: peppermint's Linux... (IIRC). - i do NOT use several devices, and do NOT wish to sync date acreoss them. I use Sync to get my Bookmarks and Opened Tabs synced across successive Firefox sessions, day after day. I worked perfectly well.

PROBLEM Since a few weeks, I noted that despite login and sync, on the left panel - Synced Tabs are now empty: no tabs synced at all => so I cannot seamlessly find back my opened tabs from one session to another (if I switch off my laptop, then later restart a new Live DVD session) - see screenshot = https://imgur.com/LO6jWLYl.png - Bookmarks are nevertheless still perfectly synced (see screenshot = https://i.imgur.com/Td0nbY2.png)


Many thanks for you help. Kind regards from Europe.

Asked by olivertwist31416 1 year ago

Last reply by olivertwist31416 1 year ago

  • Archived

Use of Google Translator adds incredible amounts of links in the browser's history

When you use Google's Translator, this application automatically adds a link to Firefox's history each time you modify even a tiny bit of what you are translating. This … (read more)

When you use Google's Translator, this application automatically adds a link to Firefox's history each time you modify even a tiny bit of what you are translating.

This means that sometimes, you can add 1,000 links within a day when you incrementally translate a piece of text, what is the default way to do.

Today, two minutes of that work generated 40 links!

Example of a typical link:

https://translate.google.com/?hl=de&sl=de&tl=en&text=Manchmal%20ist%20es%20wichtiger%2C%20etwas%20zu%20schenken%2C%20als%20wie%20es%20beim%20Adressaten%20ankommt&op=translate

And that was only a small piece of text!

In my history, there are in between 50,000 of these, despite regularly deleting many of them.

Even on a relatively fast notebook, deleting 1,000 links in the history takes minutes.

I posted the problem to Google Translate as a feedback many times, but they never answered.

Is there a possibility within Firefox to selectively get rid of this permanent garbage?

That would be wonderful.

Asked by pebredai 1 year ago

Last reply by pebredai 1 year ago

  • Solved
  • Archived

PiP mode resize difference on Windows and Linux

Hello. I recently moved from windows to Linux Mint, and noticed the behavior of the Picture in Picture window is different when resizing. On windows, the aspect ratio is … (read more)

Hello. I recently moved from windows to Linux Mint, and noticed the behavior of the Picture in Picture window is different when resizing. On windows, the aspect ratio is kept. while on Linux, it is free form, making these black bars around the video, so I have to resize it very carefully to not show any black bars.

How can I make the PiP on Linux behave like on Windows? That means resizing keeping the aspect ratio.

Attached are the comparisons between Windows and Linux Mint.

Thank you very much!

Asked by buneco05 2 years ago

Answered by buneco05 1 year ago

  • Solved
  • Archived

Wrong Scaling with HiDPI Screen on Linux

Dear Technical Support, I'd like to report a problem which affects the rendering of websites in Firefox with a HiDPI monitor. I'm having issues with the text and graphi… (read more)

Dear Technical Support,

I'd like to report a problem which affects the rendering of websites in Firefox with a HiDPI monitor.

I'm having issues with the text and graphics of web pages, that are often mismatched or misaligned, with text being too large compared to graphical elements. See the enclosed pictures for an example; as you can see, this happens also on your website. Also, I've noted that pages (and plugins) appear to be "shrinked" as opposed to when viewed on Chrome, where they are shown to their true size.

Setting ui.textScaleFactor=100 and tweaking with layout.css.devPixelsPerPx did not change much. I must admit that I find this behavior quite strange, since HiDPI monitors have been around for more than a decade, and especially considering that this did not impact my experience with Firefox on Windows, using the same monitor and machine.

I hope to find an effective solution to this problem and look forward to your reply. Please let me know if I can be of any help in this matter.

Best regards, Federico

Asked by Federico 1 year ago

Answered by Federico 1 year ago

  • Archived

Using Node Express-Sessions to set cookie "httpOnly: true, secure: true, SameSite: "None" FF blocks authorization

My web site My web site allows user to login with .ejs Sign-up/Sign-in pages then delivers a React page. This works in Chrome and Safari. Https/SSL are provided by my ho… (read more)

My web site My web site allows user to login with .ejs Sign-up/Sign-in pages then delivers a React page. This works in Chrome and Safari. Https/SSL are provided by my host A2Hosting.

Firefox warns "Cookie “connect.sid” does not have a proper “SameSite” attribute value" when the cookie is set and then blocks the react page after login. If I enter the route that leads to the react page directly I can login and don't get the warning. In both cases the Storage tab in Dev tools shows the same settings for the cookie.
I made sure to remove any cookies for my site before testing the second scenario. I have tested this on Windows, Linux and Android versions of Firefox with the same results.

Here is my Express-Session instantiation ``` app.use(expressSession({

 store: new pgSession({
   pool: pool,
   tableName: 'session'
   // Insert connect-pg-simple options here
 }),
 secret: process.env.SECRET,
 resave: false,
 saveUninitialized: false,

cookie: {

   httpOnly: true,
   Secure: true,
   SameSite: "None",
   path: ['/'],
   maxAge: 60 * 60 * 1000 * 5
 }
 // Insert connect-pg-simple options here

})) ``` I've tried changing the path to include the react app route, I've added it to Cors white list and I converted it to open with an .ejs file instead of .html with no results.

Thanks for your support and for a great browser

Asked by rich.rhaskell 1 year ago

Last reply by jscher2000 - Support Volunteer 1 year ago

  • Solved
  • Archived

No confirmation email for Firefox Sync received

I try to set up Firefox Sync on Firefox on a VM on Fedora. I enter my e-mail and password. Then I get the message (after retrying): "Email resent. Add accounts@firefox.co… (read more)

I try to set up Firefox Sync on Firefox on a VM on Fedora. I enter my e-mail and password. Then I get the message (after retrying): "Email resent. Add accounts@firefox.com to your contacts to ensure a smooth delivery." However, I do not get the email with the confirmation code.

My email address has this format j@xxxxx.org

Asked by Jan 1 year ago

Answered by Jan 1 year ago

  • Archived

Firefox 119.0 on Ubuntu 22.04 has started to freeze which requires killing all Firefox processes

My apologies if I am being a numpty, but I have been using Firefox for many years without issue, and recently (possibly after an update, but I cannot be certain), it has … (read more)

My apologies if I am being a numpty, but I have been using Firefox for many years without issue, and recently (possibly after an update, but I cannot be certain), it has started to randomly freeze. I am running Ubuntu 22.04, and Firefox 119.0. I have demonstrated to myself that if I open a web page with links (but not always), and click on the link, I may still scroll up and down the page, but the mouse cursor never seemed to recognise the hotlink, and doesn't jump to it. The links will work on Chromium. I initially tried resetting the browser, thereby losing all my open pages, but that didn't work. That also removed all extensions ("all" two of them) and that didn't work. Firefox is now pretty much unusable. Any help to resolve this would be appreciated, as I cannot find any solutions online, and it seems I am not alone with this issue! Many thanks,

Asked by trevortmanson 1 year ago

Last reply by trevortmanson 1 year ago

  • Solved
  • Archived

Profile changes after update

Hi all, I use to update Firefox with my Linux distribution package: I build the new package then upgrade it on the system. Anytime at the first launch of the new Firefox … (read more)

Hi all, I use to update Firefox with my Linux distribution package: I build the new package then upgrade it on the system. Anytime at the first launch of the new Firefox just installed version, it opens a new blank profile instead of my usual profile. I can set my usual profile as default by launch Firefox Profile Manager. So after update I launch from command line terminal or through launcher bar:

firefox -p

And It starts up profile manager, then I choose my usual profile and check it as default one. After that, when I open Firefox again, it uses my usual profile as expected.

Now the question: - is there a way to automate this procedure so I have not to repeat it anytime after I update the browser?

PS. I noticed my "profiles.ini" file is populated with a lot of profiles sections, likely maybe anytime I update, a new one is added in here. I don't know if it is a regular behavior or not.

Asked by ffoxer 1 year ago

Answered by jscher2000 - Support Volunteer 1 year ago

Firefox on Linux becomes unclickable

In the last few days, after some minutes of usage, parts of Firefox become unclickable: - I can still click on tabs to change tabs. - When hovering over the cross button… (read more)

In the last few days, after some minutes of usage, parts of Firefox become unclickable:

- I can still click on tabs to change tabs. - When hovering over the cross button to close a tab, it changes appearance as it should. Clicking the button does nothing. Ctrl+w still closes the button. - Clicking on the address bar does nothing. - Cannot click on back, forward, refresh buttons. - Cannot click on any add-ons. - Cannot click on preferences. - Can click on the button to open a new tab. There, I can enter an address. Once the page has loaded, address bar becomes unclickable again. - Bookmarks toolbar is still working as expected. - Keyboard shortcuts (ctrl+t, ctrl-w, ctrl-l) still work as expected.

I'm running ``` Mozilla Firefox 138.0 20250428130755 20250428130755 ```

on Manjaro 25.0.1 with GNOME 48

Asked by mivkov 2 months ago

Last reply by mondalealex 2 weeks ago

  • Archived

Youtube H264 videos stop buffering after the initial portion

Having this issue with Youtube since a few days ago, on version 115.0.2 and 115.0.3, and only for videos encoded in AVC/H264. VP9 and AV1 encoded videos have no trouble b… (read more)

Having this issue with Youtube since a few days ago, on version 115.0.2 and 115.0.3, and only for videos encoded in AVC/H264. VP9 and AV1 encoded videos have no trouble buffering, only H264 is affected. Happens with or without adblocker, and on different OS. Cookies cleared, no dice.

Video would load the first 20-40 seconds, then does not buffer at all subsequently once it reaches the end of that portion. I have to skip a few seconds forward for it to load the next 20-40 secs, then it would get stuck again.

I can get around this issue by either lowering resolution to 480p (which looks terribly unwatchable), or turn VP9 streams back on (which does not work correctly on my setup, there's a driver bug that hasn't been fixed).

The sure way, and strange thing, is that AVC/H264 videos load and buffer with absolutely no issue when I'm logged out of my account. Also, works with no issue in Chromium, even while logged in.

Anyone facing this or similar issue recently too? Is it still ongoing for you?

Asked by nuclear.tactician 1 year ago

Last reply by jonzn4SUSE 1 year ago

  • Solved
  • Archived

What is the Firefox Installer?

I'm trying to migrate to the newest version of Firefox on an old installation of Fedora. I've downloaded and unpacked the installation files but can't identify the insta… (read more)

I'm trying to migrate to the newest version of Firefox on an old installation of Fedora. I've downloaded and unpacked the installation files but can't identify the installer. All I probably need is the name, as I know how to make it executable and run it once I know what file it is.

Asked by sideburns 1 year ago

Answered by sideburns 1 year ago

  • Archived

firefox 22.04 with 116.0.3 hangs, when closed reports firefox crash

I cannot use firefox. About the third or fourth tab or window I open hangs up, and then all of firefox hangs up. The triggering load can be from bookmarks or a new site. … (read more)

I cannot use firefox. About the third or fourth tab or window I open hangs up, and then all of firefox hangs up. The triggering load can be from bookmarks or a new site. Have rebooted, re-opened: same problem. Have updated everything (including snap), same problem. Uninstalled and re-installed Firefox, same problem. Troubleshooting crashes and will not re-start

Asked by info3517 1 year ago

Last reply by zeroknight 1 year ago

  • Archived

Synching desktop and mobile Firefox bookmarks

I have a Firefox account in order to use the sync capabilities. After a sync between desktop and phone the desktop bookmarks are on my phone in an extra folder "desktop b… (read more)

I have a Firefox account in order to use the sync capabilities. After a sync between desktop and phone the desktop bookmarks are on my phone in an extra folder "desktop bookmarks" and vice versa the phone bookmarks are in folder "Mobile bookmarks" in my desktop Firefox. Is this normal behaviour? I would expect them in one common folder to have a seamless synching.

Best regards, Walter

  • Solved
  • Archived

Huge gaps in MathML's "mtable" render output

I don't know if that was supposed to look like, but when rendering MathML in Firefox 124.0.1 when one uses "mtable" element the browser adds very huge gaps around. The i… (read more)

I don't know if that was supposed to look like, but when rendering MathML in Firefox 124.0.1 when one uses "mtable" element the browser adds very huge gaps around.

The included image shows output for the following code:

<math display="block">

 <mfrac>
   <mi>A</mi>
   <mn>2</mn>
 </mfrac>
 <mo>=</mo>
 <mrow>
 <mo> ( </mo>
 <mtable><mtr><mtd><mn>1</mn></mtd><mtd><mn>0</mn></mtd><mtd><mn>0</mn></mtd></mtr><mtr><mtd><mn>0</mn></mtd><mtd><mn>1</mn></mtd><mtd><mn>0</mn></mtd></mtr><mtr><mtd><mn>0</mn></mtd><mtd><mn>0</mn></mtd><mtd><mn>1</mn></mtd></mtr></mtable>
 <mo> ) </mo>

</mrow> </math>

Asked by Felix Speagel 1 year ago

Answered by Felix Speagel 1 year ago

  • Archived

Firefox constantly crashing

I'm using openSUSE Tumbleweed and KDE Plasma. Ever since I updated to Plasma 6.1, Firefox crashes constantly when using Wayland. I'm not having this problem if I'm using … (read more)

I'm using openSUSE Tumbleweed and KDE Plasma. Ever since I updated to Plasma 6.1, Firefox crashes constantly when using Wayland. I'm not having this problem if I'm using X11. Crash reports are sent after every crash so I'm sure someone can reference these. When starting Firefox from a console, I got this message after a crash: "[GFX1-]: Wayland protocol error: wp_linux_drm_syncobj_surface_v1#67: error 5: explicit sync is used, but no release point is set"

Will this get fixed with the next Firefox update? Currently using 127.0.

Asked by rstiltskin 1 year ago

Last reply by rstiltskin 11 months ago

  • Archived

Sync not working due to a downed server

For now one week, I cannot sync my browser using Firefox sync. When checking the logs, I always see : Sync.Resource WARN GET request to https://sync-788-us-west-2.s… (read more)

For now one week, I cannot sync my browser using Firefox sync. When checking the logs, I always see :

Sync.Resource WARN GET request to https://sync-788-us-west-2.sync.services.mozilla.com/1.5/208380794/info/collections failed: [Exception... "The connection was refused" nsresult: "0x804b000d (NS_ERROR_CONNECTION_REFUSED)" location: "<unknown>" data: no] No traceback available

I have tested on multiples wifi network and mobile data and still the same error. After checking, it seem that this server is down, and I don't know were to report this.

Is this the right place to report this or is it a thing I can do to fix that ?

Thanks

Asked by cfouche3005 1 year ago

Last reply by jonzn4SUSE 1 year ago

  • Archived

PDF are often rendered unreadable, with desktop background showing through (screenshot attached)

I often run into issues with PDFs in Firefox Linux. They either appear totally blank (typically after suspend/restore), or they appear with the desktop background showing… (read more)

I often run into issues with PDFs in Firefox Linux. They either appear totally blank (typically after suspend/restore), or they appear with the desktop background showing through (as in the attached screenshot).

Hard refreshing the page doesn't change anything, opening a new tab and opening the PDF again doesn't change anything, opening a new window and loading the PDF doesn't change anything.

The screenshot is with this PDF: https://www.sgsw.ch/home/strom/_jcr_content/Par/sgsw_accordion_list_1838160259/AccordionListPar/sgsw_accordion_12353/AccordionPar/sgsw_downloadlist/DownloadListPar/sgsw_download_1049323524.ocFile/2023-08-31%20Mitteilung%20Elcom%20Erh%C3%B6hung%20Elektrizit%C3%A4tspreise%20f%C3%BCr%20das%20Jahr%202024.pdf

It renders correctly in Chromium.

Firefox 126.0 using the recommended performance settings on Mint 21.3, nvidia quadro p620 using the official nvidia drivers v535.171.04-0ubuntu0.22.04.1

Asked by c+ff 1 year ago

Last reply by c+ff 11 months ago

  • Archived

AddBlock Plus

Hello, I've used AddBlock successfully for years but now , to my utter dismay, It has stopped functioning. I tried unsuccessfully to reset Firefox . Have just gone throug… (read more)

Hello, I've used AddBlock successfully for years but now , to my utter dismay, It has stopped functioning. I tried unsuccessfully to reset Firefox . Have just gone through the latest StartPage privacy protocol added to Firefox, but I am still beset with beastly adds. Hope you can help, Cordially, Joy

Asked by joy.breeze 3 years ago

Last reply by joy.breeze 3 years ago