Afficher les questions étiquetées : Afficher toutes les questions

Facebook Images appear as Color Blocks on Facebook Since Last Week A bug?

Hello. I have an issue with Firefox. Last week Facebook stopped showing images when run on Firefox. These are in the Feed and photos, etc. I tried refreshing, clearin… (lire la suite)

Hello. I have an issue with Firefox. Last week Facebook stopped showing images when run on Firefox. These are in the Feed and photos, etc. I tried refreshing, clearing cookies, history and cache. I changed enhanced tracking but nothing stops this. Are there any suggestions to repair this or could it be a bug? I work on Windows 10. Please help.

Thank you.

Demandé par bessaustin1 il y a 1 mois

Dernière réponse par Tim Huang il y a 4 jours

Two things - initial reason is notifications being MUCH too loud - second thing is inability to submit help request from https://support.mozilla.org/en-US/questions/new/mozilla-account/form

Hello, FIRST PROBLEM (I have been unable to submit a help request from https://support.mozilla.org/en-US/questions/new/mozilla-account/form) Windows 10, fully updated w… (lire la suite)

Hello,

FIRST PROBLEM (I have been unable to submit a help request from https://support.mozilla.org/en-US/questions/new/mozilla-account/form)

Windows 10, fully updated with the latest firefox version. Email program is MS Outlook through my employer. Email notifications are overwhelmingly loud if the global volume is sufficient for viewing content. Playing with the volume mixer doesn't help. I have searched for solutions online, and every suggested fix entails features or options that are not available on my system. Please provide complete instructions for Windows 10. Please respond to lanzcc@potsdam.edu

SECOND PROBLEM

Submit button on page https://support.mozilla.org/en-US/questions/new/mozilla-account/form never succeeds.

Demandé par lanzcc il y a 4 jours

Firefox no longer compatible with Rightmove Professional

I've been using Rightmove Professional on Firefox for ten years plus but now suddenly it's not working correctly as the viewing windows no longer slide. Rightmove say it'… (lire la suite)

I've been using Rightmove Professional on Firefox for ten years plus but now suddenly it's not working correctly as the viewing windows no longer slide. Rightmove say it's due to an update by Firefox and advise to switch to Chrome but I really don't want to - will this issue be fixed? Thanks

Demandé par Jondog il y a 4 jours

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… (lire la suite)

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

Demandé par c+ff il y a 3 semaines

Dernière réponse par jonzn4SUSE il y a 4 jours

  • Résolu

Multiple windows, check for closing multiple tabs is asked only on last window

Hey there, during work I often open two windows of Firefox to have more information visible on my two monitors. Unfortunately I sometimes forget that I have a second win… (lire la suite)

Hey there,

during work I often open two windows of Firefox to have more information visible on my two monitors. Unfortunately I sometimes forget that I have a second window open, so I close only my "main" window and loose all tabs.

Is there a way to force Firefox to ask to close a window and loosing multiple tabs for every window open?

Right now this only happens for the last open window.

PS: I just found out about the keyboard shortcut of restoring a window (CTRL+SHIFT+N) recently. I would prefer a setting in my case.

Thanks in advance Fred

Demandé par Fred il y a 1 semaine

Réponse de Fred il y a 4 jours

how to close firefox without closing incognito tabs?

hopefully a basic question that can be answered when I used to use edge, I would browse in incognito. sometimes I would accidentally open a link that would open in the n… (lire la suite)

hopefully a basic question that can be answered

when I used to use edge, I would browse in incognito. sometimes I would accidentally open a link that would open in the normal browser, but I was able to simply exit without closing all my windows, including my incognito tabs

with firefox, when I'm browsing incognito, something similar would happen.

part of the problem is, that my main tabs are multiple windows, and when i choose to close them, it closes the incognito tabs as well

is there a way to prevent that?

Demandé par Jonathan Nguyen (Takeshi607) il y a 5 jours

Dernière réponse par Jonathan Nguyen (Takeshi607) il y a 5 jours

Suddenly I have no credit card autofill option.

When I go to Settings > Privacy & Security the only "autofill" setting is to import data from another browser. I am signed in, in the US, and my VPN is set to Sea… (lire la suite)

When I go to Settings > Privacy & Security the only "autofill" setting is to import data from another browser. I am signed in, in the US, and my VPN is set to Seattle.

Demandé par sarah.berry9 il y a 5 jours

Dernière réponse par cor-el il y a 5 jours

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… (lire la suite)

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

Demandé par rich.rhaskell il y a 6 jours

Dernière réponse par jscher2000 - Support Volunteer il y a 5 jours

a second browsing tab crashes

If I open a second tab on the screen it says the connection has crashed and keeps doing it if you try again. If you reset it resets Firefox including the other tab. … (lire la suite)

If I open a second tab on the screen it says the connection has crashed and keeps doing it if you try again. If you reset it resets Firefox including the other tab.

Demandé par Alan il y a 2 semaines

Dernière réponse par jscher2000 - Support Volunteer il y a 5 jours

  • Résolu

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 … (lire la suite)

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.

Demandé par Sebastian il y a 5 jours

Réponse de jscher2000 - Support Volunteer il y a 5 jours

How to restore previous sessions from old hard drive that died

My old hard drive died I couldn't recover it. I cannot mount the disk to another OS etc. The session files cannot be retrived. However I had over 100 tabs open in Fire… (lire la suite)

My old hard drive died I couldn't recover it. I cannot mount the disk to another OS etc. The session files cannot be retrived. However I had over 100 tabs open in Firefox I want to retrieve before the disk crashed. I was signed in to firefox all the time in the old computer.

I now have a new computer, I signed in to firefox and I can recover the bookmarks. But I don't see any option to recover the lots of tabs and sessions from my previous dead disk. It seems there is tab sync options between 2 devices that is concurrently signed in. But I can't sign in to a dead disk. I also can't recover the file.

How can I reteive my old sessions with many tabs? I'm hoping firefox have a way of knowing all my tabs since I was signed in and sync before the disk crash.

Demandé par abc il y a 1 semaine

Dernière réponse par jscher2000 - Support Volunteer il y a 5 jours

Case 145005

Good afternoon, If necessary, I am available to add more information about this case (145005), in English or Portuguese. Best regards, Ana Patrícia Paquete Visual Des… (lire la suite)

Good afternoon,

If necessary, I am available to add more information about this case (145005), in English or Portuguese.

Best regards,


Ana Patrícia Paquete Visual Designer

Demandé par Ana Patrícia Paquete il y a 1 mois

Dernière réponse par Ana Patrícia Paquete il y a 5 jours

Font Issue on Firefox for MAC under OS Sonoma

Hey, I constantly have unreadable fonts in Firefox for Mac. This only happens since I started using a new Mac (M2 Chip). I know there are some "solutions" flagged but I… (lire la suite)

Hey,

I constantly have unreadable fonts in Firefox for Mac. This only happens since I started using a new Mac (M2 Chip).

I know there are some "solutions" flagged but I cannot get it to work. My main issue is, the inspector it self has completely garbled fonts. So does the elements of the browser itself, for instance my favorites bar.

I know I am supposed to check my fonts, but I don't know how? I used the fonts application on my mac and let it validate the fonts. No issue there.

Only thing to resolve this issue is to reboot. And this is extremely frustrating since it means out of the blue my Firefox won't show fonts and I have to save all my work and reboot to be able to use it again.

I would highly appreciate a step by step solution on how to fix this. It seems to be a common problem so maybe there is a solutions that describes it better than the text I found here to inspect elements and check fonts.

Thanks in advance.

Julian

Demandé par Julian il y a 6 jours

synchronization problem

Hello! I have a serious problem. I lost access to my data because I changed my password, so my data is no longer synchronized. I reinstalled my Windows, and I forgot the … (lire la suite)

Hello! I have a serious problem. I lost access to my data because I changed my password, so my data is no longer synchronized. I reinstalled my Windows, and I forgot the old password I had on that Windows. As I reinstalled, I decided to change the password because I didn't remember it, but after that I found out that synchronization doesn't work. Please help me, I had very important bookmarks that were there. Thanks in advance!

Demandé par daniils.petrocenko il y a 1 semaine

Dernière réponse par daniils.petrocenko il y a 6 jours

  • Résolu

Sidebar unlocatable

Bought a new computer. All my toolbar bookmarks migrated across successfully. Sidebar symbol missing from the menu bar and I couldn't find where these Book Marks were at … (lire la suite)

Bought a new computer. All my toolbar bookmarks migrated across successfully. Sidebar symbol missing from the menu bar and I couldn't find where these Book Marks were at first. But then I right clicked on the menu bar, clicked on Manage Book Marks which opened a Library box and there they were. Does anyone know an easier way to access them please? Any tips gratefully received. Thanks, Bob

Demandé par bobofalex il y a 1 semaine

Réponse de jscher2000 - Support Volunteer il y a 6 jours