Firefox unusable overnight

hello! Firefox began timing out and needed to be force quit starting yesterday; I didn't think anything of it until I reopened and Firefox continued to be unusable. It's … (διαβάστε περισσότερα)

hello! Firefox began timing out and needed to be force quit starting yesterday; I didn't think anything of it until I reopened and Firefox continued to be unusable. It's not frozen or unresponsive, but it won't load pages or complete actions. I can interact with the browser and settings, etc, access about:crashes, but I can't actually submit crash reports; it just loads endlessly. When I close the program, it won't complete that action either; the app remains running in the background until I force quit.

Things I've tried:

Restarting the computer Uninstalling and reinstalling Firefox Clearing the cache

Other browsers work fine, as does the rest of my machine and internet. I'm submitting this using Safari because I can't navigate here using Firefox, but would really prefer to get back to my browser of choice.

Attached are the IDs of a few of the crashes I've had; they remain unsubmitted, sorry, because (as outlined above) I'm not able to complete the action when submitting them.

Ερώτηση από rakincaid 2 ώρες πριν

Τελευταία απάντηση από rakincaid 14 λεπτά πριν

Moving Tabs

Why on earth would you remove the ability to select move multiple tabs anywhere in an open window browser???? Until recently, I could select the first and last tab, hold … (διαβάστε περισσότερα)

Why on earth would you remove the ability to select move multiple tabs anywhere in an open window browser???? Until recently, I could select the first and last tab, hold shift and move them anywhere I chose. Now that feature doesn't work at all. It duplicates one tab or I'm given a choice to move to the front or last of all open tabs! Please give me the feature back!!1

Ερώτηση από mesfeld 55 λεπτά πριν

Firefox and Chatrooms

I own a website that has chat rooms for each of my advisors. As of 2 days ago they are all having issues. I have them login with Firefox but now asking them to use Googl… (διαβάστε περισσότερα)

I own a website that has chat rooms for each of my advisors. As of 2 days ago they are all having issues. I have them login with Firefox but now asking them to use Google Chrome...............low and behold it works

Whats the issue as i believe it started with the latest Firefox update

Thanks so much

Natalie Damsel In Distress :)

Ερώτηση από Starzcast 1 ώρα πριν

his is weird

I have been using Firefox for awhile now and something weird is happening. I can't close tabs by clicking on the 'x' on the tab. I also can't use the back arrow and the r… (διαβάστε περισσότερα)

I have been using Firefox for awhile now and something weird is happening. I can't close tabs by clicking on the 'x' on the tab. I also can't use the back arrow and the refresh button. I can right click and close tabs that way and the bookmark bar works. The problem seems confined to the top two bars. Thank you.

Ερώτηση από gmartquez 1 ώρα πριν

Τελευταία απάντηση από gmartquez 1 ώρα πριν

Password lost

I used to have a google account saved together with its email and password in fioefox, but my antivirus deleteed my entire browser history so now i dnot have it anymore, … (διαβάστε περισσότερα)

I used to have a google account saved together with its email and password in fioefox, but my antivirus deleteed my entire browser history so now i dnot have it anymore, Is there a place where firefox saves passwords and login information on my PC?

Ερώτηση από Sven Sikora 1 ώρα πριν

Proble in logging on to CIT Bank account online

I am getting this message when logging on to my CIT Bank account. I updated my Mcafee software yesterday. I had no problem logging in before to this site. Need help: Se… (διαβάστε περισσότερα)

I am getting this message when logging on to my CIT Bank account. I updated my Mcafee software yesterday. I had no problem logging in before to this site. Need help:


Secure Connection Failed

The connection to secure.citbank.com was interrupted while the page was loading.

   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.

Learn more…

Ερώτηση από Amarjit Singh 1 ώρα πριν

Can,t Opne this website. show this Result - Warning: Potential Security Risk Ahead

am trying to log into the indian evisa (indianfrro.gov.in) website to print off an ETA (Electronic Travel Authorisation) and when logging into the site I am getting a war… (διαβάστε περισσότερα)

am trying to log into the indian evisa (indianfrro.gov.in) website to print off an ETA (Electronic Travel Authorisation) and when logging into the site I am getting a warning saying potential security risk ahead


Warning: Potential Security Risk Ahead

Firefox detected a potential security threat and did not continue to indianfrro.gov.in . If you visit this site, attackers could try to steal information like your passwords, emails, or credit card details.

What can you do about it?

The issue is most likely with the web site, and there is nothing you can do to resolve it.

If you are on a corporate network or using antivirus software, you can reach out to the support teams for assistance. You can also notify the web site’s administrator about the problem.

I do not know what to do for the best

Ερώτηση από bablu md 2 ώρες πριν

Τελευταία απάντηση από bablu md 2 ώρες πριν

Firefox Addon page does not load.

After recent update, I can not browse any addons. The site https://addons.mozilla.org does not open, shows the connection timed out. I uninstalled and reinstalled firefox… (διαβάστε περισσότερα)

After recent update, I can not browse any addons. The site https://addons.mozilla.org does not open, shows the connection timed out. I uninstalled and reinstalled firefox deleteting all firefox related files. The problem still persists. Other than this all the using browsing I do are all working fine. Just this extensions I cannot browse. When I click the extension icon by default it shows some extensions, I can Install them. The problem is I can not browse them. Even the recomendation tab is also empty.

PS: I am using firefox on manjaro linux.

Ερώτηση από Basavaraja G 1 ημέρα πριν

Τελευταία απάντηση από Basavaraja G 3 ώρες πριν

User Chrome javascript to change keyboard shortcuts stopped working

I have autoconfig.js set up to run my own js file, see below. The intention is to change the keyboard shortcuts (shame that it's so difficult😃). It worked until a few wee… (διαβάστε περισσότερα)

I have autoconfig.js set up to run my own js file, see below. The intention is to change the keyboard shortcuts (shame that it's so difficult😃). It worked until a few weeks ago. Now it only partly works. C+J is fine. The other two succeed in deleting the existing command, and the shortcut key does nothing. Any ideas please?

// C+J = open downloads var element = document.getElementById('key_openDownloads'); if (element) {

 element.setAttribute('key', 'j');
 element.setAttribute('modifiers', 'accel');

}

// C+D = Duplicate tab var element = document.getElementById('addBookmarkAsKb'); if (element) {

 element.removeAttribute('command');
 element.setAttribute('oncommand', "duplicateTabIn(gBrowser.selectedTab, 'tab')");

}

// CS+N = move tab to new window var element = document.getElementById('key_undoCloseWindow'); if (element) {

 element.removeAttribute('command');
 element.setAttribute('oncommand', 'gBrowser.replaceTabsWithWindow(gBrowser.selectedTab)');

}

Ερώτηση από Adam__S 4 ώρες πριν

Save websites to Firefox Icon in the taskbar

Hello everyone. I use the firefox browser for years with the windows 10. I used to click on a favorite website with the right mouse button. Drag and drop on the Firefox i… (διαβάστε περισσότερα)

Hello everyone. I use the firefox browser for years with the windows 10. I used to click on a favorite website with the right mouse button. Drag and drop on the Firefox icon in the taskbar at the bottom of the monitor. When I need this website again, I would just right click on the firefox Icon in the taskbar and would see a list of all my saved websites. I would select the website I wanted and that opened my preferred website oince again. Since I have upgraded to windows 11 this no longer works. Can anyone tell me if this is still possibke to save the preferred websites in the firefox icon in the taskbar? Any help would be greatly appreciated. Thank you

Ερώτηση από Steven16 5 ώρες πριν

Video playback randomly breaks

Description: while viewing videos on youtube, twitch, odysee (and possibly other sites with videos), the video player may suddenly stop playing, and after that, no video … (διαβάστε περισσότερα)

Description: while viewing videos on youtube, twitch, odysee (and possibly other sites with videos), the video player may suddenly stop playing, and after that, no video in firefox can be played. Restarting the browser makes this issue disappear for a while, but i'd like a permanent solution.

What i've tried so far: Disabling uBlock Clearing cache and cookies Enabling/Disabling hardware acceleration Disabling proxy extension Disabling antivirus on PC.

Ερώτηση από vdf 6 ώρες πριν

Inconsistent sync of data in same account

Lately I installed a new PC, and tried to download FireFox and sync my data. But my data seems like a few years ago, not as new as another PC I have now. I'm sure I have … (διαβάστε περισσότερα)

Lately I installed a new PC, and tried to download FireFox and sync my data. But my data seems like a few years ago, not as new as another PC I have now. I'm sure I have logged in with same account on them, how's this happend?

Ερώτηση από Camisia 6 ώρες πριν

"Always ask you where to save files" doesn't work

I have "Always ask you where to save files" checked in my preferences, yet Firefox saves downloads to my Downloads folder without asking. This was working in the past, it… (διαβάστε περισσότερα)

I have "Always ask you where to save files" checked in my preferences, yet Firefox saves downloads to my Downloads folder without asking. This was working in the past, it's only recently broken.

I'm using Firefox 140.0.2 on Mac (aarch64).

Ερώτηση από kangirigungi 7 ώρες πριν