次のタグが付けられた質問を表示: すべての質問を表示

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.

1 か月前 に bessaustin1 が質問

2 週間前 に Tim Huang最後の返信

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.

2 週間前 に lanzcc が質問

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

2 週間前 に Jondog が質問

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

1 か月前 に c+ff が質問

2 週間前 に jonzn4SUSE最後の返信

  • 解決済み

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

3 週間前 に Fred が質問

2 週間前 に Fred が回答

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?

3 週間前 に Jonathan Nguyen (Takeshi607) が質問

3 週間前 に Jonathan Nguyen (Takeshi607)最後の返信

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.

3 週間前 に sarah.berry9 が質問

3 週間前 に cor-el最後の返信

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

3 週間前 に rich.rhaskell が質問

3 週間前 に jscher2000 - Support Volunteer最後の返信

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.

1 か月前 に Alan が質問

3 週間前 に jscher2000 - Support Volunteer最後の返信

  • 解決済み

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.

3 週間前 に Sebastian が質問

3 週間前 に jscher2000 - Support Volunteer が回答

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.

3 週間前 に abc が質問

3 週間前 に jscher2000 - Support Volunteer最後の返信

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

1 か月前 に Ana Patrícia Paquete が質問

3 週間前 に Ana Patrícia Paquete最後の返信

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

3 週間前 に Julian が質問

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 … (続きを読む)

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!

3 週間前 に daniils.petrocenko が質問

3 週間前 に daniils.petrocenko最後の返信

  • 解決済み

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 … (続きを読む)

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

3 週間前 に bobofalex が質問

3 週間前 に jscher2000 - Support Volunteer が回答