You messed up my opening page when i choose the option for Firefox

Something happened with your new update, and now my computer is not working. i cannot get my emails to come even though i choose the email button. The wheel just keeps … (xem thêm)

Something happened with your new update, and now my computer is not working. i cannot get my emails to come even though i choose the email button. The wheel just keeps turning and turning, and will not ever get to the emails. The same thing happens when i try other favorites buttons on the top of the page. i do not know the correct words to describe what i am trying to say because i am not tech savvy at all. i am a senior citizen who needs my computer to work again. What has happened? i do not understand any of the directions given to me when you have answered me today. i do not understand the details! i am very frustrated right now, and have spent a lot of my day trying to get my computer working the way it did yesterday. What has happened?

Được hỏi bởi sschwartz55 4 ngày trước

Lần cuối trả lời bởi jscher2000 - Support Volunteer 4 ngày trước

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… (xem thêm)

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.

Được hỏi bởi bessaustin1 1 tháng trước

Lần cuối trả lời bởi Tim Huang 4 ngày trước

My history only goes back to January 19, 2023

I was looking for an item that would be a couple of years back in my history, only to discover that my history now only goes back a year and 3 months… Exactly, as of toda… (xem thêm)

I was looking for an item that would be a couple of years back in my history, only to discover that my history now only goes back a year and 3 months… Exactly, as of today, I don't know if that's meaningful. Does anyone have any idea what might've happened, and how I can restore the rest of my history? Thank you!

I'm on a Mac using Mojave, with Firefox version 115.8.

Được hỏi bởi Lisa Smith 1 tháng trước

Lần cuối trả lời bởi TechHorse 4 ngày trước

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… (xem thêm)

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 hỏi bởi c+ff 3 tuần trước

Lần cuối trả lời bởi jonzn4SUSE 4 ngày trước

Allowing location tracking

When I access a location-aware website, I'm asked if I'll allow it to use my location. My problem is that the pop-up window won't allow me to do anything. I can't block, … (xem thêm)

When I access a location-aware website, I'm asked if I'll allow it to use my location. My problem is that the pop-up window won't allow me to do anything. I can't block, allow, close the window — nothing. Is there a setting I'm missing somewhere?

Được hỏi bởi Henrik Hulten 5 ngày trước

Lần cuối trả lời bởi cor-el 5 ngày trước

Firefox automatically changes url when I click in an open tab

Hello, I'm running FF 124.0.2 64 but in Win 10 on a PC. I have the bookmarks right across the top of the page; the sixth from the left at the moment is Seloger's website.… (xem thêm)

Hello, I'm running FF 124.0.2 64 but in Win 10 on a PC. I have the bookmarks right across the top of the page; the sixth from the left at the moment is Seloger's website. If I have a tab open looking at a TV program website and right click on a link to see more details in a new tab, the new tab opens ok, but the TV program website is overwritten by the Seloger's website. If I use the "previous" arrows, it reverts to the TV program site. If I change the order of the bookmarks across the page, the TV program website will be overwritten by the bookmark then in the sixth from left position. This is driving me mad. How can I force FF to stay with the open tab and not change it by itself?

Được hỏi bởi jfdi 5 ngày trước

Lần cuối trả lời bởi cor-el 5 ngày trước

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… (xem thêm)

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.

Được hỏi bởi sarah.berry9 5 ngày trước

Lần cuối trả lời bởi cor-el 5 ngày trước

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… (xem thêm)

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

Được hỏi bởi rich.rhaskell 6 ngày trước

Lần cuối trả lời bởi jscher2000 - Support Volunteer 5 ngày trước

Session lost after update

session is completely gone. I tried to restore it via various help articles and forum posts but without success. I see a stg-backups-ff-126.0.1 fodler in my download fo… (xem thêm)

session is completely gone. I tried to restore it via various help articles and forum posts but without success.

I see a stg-backups-ff-126.0.1 fodler in my download folder which contains information about tabs that I had open. But I don't know how to use firefox to use that file.

I alos tried to the \sessionstore-backups folder with files named like "previous.jsonlz4" but I do not get the menu option for restoring a session.


from a file named "error-sessionrestore-1718212432477.txt": 1718212432149 SessionStore ERROR The session file is invalid: : TypeError: state.windows[0] is undefined(resource:///modules/sessionstore/SessionStore.sys.mjs:1163:11) JS Stack trace: initSession@SessionStore.sys.mjs:1163:11 onBeforeBrowserWindowShown/<@SessionStore.sys.mjs:2035:35

Được hỏi bởi stephan.roesener 5 ngày trước

Lần cuối trả lời bởi jscher2000 - Support Volunteer 5 ngày trước

Porn popped up! How do I protect my family

I was scrolling trying to make cards for Father's Day and there was a pornographic image where there should have been a fairytale castle coloring page. How do I make sur… (xem thêm)

I was scrolling trying to make cards for Father's Day and there was a pornographic image where there should have been a fairytale castle coloring page. How do I make sure this does not happen again?

Được hỏi bởi Kelly Coyne 5 ngày trước

Lần cuối trả lời bởi jscher2000 - Support Volunteer 5 ngày trước

ClassicPress password reset links not working when clicking links from mail using Firefox Dev edition

Hi, I use ClassicPress (fork of WordPress) and I have a problem when requesting a password reset link for it. When opening the email received to reset password in the f… (xem thêm)

Hi,

I use ClassicPress (fork of WordPress) and I have a problem when requesting a password reset link for it.

When opening the email received to reset password in the firefox dev edition browser and click the reset link I receive an error stating that the link is invalid.

I discovered by trial and error that copying the same link and pasting it manually in a new tab of the same firefox dev edition browser solves the issue because then the link is recognised as valid.

This happened after the update I received last week.

I am a linux mint user if that helps in tracking down the issue.

Được hỏi bởi elisabetta.marina.clelia 5 ngày trước

Lần cuối trả lời bởi jscher2000 - Support Volunteer 5 ngày trước

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. … (xem thêm)

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.

Được hỏi bởi Alan 2 tuần trước

Lần cuối trả lời bởi jscher2000 - Support Volunteer 5 ngày trước

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… (xem thêm)

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.

Được hỏi bởi abc 1 tuần trước

Lần cuối trả lời bởi jscher2000 - Support Volunteer 5 ngày trước

Firefox web browser has lost all my bookmarks, sign ins and passwords

When I opened Firefox web browser it did an update today, and since then I cannot find my bookmarks, sign ins or passwords. I need help here and I am not very tech savvy … (xem thêm)

When I opened Firefox web browser it did an update today, and since then I cannot find my bookmarks, sign ins or passwords. I need help here and I am not very tech savvy at over 72 years old.

Được hỏi bởi Blair Milligan 6 ngày trước

Lần cuối trả lời bởi cor-el 6 ngày trước

On opening PDF document online shows white hirizontal lines

For some reason I notice that some of our image files, viewed after opening an online pdf document with images within, shows random white horizontal lines. This is not sh… (xem thêm)

For some reason I notice that some of our image files, viewed after opening an online pdf document with images within, shows random white horizontal lines. This is not shown using edge or chrome. you can go here to view https://mcclone.net/wp-content/uploads/2024/05/Connects-Issue-12.pdf.

Any help would be appreciated.

Thanks Chris

Được hỏi bởi cvassiliadis 1 tuần trước

Lần cuối trả lời bởi jonzn4SUSE 6 ngày trước