Отображение вопросов с тегом: Показать все вопросы

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 … (читать ещё)

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!

Задан MD 16 часов назад

Последний ответ от cor-el 14 минут назад

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 5 часов назад

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 7 часов назад

Последний ответ от jscher2000 - Support Volunteer 6 часов назад

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 14 часов назад

Последний ответ от cor-el 6 часов назад

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 9 часов назад

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 16 часов назад

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 1 неделю назад

Последний ответ от jonzn4SUSE 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.

Задан 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 2 дня назад

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 3 дня назад

Последний ответ от 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 дня назад