A mostrar questões marcadas: Mostrar todas as questões

Save/export home screen

Hi, Is it possible to save/export (and then restoring) the home screen icons/shortcuts without using Firefox sync? I want to save its state on my disk so I can restore … (ler mais)

Hi,

Is it possible to save/export (and then restoring) the home screen icons/shortcuts without using Firefox sync?

I want to save its state on my disk so I can restore it later, after formatting, for example. I don't really use any sync features and I actually don't want to sign up for yet another online service if I can help it.

Thanks a lot!

Colocada por MD 18 horas atrás

Última resposta por cor-el 2 horas atrás

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… (ler mais)

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.

Colocada por Kevin 1 mês atrás

Última resposta por cor-el 6 horas atrás

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… (ler mais)

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?

Colocada por Mattlexic 9 horas atrás

Última resposta por jscher2000 - Support Volunteer 7 horas atrás

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… (ler mais)

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.

Colocada por D4VID 16 horas atrás

Última resposta por cor-el 8 horas atrás

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… (ler mais)

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.

Colocada por bessaustin1 4 semanas atrás

Última resposta por Tim Huang 11 horas atrás

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… (ler mais)

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

Colocada por c+ff 2 semanas atrás

Última resposta por jonzn4SUSE 17 horas atrás

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… (ler mais)

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

Colocada por wolfdad 1 semana atrás

Última resposta por jonzn4SUSE 1 dia atrás

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… (ler mais)

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.

Colocada por sarah.berry9 1 dia atrás

Última resposta por cor-el 1 dia atrás

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… (ler mais)

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

Colocada por rich.rhaskell 2 dias atrás

Última resposta por jscher2000 - Support Volunteer 1 dia atrás

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. … (ler mais)

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.

Colocada por Alan 1 semana atrás

Última resposta por jscher2000 - Support Volunteer 1 dia atrás

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… (ler mais)

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.

Colocada por abc 3 dias atrás

Última resposta por jscher2000 - Support Volunteer 1 dia atrás

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… (ler mais)

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

Colocada por cvassiliadis 3 dias atrás

Última resposta por jonzn4SUSE 2 dias atrás

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.… (ler mais)

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

Colocada por Knud Kjølhede Petersen 4 dias atrás

Última resposta por Agent virtuel 2 dias atrás

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… (ler mais)

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,

Colocada por MJW 2 dias atrás

Última resposta por cor-el 2 dias atrás

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… (ler mais)

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

Colocada por STERBEN_BLADE 3 dias atrás

Última resposta por cor-el 2 dias atrás

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… (ler mais)

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…

Colocada por frajtova 3 dias atrás

Última resposta por jscher2000 - Support Volunteer 2 dias atrás

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… (ler mais)

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.

Colocada por lcdebaca52 3 dias atrás

Última resposta por cor-el 2 dias atrás

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.… (ler mais)

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.

Colocada por S+x2Yn8 4 dias atrás

Última resposta por jscher2000 - Support Volunteer 2 dias atrás