gah. Your tab just crashed

About a week ago I started getting these message windows 'Gah. Your tab has crashed.' I have never seen these before now they're everywhere. I have tried all the Troubl… (funda kabanzi)

About a week ago I started getting these message windows 'Gah. Your tab has crashed.' I have never seen these before now they're everywhere. I have tried all the Troubleshoot procedures and nothing seems to help. I've done all the cleanups and checked the add-ons but there is nothing new and no changes I am aware of.

Asked by i4c4u2b 2 imizuzu edlule

Certain websites black screened.

Hello! About two weeks ago I opened up Firefox, and found that certain - well most - websites got switched to a very dark mode that broke the website. Websites like Joa… (funda kabanzi)

Hello! About two weeks ago I opened up Firefox, and found that certain - well most - websites got switched to a very dark mode that broke the website. Websites like Joann had all the background as black and when searching I could only see what was brought up when I moused over the option. The Chell in the Rain website is completely black when part of the appeal is the artwork. Youtube? Black. Libby? Black. Accuweather? Black. Google Docs... that's actually fine.

I don't mind dark mode, but it's broken how several of these websites work.

Asked by Mina 4 imizuzu edlule

Sync problem after a clean windows install

Hi! My windows suddenly encountered problems and I had to reinstall it, but after reinstalling win and Firefox and logging into my account, none of my data loaded to the … (funda kabanzi)

Hi! My windows suddenly encountered problems and I had to reinstall it, but after reinstalling win and Firefox and logging into my account, none of my data loaded to the new Firefox. Please help, for me, loosing that much of bookmarks and passwords, is just like a matter of death and life.

Asked by Mohsen 3 ezinsukwini ezidlule

Last reply by Mohsen 49 imizuzu edlule

Launching Firefox

After installing Apple Ventura, and trouble with User Accounts, Firefox won't open, giving me the error message about not finding or having a Profile. I did all of the s… (funda kabanzi)

After installing Apple Ventura, and trouble with User Accounts, Firefox won't open, giving me the error message about not finding or having a Profile.

I did all of the suggested fixes on the Help pages, renaming files with "OLD" etc., finally deleting the entire Firefox folder in Library/Application Support, and the program still won't launch and gives me the same message about not finding a "profile."

Please advise how I can eradicate every trace of Firefox on the computer and start over; the program should create a new profile and let me use the program, but it's refusing to do so.

Asked by barton1899 1 ihora elidlule

clear cache add on

if i have the "clear cache" addon: and i have 2 browser instances open, when i clear the cache, does it clear both instances or just the one whose button i clicked ?… (funda kabanzi)

if i have the "clear cache" addon: and i have 2 browser instances open, when i clear the cache, does it clear both instances or just the one whose button i clicked ?

Asked by jimmyolson2064 1 ihora elidlule

Emails not displaying

inbox displays the subject and date only of new emails ie NO message is shown nor any activity eg delete, forward etc. Double click on email and it is displayed in a new … (funda kabanzi)

inbox displays the subject and date only of new emails ie NO message is shown nor any activity eg delete, forward etc. Double click on email and it is displayed in a new window

Asked by philipinjozi 1 usuku oludlule

Last reply by philipinjozi 2 amahora adlule

Firefox can’t establish a websocket connection to the server

Hi, I am working on websocket with javascript and php. Let me share my code here: index.php is: <title>WebSocket Chat</title> &l… (funda kabanzi)

Hi, I am working on websocket with javascript and php. Let me share my code here:

index.php is:

   
   
    
      <title>WebSocket Chat</title>
        <meta http-equiv="Content-Security-Policy" content="default-src *; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; connect-src 'self' cstechnologyindia.com:8080">

    
    
      WebSocket Chat
      
<input type="text" id="messageInput" placeholder="Type your message..."> <button id="sendButton">Send</button> <script> const socket = new WebSocket('wss://cstechnologyindia.com/websocket1'); // Function to save message on the server function saveMessage(message) { const xhr = new XMLHttpRequest(); xhr.open('POST', 'save-message.php'); xhr.setRequestHeader('Content-Type', 'application/json'); xhr.send(JSON.stringify({ message: message })); } // Function to fetch messages from the server function fetchMessages() { const xhr = new XMLHttpRequest(); xhr.open('GET', 'fetch-messages.php'); xhr.onreadystatechange = function() { if (xhr.readyState === XMLHttpRequest.DONE) { if (xhr.status === 200) { const messages = JSON.parse(xhr.responseText); const chatBox = document.getElementById('chatBox'); messages.forEach(function(message) { const messageElement = document.createElement('div'); messageElement.textContent = message.fname; chatBox.appendChild(messageElement); }); } else { console.log('Error fetching messages:', xhr.status); } } }; xhr.send(); } // Event listener for receiving messages from the server socket.addEventListener('message', function(event) { const message = event.data; const chatBox = document.getElementById('chatBox'); const messageElement = document.createElement('div'); messageElement.textContent = message; chatBox.appendChild(messageElement); }); const sendButton = document.getElementById('sendButton'); sendButton.addEventListener('click', function() { const messageInput = document.getElementById('messageInput'); const message = messageInput.value; socket.send(message); messageInput.value = ''; // Save the sent message on the server saveMessage(message); }); // Fetch messages when the page loads fetchMessages(); </script>


server.php is:

   
   use Ratchet\MessageComponentInterface;
   use Ratchet\ConnectionInterface;
   use Ratchet\Server\IoServer;
   use Ratchet\Http\HttpServer;
   use Ratchet\WebSocket\WsServer;
   use Symfony\Component\HttpFoundation\Request;
   class Chat implements MessageComponentInterface {
     protected $clients;
     public function __construct() {
       $this->clients = new \SplObjectStorage;
     }
   public function onOpen(ConnectionInterface $conn) {
       $request = $conn->httpRequest;
       // Handle the WebSocket handshake here
       // You can perform any necessary checks or validation before accepting the connection
        // Example: Check if the WebSocket upgrade header is present
       if (!$request->hasHeader('Upgrade') || strtolower($request->getHeader('Upgrade')[0]) !== 'websocket') {
           // Close the connection if the Upgrade header is missing or incorrect
           $conn->close();
           return;
       }
        // Example: Check if the request contains the expected WebSocket version
        if (!$request->hasHeader('Sec-WebSocket-Version') || $request->getHeader('Sec-WebSocket-Version')[0] !== '13') {
           // Close the connection if the WebSocket version is not supported
           $conn->close();
           return;
        }
        // Example: Check other necessary conditions
        // Store the connection
        $this->clients->attach($conn);
      }
     public function onMessage(ConnectionInterface $from, $msg) {
       $message = htmlspecialchars($msg);
       foreach ($this->clients as $client) {
         $client->send($message);
       }
      }
     public function onClose(ConnectionInterface $conn) {
       $this->clients->detach($conn);
     }
     public function onError(ConnectionInterface $conn, \Exception $e) {
       echo "An error has occurred: {$e->getMessage()}\n";
       $conn->close();
     }
    }
    $chat = new Chat;
    $server = IoServer::factory(
     new HttpServer(
       new WsServer($chat)
     ),
     8080
   );
   $server->run();

The websocket is working all the browser except only firefox. It gives error: Firefox can’t establish a connection to the server at wss://cstechnologyindia.com/websocket1.

I am trying to solve it from past 2 days. I'm using a shared hosting. The hosting provider is saying that everything is perfect from our side. Now I'm hopeless. Please solve my problem anyone. Please check added image. Also I've valid https certificate. Please check attached image.

Asked by vinubangs 2 amahora adlule

Trojan Warning from windows defender

Im very worried, today (8th of june) I got a trojan warning from windows defender. the contamination affected this file path : file: C:\Users\(my name)\AppData\Roa… (funda kabanzi)

Im very worried, today (8th of june) I got a trojan warning from windows defender. the contamination affected this file path :

file: C:\Users\(my name)\AppData\Roaming\Mozilla\Firefox\Profiles\owhmdxi4.default-release\extensions\langpack-en-US@firefox.mozilla.org.xpi

below i have a picture of the addons i was using at the time and also the virus report.

Asked by Ville 20 amahora adlule

Last reply by Ville 2 amahora adlule

How do I remove "synced tabs" from history menu?

After the latest update, "synced tabs" suddenly appeared in my history menu above Recently Closed Tabs. I don't use syncing of any sort so this is just a nuisance. How ca… (funda kabanzi)

After the latest update, "synced tabs" suddenly appeared in my history menu above Recently Closed Tabs. I don't use syncing of any sort so this is just a nuisance. How can I get rid of it?

Asked by cfcentaurea 2 amahora adlule

Various Websites give SSL_ERROR_NO_CYPHER_OVERLAP

In the last few days, I have noticed that a number of websites are throwing me SSL_ERROR_NO_CYPHER_OVERLAP errors. Most websites, particularly more modern websites, seem … (funda kabanzi)

In the last few days, I have noticed that a number of websites are throwing me SSL_ERROR_NO_CYPHER_OVERLAP errors. Most websites, particularly more modern websites, seem to not have this issue. As some more professional examples, www.twitch.tv and www.dndbeyond.com throw this error. I have tried setting temporarily TLS version fallback limit and min to 0, with no change. I'm not really sure how to go about debugging what cyphers these websites do support and why they are throwing these errors. Any help on where to start would be greatly apprecaited.

Asked by acesoyster 1 usuku oludlule

Last reply by acesoyster 3 amahora adlule

For several days now, FF has been launching on its own, each time opening what seem to be an MSN news page

It even happened while I was playing MMOs, making it crash. I am using Zone Alarm Antivirus + Firewall, which does not find any malware on my computer. I NEVER use MSN n… (funda kabanzi)

It even happened while I was playing MMOs, making it crash.

I am using Zone Alarm Antivirus + Firewall, which does not find any malware on my computer. I NEVER use MSN news, so for the time being I placed the site on block list.

I am very concerned with FF (up to date) launching on its own, regardless which site it opens; that could be a breach of security in FF code itself.

Asked by serenity_guild 7 amahora adlule

Your Firefox is broken, 6-9-2023

So slow I almost think MSFT AI has invented a thing that trips you up... After all, they're the fallback. Just saying. I have MSFT 11 on a strong Nvidia gaming laptop. I… (funda kabanzi)

So slow I almost think MSFT AI has invented a thing that trips you up... After all, they're the fallback. Just saying.

I have MSFT 11 on a strong Nvidia gaming laptop. It's a fast machine. Once Firefox is open everything works fine and fast. It's just the opening.

Thank you, Liah

Asked by Liah'O'Marsh 8 amahora adlule

Firefox Dev Edition 115.0b2 ignores `browser.link.open_newwindow.override.external` pref on OSX

Firefox DE set as the default browser. When clicking an external link, a new window is opened with one tab, the URL address bar is blank. Restarting in troubleshooting … (funda kabanzi)

Firefox DE set as the default browser. When clicking an external link, a new window is opened with one tab, the URL address bar is blank. Restarting in troubleshooting mode does exhibits the same behaviour.

If anyone else can duplicate this issue I will file a Bugzilla report.

Asked by neil100 1 usuku oludlule

Last reply by neil100 9 amahora adlule

I WANT MY ORIGINAL FIREFOX NOT THIS CHANGE

I WOULD LIKE TO HAVE MY ORIGINAL FIREFOX THUNDERBIRD BACK ON MY COMPUTER. I AM ELDERLY AND DO NOT WANT A LOT OF DIFFERENT ITEMS OR CHANGES. I HAD NO PROBLEM USING WHAT I … (funda kabanzi)

I WOULD LIKE TO HAVE MY ORIGINAL FIREFOX THUNDERBIRD BACK ON MY COMPUTER. I AM ELDERLY AND DO NOT WANT A LOT OF DIFFERENT ITEMS OR CHANGES. I HAD NO PROBLEM USING WHAT I HAVE HAD FOR YEARS !!!!!!!!!

Asked by pjmarrs 14 amahora adlule

Browser wont load

Hi Good Morning. For some reason, my browser will not load -- I get an error message saying "unable to connect." I've been using this browser for years....never had a p… (funda kabanzi)

Hi Good Morning. For some reason, my browser will not load -- I get an error message saying "unable to connect." I've been using this browser for years....never had a problem. My Google and Microsoft browsers work....so this is Mozilla issue. Please help as I prefer to use Firefox.

You can reach me at [email removed from public forum]

Thanks, Mitch

Asked by md202007 1 usuku oludlule

Can not sign to Quick Books starting about 3pm Wednesday 6/8/23.

I used Firefox to log into QB online morning of 6/8/23. Afternoon of same day I was kicked off and unable to log back in. This morning I contacted QB and we were able t… (funda kabanzi)

I used Firefox to log into QB online morning of 6/8/23. Afternoon of same day I was kicked off and unable to log back in. This morning I contacted QB and we were able to log in to QB online from my computer on another browser. I updated FF today and still can not log into QB. How do I log into QB online using Firefox like I have done for years ? James Fletcher

Asked by James 20 amahora adlule