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

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

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.

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

Последний ответ от Tim Huang 1 неделю назад

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

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.

Задан lanzcc 1 неделю назад

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

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

Задан Jondog 1 неделю назад

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

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

Задан c+ff 3 недели назад

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

  • Решено

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

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

Задан Fred 1 неделю назад

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

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

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?

Задан Jonathan Nguyen (Takeshi607) 1 неделю назад

Последний ответ от Jonathan Nguyen (Takeshi607) 1 неделю назад

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

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.

Задан sarah.berry9 1 неделю назад

Последний ответ от cor-el 1 неделю назад

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

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

Задан rich.rhaskell 1 неделю назад

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

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

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.

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

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

  • Решено

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

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.

Задан Sebastian 1 неделю назад

Дан ответ jscher2000 - Support Volunteer 1 неделю назад

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

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.

Задан abc 1 неделю назад

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

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

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

Задан Ana Patrícia Paquete 1 месяц назад

Последний ответ от Ana Patrícia Paquete 1 неделю назад

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

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

Задан Julian 1 неделю назад