Показ питань з мітками: Показати всі запитання

Firefox stopping abruptly (or crashes)

Hello I am using firefox 126.0.1 (64-bit) version of firefox on a linux system (kernel 6.6). Firefox is closing the main window abruptly (or crashing). Wanted to get i… (читати далі)

Hello

I am using firefox 126.0.1 (64-bit) version of firefox on a linux system (kernel 6.6). Firefox is closing the main window abruptly (or crashing).

Wanted to get information on the crash, but when I navigated to the about:crashes page, it return a page with title "invalid URL" and the page says "Hmm. That address doesn’t look right."

Is there a way to get to the crash data/information?

Kind Regards Riza

Запитання від Riza Dindir 2 тижні тому

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 2 тижні тому

Остання відповідь від cor-el 2 тижні тому

Move the search trigger at the end of the suggestion list

The vast majority of the time, when I open a new tab, I want to go to a page I already visited. Unfortunately, I consistently have to press down arrow to get to what I'm … (читати далі)

The vast majority of the time, when I open a new tab, I want to go to a page I already visited. Unfortunately, I consistently have to press down arrow to get to what I'm looking for.

I already disabled any kind of search suggestion (settings screenshot attached), added the separate search field, but nothing I tried removed the "Search with DuckDuckGo" being the first suggestion. I pressed the down arrow so many times in my life because of this, I'm at a loss.

Am I missing something? Is there any way to get the history suggestions to be before ANY web search.

Запитання від Laurent 2 тижні тому

Остання відповідь від Laurent 2 тижні тому

  • Вирішено

Amazon loads slowly or not at all; all other sites are fine

Hi! I'm using Firefox 126.0 on Fedora 39. Pages from Amazon.co.uk load very slowly, incompletely, or not at all. All other Web sites are fine. I had a couple of certi… (читати далі)

Hi! I'm using Firefox 126.0 on Fedora 39.

Pages from Amazon.co.uk load very slowly, incompletely, or not at all. All other Web sites are fine.

I had a couple of certificate-related errors saying that the identity of the site couldn't be verified, but I can't reproduce the problem, so I can't quote the exact wording, I'm afraid.

The same Amazon pages load properly in Chrome on the same machine, and they load properly in Firefox in a VM on the same machine. That tells me network connectivity must be fine.

I've tried disabling all extensions, reverting to the default theme, running in Troubleshoot Mode, clearing cookies and site data, clearing the startup cache, disabling hardware acceleration, and creating a new profile. The new profile helps slightly, in that it loads more of the page before getting stuck. Nothing else helps at all.

I'd prefer not to refresh Firefox if I can avoid it, because I don't want to lose all my plugins and settings. This installation is five years old. Besides, a new profile didn't fix the problem.

What's the next thing to try? I'd really appreciate any ideas.

Запитання від markus.laker 2 тижні тому

Відповідь від markus.laker 2 тижні тому

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 1 місяць тому

Остання відповідь від jonzn4SUSE 2 тижні тому

Feature Request: Disable Webpage Changing Images

I frequently stumble upon websites with incredibly annoying looping images, with no option or method to disable the image changes. Reading information on websites with co… (читати далі)

I frequently stumble upon websites with incredibly annoying looping images, with no option or method to disable the image changes. Reading information on websites with constantly changing images is difficult due the distraction.

It would be greatly appreciated if an option could be created to disable the continual image looping - perhaps an addition to the FF settings whereby an On/Off toggle could en/disable a context menu option to Pause / Disable image looping when the user right-clicks on an image. ... or, the browser itself automatically recognises image looping and the toggle simply allows FF to en/disable the looping.

Thanks.

Запитання від Waphle_Stomp 2 тижні тому

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 2 тижні тому

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.

Запитання від elisabetta.marina.clelia 2 тижні тому

Остання відповідь від jscher2000 - Support Volunteer 2 тижні тому

How do I get my profile data back after a reinstall from snap?

A firefox support article told me to reinstall firefox from snap on ubuntu, without mentioning anything about the profile, settings, and bookmarks. Now everything is gone… (читати далі)

A firefox support article told me to reinstall firefox from snap on ubuntu, without mentioning anything about the profile, settings, and bookmarks. Now everything is gone.

Is there any way to recover my local profile?

I don't think it was synced properly with my other devices

Запитання від dan_evans2112 2 тижні тому

Остання відповідь від dan_evans2112 2 тижні тому

At random times (with several Gitlab and Google Cloud UI tabs open) keyboard starts severely lagging in Firefox/Ubuntu

The lag is very problematic to me, because I do most of my work using the browser. When the keyboard starts lagging I can only enter text using copy/paste with mouse (whi… (читати далі)

The lag is very problematic to me, because I do most of my work using the browser. When the keyboard starts lagging I can only enter text using copy/paste with mouse (which works fine). The only way to solve it is to restart Firefox (which can result in lost work).

The lag, when it starts, is 10 seconds or more for each keystroke. It occurs about once every few days.

Ubuntu 22.04.4 LTS

126.0.1 (64-bit) Mozilla Firefox Snap For Ubuntu Canonical-002 - 1.0

I don't use Wayland.

Setting accessibility.force_disabled to 1 did NOT help.

Some lines from the top when this happened:

``` top - 20:21:22 up 2 days, 11:27, 1 user, load average: 0,36, 0,83, 1,02 Tasks: 270 total, 1 running, 268 sleeping, 0 stopped, 1 zombie %Cpu(s): 1,7 us, 0,3 sy, 0,0 ni, 98,0 id, 0,0 wa, 0,0 hi, 0,0 si, 0,0 st MiB Mem : 11776,5 total, 1221,4 free, 7160,2 used, 3394,9 buff/cache MiB Swap: 18432,0 total, 18154,1 free, 277,9 used. 3535,6 avail Mem

  VIRT    RES    SHR S  %CPU  %MEM     TIME+ COMMAND                                                               

6234092 3,1g 101052 S 1,0 26,7 217:04.66 /snap/firefox/4336/usr/lib/firefox/firefox -contentproc -childID 138 +

 20,8g 754008 235476 S   1,0   6,3 204:17.24 /snap/firefox/4336/usr/lib/firefox/firefox                            

7402104 518340 108992 S 0,0 4,3 18:16.64 /snap/firefox/4336/usr/lib/firefox/firefox -contentproc -childID 4 -i+ 1576384 372564 158532 S 0,0 3,1 3:45.49 /usr/lib/libreoffice/program/soffice.bin --calc file:///home/user/w+ 2913372 356592 100916 S 1,0 3,0 15:18.84 /snap/firefox/4336/usr/lib/firefox/firefox -contentproc -childID 278 + 2762568 304556 94852 S 0,3 2,5 0:50.35 /snap/firefox/4336/usr/lib/firefox/firefox -contentproc -childID 552 + 3155860 303900 58316 S 0,3 2,5 6:06.12 /home/user/.dropbox-dist/dropbox-lnx.x86_64-200.4.7134/dropbox 4997304 285560 102988 S 0,0 2,4 59:54.84 /usr/bin/gnome-shell 2796144 250836 94468 S 0,3 2,1 1:29.30 /snap/firefox/4336/usr/lib/firefox/firefox -contentproc -childID 469 + 2604896 243840 84184 S 0,0 2,0 0:43.95 /snap/firefox/4336/usr/lib/firefox/firefox -contentproc -childID 1 -i+ 2797868 217532 95100 S 0,0 1,8 2:41.74 /snap/firefox/4336/usr/lib/firefox/firefox -contentproc -childID 327 + 2610924 187876 92820 S 0,0 1,6 0:14.77 /snap/firefox/4336/usr/lib/firefox/firefox -contentproc -childID 577 + 2619764 171224 92892 S 0,0 1,4 0:17.94 /snap/firefox/4336/usr/lib/firefox/firefox -contentproc -childID 579 + 2514872 163516 93684 S 0,0 1,4 0:14.78 /snap/firefox/4336/usr/lib/firefox/firefox -contentproc -childID 591 + 2556276 160004 91440 S 0,0 1,3 0:04.57 /snap/firefox/4336/usr/lib/firefox/firefox -contentproc -childID 581 + ```

Запитання від valentas 2 тижні тому

Остання відповідь від valentas 2 тижні тому

how to fix "suggest-unexpected" incompatible database version error?

I'm using Ubuntu 24.04 and just reinstalled for unrelated reasons. I'm trying to copy my Firefox profile over from my backup to the new installation. I used the Ubuntu S… (читати далі)

I'm using Ubuntu 24.04 and just reinstalled for unrelated reasons. I'm trying to copy my Firefox profile over from my backup to the new installation.

I used the Ubuntu Snap store to install Firefox and put my old profile in -- this is the one that I was using on my previous Ubuntu 24.04 installation just a couple days ago -- and everything seems fine, but I do see this error message:

[ERROR error_support::handling] suggest-unexpected: Error opening database: Incompatible database version: 18

It gets printed when I type things in the search bar, so it seems related to some sqlite database related to history and autocompletion.

Is there a way to fix this? I'm fine with just deleting it, so long as the other parts of the profile remain.

(This is a strange error, since after all I was using the exact same setup -- Firefox on Ubuntu 24.04, installed via snap -- just a couple days ago, and it was, as far as I know, up-to-date.)

Запитання від Dan Drake 3 тижні тому

Остання відповідь від Dan Drake 3 тижні тому

  • Вирішено

Maximum number of connections from user+IP exceeded ???

I'm using a VPN on my computer and phone and when I try to connect to the mail server, Thunderbird gives me an error saying that the mail server has disconnected. But whe… (читати далі)

I'm using a VPN on my computer and phone and when I try to connect to the mail server, Thunderbird gives me an error saying that the mail server has disconnected. But when I disconnect from the VPN, everything works. This happens only with one mail server, on the others everything works OK even via VPN.

However, the the mail from this server is coming to my phone (where I use K-9 Mail).

I also tried to connect to the mail server via openssl, with the command "openssl s_client -connect mail.server.net:993 -crlf"

The connection is successful (when I'm on the VPN), but when I enter the command "a LOGIN my.username MYPASSWORD", it gives an error:

a NO [UNAVAILABLE] Maximum number of connections from user+IP exceeded (mail_max_userip_connections=20)

I have set the "Maximum Number of server connections to cache" to 1 in Thunderbird, I have set to check for mail every 12 minutes (it already was 15 minutes on the phone before), and it is still the same.

Any idea how to solve the issue? I am connecting to this server with the same username and from the same (VPN) IP only from my phone and my computer, so I find it really strange that there are more than 20 simultaneous connections...

Запитання від matej.kovacic 3 тижні тому

Відповідь від matej.kovacic 3 тижні тому

How to make firefox keep history forever?

Hi, in my settings Firefox is set to "remember history", but there are no options for how long and when i look into my history, it doesn't go back further than a year. I … (читати далі)

Hi, in my settings Firefox is set to "remember history", but there are no options for how long and when i look into my history, it doesn't go back further than a year. I found a few answers to this on some forums talking about the places.history.expiration.max_pages setting and others about the places.history.expiration.transient_current_max_pages setting but those don't exist in my Firefox and the threads are more than a decade old. I currently have version 126.0.1 64bit on Linux. How can i keep my history forever?

Запитання від cldtech 3 тижні тому

Outlook school email cookies

I want to enable cookies for outlook only,the rest I don't want. I have attempted to look at the cookie's url for outlook and add that to the exception list, but outlook… (читати далі)

I want to enable cookies for outlook only,the rest I don't want.

I have attempted to look at the cookie's url for outlook and add that to the exception list, but outlook still harasses me with its annoying 2fa

How do I find the actual address to put in the exceptions list to stop this issue?

Запитання від ALoepker 3 тижні тому

Остання відповідь від jonzn4SUSE 3 тижні тому

  • Вирішено
  • Замкнено

Slowly fullscreen animation with transparent tabbar

here is the video: https://streamable.com/zffknq the issue is about transparent bar with vertical addons and slowly fullscreen animation, and the fullscreen animation is… (читати далі)

here is the video: https://streamable.com/zffknq the issue is about transparent bar with vertical addons and slowly fullscreen animation, and the fullscreen animation isn't config-able, I already set full-screen-api.transition-duration.enter 0 0 full-screen-api.transition-duration.leave 0 0 in about:config, and disable sidebar or userChrome is not work too. and this is happend about one mouth ago after my nixos update firefox.

Запитання від Nestor Liao 3 тижні тому

Відповідь від Nestor Liao 3 тижні тому

Cookies and Cache Data

For about 24hr now, every time I clear cookies and cache data, 20kB remain. I clear this data often, and the cookie and cache data always registers "0kB" after I click on… (читати далі)

For about 24hr now, every time I clear cookies and cache data, 20kB remain. I clear this data often, and the cookie and cache data always registers "0kB" after I click on "Clear Data", until yesterday. My OS is Ubuntu 22.04. Where can I find that file so I can delete it?

Запитання від barba3gr1 3 тижні тому

Остання відповідь від cor-el 3 тижні тому

  • Вирішено

Firefox manual update with Linux Ubuntu

I have a System 76 laptop running Ubuntu 14.04 LTS. The LTS (Long Term Support) ended years ago with Firefox 66. All of that works fine still. My problem is: 1. The worl… (читати далі)

I have a System 76 laptop running Ubuntu 14.04 LTS. The LTS (Long Term Support) ended years ago with Firefox 66. All of that works fine still. My problem is: 1. The world is telling me to upgrade my browser. 2. Mozilla tells me "Note: If you use your Linux distribution's packaged version of Firefox, you will need to wait for an updated package to be released to its package repository. This article only applies if you installed Firefox manually (without using your distribution's package manager)." 3. There will never be an updated package because LTS has ended. 4. IS THERE A WAY TO MANUALLY INSTALL A NEWER BROWSER LIKE FIREFOX 123?

Запитання від Jim 4 місяці тому

Відповідь від Jim 4 місяці тому