ট্যাগ লাগানো প্রশ্নগুলো দেখানো হচ্ছে। সমস্ত প্রশ্ন দেখান

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.

Asked by bessaustin1 4 সপ্তাহসমূহ আগে

Last reply by Tim Huang 15 ঘন্টাসমূহ আগে

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… (আরও পড়ুন)

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.

Asked by Lisa Smith 1 মাস আগে

Last reply by TechHorse 17 ঘন্টাসমূহ আগে

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

Asked by c+ff 2 সপ্তাহসমূহ আগে

Last reply by jonzn4SUSE 21 ঘন্টাসমূহ আগে

Facebook Messenger Video Calling/Chat

Hello. I am not familiar with this end to end encryption that Facebook now does for Messenger but now when I try to use Video Calling/Chat it tells me it is not supported… (আরও পড়ুন)

Hello. I am not familiar with this end to end encryption that Facebook now does for Messenger but now when I try to use Video Calling/Chat it tells me it is not supported by my browser, Firefox. I have never had any problems with it before. Is there a fix? Thanks

Asked by wolfdad 1 সপ্তাহ আগে

Last reply by jonzn4SUSE 1 দিন আগে

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, … (আরও পড়ুন)

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?

Asked by Henrik Hulten 1 দিন আগে

Last reply by cor-el 1 দিন আগে

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.… (আরও পড়ুন)

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?

Asked by jfdi 1 দিন আগে

Last reply by cor-el 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.

Asked by sarah.berry9 1 দিন আগে

Last reply by 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

Asked by rich.rhaskell 2 দিনসমূহ আগে

Last reply by jscher2000 - Support Volunteer 1 দিন আগে

Bankid and Error code BID-5000

When logging in to the online bank at DNB with Bankid, this error appears: "A communication error has occurred. We are experiencing a communication error between your br… (আরও পড়ুন)

When logging in to the online bank at DNB with Bankid, this error appears:

"A communication error has occurred. We are experiencing a communication error between your browser and the user site. The reason may be slow internet or problems with your browser. Try again in a little while. You can also try to delete cookies and browser data in your browser or try a different browser. Error code BID-5000 Reference DXP4VKOE Date 12/06/2024"

No other browsers show this error. I've tried Edge, Chrome, Vivaldi, Brave, CC Cleaner. The error starts after version 125.0.3. Today a new version 127.0 arrived. The same error appears.

I have uninstalled the latest version and reinstalled version 125.0.3. Then no error message appears. I have deleted cookies and browser data, but the error message persists. To your info, I've tried also on other PC's and the same Firefox version, and the same errormessage appear.

I look forward to you having a solution to the problem, otherwise I will have to use browsers that do not show this error. As I prefer Firefox, I don't want to use other browsers. But if the bug can't be identified and fixed in newer versions, I'm not happy with firefox and will use other browsers..

Asked by eiroed 1 দিন আগে

Last reply by NoahSUMO 1 দিন আগে

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… (আরও পড়ুন)

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

Asked by stephan.roesener 1 দিন আগে

Last reply by jscher2000 - Support Volunteer 1 দিন আগে

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… (আরও পড়ুন)

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?

Asked by Kelly Coyne 1 দিন আগে

Last reply by jscher2000 - Support Volunteer 1 দিন আগে

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… (আরও পড়ুন)

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.

Asked by elisabetta.marina.clelia 1 দিন আগে

Last reply by 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.

Asked by Alan 1 সপ্তাহ আগে

Last reply by 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.

Asked by abc 4 দিনসমূহ আগে

Last reply by jscher2000 - Support Volunteer 1 দিন আগে

cannot print maps from AAA triptik planner

Cannot print maps from AAA triptik planner. Secure Connection Failed An error occurred during a connection to ttp-map-print.aaa.com. The page you are trying to vi… (আরও পড়ুন)

Cannot print maps from AAA triptik planner.

Secure Connection Failed

An error occurred during a connection to ttp-map-print.aaa.com.

   The page you are trying to view cannot be shown because the authenticity of the received data could not be verified.
   Please contact the website owners to inform them of this problem.

Asked by Jim Horton 1 দিন আগে

Last reply by jscher2000 - Support Volunteer 1 দিন আগে

Firefox update

Hi I just clicked on my Firefox to open it and was met with a new update tab, and all my tabs had disappeared, which I have had happen to me in the past and ended up los… (আরও পড়ুন)

Hi

I just clicked on my Firefox to open it and was met with a new update tab, and all my tabs had disappeared, which I have had happen to me in the past and ended up losing everything after closing Firefox and reopening it again.

So with that in mind I went to History and everything was greyed out, and so had no option but to close my browser, thinking that maybe that it had opened that one to tell me about the update and if I reopened it all my tabs would be there. Is there anyway I can retrieve all my tabs?.

Thanks

Asked by lockettlee8 1 দিন আগে

Last reply by jscher2000 - Support Volunteer 1 দিন আগে

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 … (আরও পড়ুন)

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.

Asked by Blair Milligan 2 দিনসমূহ আগে

Last reply by cor-el 2 দিনসমূহ আগে

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… (আরও পড়ুন)

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

Asked by cvassiliadis 3 দিনসমূহ আগে

Last reply by jonzn4SUSE 2 দিনসমূহ আগে