Εμφάνιση ερωτήσεων με ετικέτες: Εμφάνιση όλων των ερωτήσεων

Pop-up blocked

My Firefox is the most recent version 126. I am having trouble with pop-ups being blocked. I have added the website to the pop-up exception list. When I go to the site, i… (διαβάστε περισσότερα)

My Firefox is the most recent version 126. I am having trouble with pop-ups being blocked. I have added the website to the pop-up exception list. When I go to the site, it shows me the little icon showing I have added exceptions for this site. However; the pop-up still gets blocked.

The site is: https://www.foxit.com/ I try clicking the Log In drop down then Foxit Account. Before this would pop-up the log in screen for the site but since version 125, it does not. I just updated to version 126 to see if that resolved it before creating this post but it didn't. Thus I am here trying to get help.

Ερώτηση από Kevin 1 μήνα πριν

Τελευταία απάντηση από cor-el 39 λεπτά πριν

Copy Link to Highlight

There should be a feature where you can copy the link to particular text on a webpage (much like when you click on a Google result for a certain part of an article). Wher… (διαβάστε περισσότερα)

There should be a feature where you can copy the link to particular text on a webpage (much like when you click on a Google result for a certain part of an article). Where do I suggest features for Firefox?

Ερώτηση από Mattlexic 3 ώρες πριν

Τελευταία απάντηση από jscher2000 - Support Volunteer 1 ώρα πριν

Is there now a way to make the "Reopen Closed Tab" actually reopen closed tabs again?

A while back the behavior of the ctrl+shift+t shortcut changed from reopening tab in the current window to reopening tab in the current window or reopening last closed wi… (διαβάστε περισσότερα)

A while back the behavior of the ctrl+shift+t shortcut changed from reopening tab in the current window to reopening tab in the current window or reopening last closed window which for me and a lot of other people too made it worse. There's been a thread https://support.mozilla.org/en-US/questions/1421356 but it's been archived without a real solution. Is there now a way like a about:config toggle to bring back the old functionality? I really miss the old behavior.

Ερώτηση από D4VID 9 ώρες πριν

Τελευταία απάντηση από cor-el 2 ώρες πριν

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 4 εβδομάδες πριν

Τελευταία απάντηση από Tim Huang 5 ώρες πριν

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 2 εβδομάδες πριν

Τελευταία απάντηση από jonzn4SUSE 11 ώρες πριν

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

Ερώτηση από wolfdad 6 ημέρες πριν

Τελευταία απάντηση από jonzn4SUSE 20 ώρες πριν

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 2 ημέρες πριν

Τελευταία απάντηση από 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 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 3 ημέρες πριν

Τελευταία απάντηση από jscher2000 - Support Volunteer 1 ημέρα πριν

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

Ερώτηση από cvassiliadis 3 ημέρες πριν

Τελευταία απάντηση από jonzn4SUSE 1 ημέρα πριν

Can't allow Firefox to show ads on several websites

Running Win 11 Pro with the Firefox - 64 bit - All updated per June 9th. ISSUE: Website tells me I have an 'add blocker' or the product 'addblocker' installed. I don't.… (διαβάστε περισσότερα)

Running Win 11 Pro with the Firefox - 64 bit - All updated per June 9th.

ISSUE: Website tells me I have an 'add blocker' or the product 'addblocker' installed. I don't. However I get blocked even viewing my own website: fleksjobbernetvaerket.dk .... and others as well.... It's full of Google ads.

SOLUTION: I searched for how to solve this, but none of it is working, not even re-setting or re-installing Firefox, emptying cache, files and folders. I kinda gave up on this.

Hope you can help.

thanks Knud

Ερώτηση από Knud Kjølhede Petersen 4 ημέρες πριν

Τελευταία απάντηση από Agent virtuel 2 ημέρες πριν

remote control

Hello, I have tried to find solutions to this and have not found anything to be a permanent fix. I recently have found my FireFox browser closing my first attempt to ope… (διαβάστε περισσότερα)

Hello,

I have tried to find solutions to this and have not found anything to be a permanent fix. I recently have found my FireFox browser closing my first attempt to open and upon opening my second attempt Firefox will open but give me a pink address bar with a robot stating "browser is under remote control (reason: Dev Tools)" and the only thing that seems to get rid of this temporarily is going to my control panel (I'm a windows user) and toggling the remote assistance checkbox (I keep it unchecked since this problem has occurred). Then after re-opening Firefox again, it appears to work normally - no pink address bar with robot. Is there a permanent fix for this? Is it an OS issue or a Firefox issue? Maybe both? Any insight would be greatly appreciated. I am fairly tech savvy, but not too familiar with browser interfaces and solutions involving the command line.

Thank you,

Ερώτηση από MJW 2 ημέρες πριν

Τελευταία απάντηση από cor-el 2 ημέρες πριν

Perms cant be given sites

as you can see in the screenshot it says the mic is only"allowed temporarily" and when i go to permissions it doesn't let me add a site to grant perms i can just search f… (διαβάστε περισσότερα)

as you can see in the screenshot it says the mic is only"allowed temporarily" and when i go to permissions it doesn't let me add a site to grant perms i can just search for sites and thats it. its annoying cuz on textnow i have to keep granting perms

Ερώτηση από STERBEN_BLADE 2 ημέρες πριν

Τελευταία απάντηση από cor-el 2 ημέρες πριν

Centrum poradenstva a prevencie

Varovanie: možné bezpečnostné riziko Ako to napraviť, ďakujem Aplikácia Firefox rozpoznala problém a stránku poradenstvo-mikulas.lepsiweb.sk nenačítala. Webová stránka je… (διαβάστε περισσότερα)

Varovanie: možné bezpečnostné riziko Ako to napraviť, ďakujem Aplikácia Firefox rozpoznala problém a stránku poradenstvo-mikulas.lepsiweb.sk nenačítala. Webová stránka je buď zle nastavená alebo hodiny na vašom počítači nejdú správne.

Pravdepodobne stránke vypršala platnosť certifikátu, čo bráni aplikácii Firefox bezpečne sa pripojiť. Ak sa napriek tomu rozhodnete stránku navštíviť, útočníci sa môžu pokúsiť ukradnúť vaše informácie, ako sú heslá, e‑mailové adresy alebo čísla platobných kariet.

Čo s tým môžete urobiť?

Tento problém je pravdepodobne na strane webovej stránky a vy ho, bohužiaľ, nedokážete vyriešiť. O probléme môžete informovať správcu webovej stránky.

Ďalšie informácie…

Ερώτηση από frajtova 2 ημέρες πριν

Τελευταία απάντηση από jscher2000 - Support Volunteer 2 ημέρες πριν

images don't load because hyperlink too long FF 126.0.1

I receive e-mail from websites where I subscribe. Many times, the message from the sites (kelbyone.com, to name one) contain a graphic (jpg) that does not display in Outl… (διαβάστε περισσότερα)

I receive e-mail from websites where I subscribe. Many times, the message from the sites (kelbyone.com, to name one) contain a graphic (jpg) that does not display in Outlook.com. Microsoft Tech Support is unresponsive. The sending websites refuse to help.

It seems to me that FF chokes on the length of the hyperlink. Here is a sample: https://kelbyone.acemlnb.com/lt.php?x=3DZy~GE2JaTN5XV.-wy5heOd~nAnuwAjluw2Z5PEIaOb5p8qy0y.0uJz2nRzit~yjvYwXncWJXCf657

If I paste the hyperlink into the search window, the page will load. When I forward the e-mail from Outlook to yahoo mail, the image displays.

I am running extensions Adblocker Ultimate and DuckDuckGo Privacy Essentials.

I would like help with this, at least, to identify where the problem is.

Ερώτηση από lcdebaca52 2 ημέρες πριν

Τελευταία απάντηση από cor-el 2 ημέρες πριν

stubborn cached web content

I have 228 kb of cached web content that refuses to clear. Say there is 1.5 mb cached, and when I clear, the 228 kb is still there. It interferes with a web site I visit.… (διαβάστε περισσότερα)

I have 228 kb of cached web content that refuses to clear. Say there is 1.5 mb cached, and when I clear, the 228 kb is still there. It interferes with a web site I visit. Please help me get rid of this! Thanks in advance.

Ερώτηση από S+x2Yn8 4 ημέρες πριν

Τελευταία απάντηση από jscher2000 - Support Volunteer 2 ημέρες πριν

Video in Firefox

Video in Firefox does not run .. no error messages .. nothing. It works fine in other browsers. When I click on the video .. nothing happens. It used to work but not n… (διαβάστε περισσότερα)

Video in Firefox does not run .. no error messages .. nothing. It works fine in other browsers. When I click on the video .. nothing happens. It used to work but not now and I don't think I've changed anything.

Win11 Version 126.0.1 (64-bit)

Ερώτηση από Duane Loftus 6 ημέρες πριν

Τελευταία απάντηση από jonzn4SUSE 2 ημέρες πριν