Showing questions tagged: Show all questions

iCloud can't login - This browser doesn’t support security keys

I've had nothing but problems with iCloud - usually it's text being unable to be displayed in Notes on iCloud. Currently I can't login with my Yubikey: This browser d… (read more)

I've had nothing but problems with iCloud - usually it's text being unable to be displayed in Notes on iCloud.

Currently I can't login with my Yubikey:

This browser doesn’t support security keys Try another browser to sign in with your security key.

Asked by broomwalker 37 minutes ago

Last reply by cor-el 1 minute ago

Using Firefox today had trouble with online checking account Submit button grayed out, including trying to get a new Comcast account Continue button was grayed out--I need help to resolve this issue.

Basically in my online banking with chevron to login button is grayed out and won't allow me to login, including comcast account Continue button is grayed out. This is an… (read more)

Basically in my online banking with chevron to login button is grayed out and won't allow me to login, including comcast account Continue button is grayed out. This is an urgent matter because I can't get comcast online application for new account completed.

Asked by mailto159 9 hours ago

Last reply by cor-el 1 hour ago

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: <!DOCTYPE html> <html> <head> <… (read more)

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

index.php is:

    <!DOCTYPE html>
    <html>
    <head>
      <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">

    </head>
    <body>
      <b>WebSocket Chat</b>
      <div id="chatBox"></div>
      <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>
    </body>
    </html>


server.php is:

    <?php
    require 'vendor/autoload.php';

    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 16 hours ago

Last reply by cor-el 1 hour ago

firefox incognito browser will not clear cache

I'm currently working on building a website, and while testing several of the front end parameters I'm just hitting a wall with firefox incognito's ability to clear the c… (read more)

I'm currently working on building a website, and while testing several of the front end parameters I'm just hitting a wall with firefox incognito's ability to clear the cache.

After I clear the cache, it's obvious that it's worked on the regular browser, but no matter how many times I clear it, how long I wait (this has been a 2 day ordeal), or how much of the history, cookies, cache, etc that I clear, the private browser information will not clear. Closing all windows, restarting the computer doesn't work.

I've changed aspects to a form and other aspects to a particular page, and am in the middle of doing a conflict test so every one of my plugins are off so the site looks 100% different on the main browser, but the private browser is stuck in the past.

Thoughts?

Asked by The Open Market 12 hours ago

Last reply by cor-el 2 hours ago

COLORADO DEPT REVENUE URL does not work, it does work in EDGE

COLORADO DEPT REVENUE URL does not work, it does work in EDGE The Colorado Department of Revenue online URL IS: https://www.colorado.gov/revenueonline/_/ ---… (read more)

COLORADO DEPT REVENUE URL does not work, it does work in EDGE

The Colorado Department of Revenue online URL IS:

    https://www.colorado.gov/revenueonline/_/
     ----------------------------------------------

Firefox does not like this URL value.

=====================================

The screen shows: "The page isn’t redirecting properly

An error occurred during a connection to www.colorado.gov.

This problem can sometimes be caused by disabling or refusing to accept cookies."

=====================================

Asked by dougsherman1 5 hours ago

Last reply by cor-el 5 hours ago

Bold type is garbled on my home page and on some web pages

At moment and for the past week or so, my email and other web pages garble all the bold type. This has happened periodically for the better part of a year. It will be nor… (read more)

At moment and for the past week or so, my email and other web pages garble all the bold type. This has happened periodically for the better part of a year. It will be normal for a month or so then be garbled as shown in the attached screen shot. This only happens on Firefox, not on Mac mail, Google Chrome, or Safari.

Asked by bess design 7 hours ago

Last reply by cor-el 5 hours ago

Outlook via Firefox shows titles, no content. Outlook is OK via safe mode, Chrome, MS Edge and MAIL

Outlook via Firefox shows titles, no content. Sometime I can read the content of the first email I select, but, no content appears in subsequent emails, just the titles.… (read more)

Outlook via Firefox shows titles, no content. Sometime I can read the content of the first email I select, but, no content appears in subsequent emails, just the titles. Outlook is OK via the Firefox safe mode, via Chrome, via MS Edge and via MAIL.

I have cleared cookies and cache.  I have also tried About:config>extensions.webcompat.enable_shims changed to FALSE.  

A sidebar with web addresses disappeared too. I think I have been done in by an update. What setting am I missing? I am using Firefox 114 with Windows 10

Asked by Jim Evans 12 hours ago

Last reply by cor-el 7 hours ago

"No secure connection"-message on almost every page I want to go

Dear Mozilla Team, I have severe difficulties with my Windows computer to open many websites I want to open, even those of banks I normally can easily enter. Do you hav… (read more)

Dear Mozilla Team,

I have severe difficulties with my Windows computer to open many websites I want to open, even those of banks I normally can easily enter.

Do you have any advice for me how to fix that? I searched in the help function but found the advice to be insufficient. And I also found no way to manually change the setting for the individual pages.

Thank you very much for your help.

Annette

Asked by schmidt.annette 12 hours ago

Last reply by cor-el 7 hours ago

Recent activity

My recent activity rows have stopped updating. Before whenever I started a new show on a streaming website they would update and have the new show I was watching in the r… (read more)

My recent activity rows have stopped updating. Before whenever I started a new show on a streaming website they would update and have the new show I was watching in the recent activity panel and that made it a lot easier for me to reopen the website and resume watching my shows but for some reason they wont update now and previous shows keep showing up.

Asked by neensmalik 9 hours ago

Can't print from Pocket to Google Drive when using Firefox

When using Chrome, I can easily save a website article on Google Drive from Pocket by printing as a pdf. However, when I try to perform the same activity when using Fire… (read more)

When using Chrome, I can easily save a website article on Google Drive from Pocket by printing as a pdf. However, when I try to perform the same activity when using Firefox, I get the dialogue box below. I really want to make Firefox my default browser but not being able to save from Pocket (or the web) to Google Drive when in Firefox is a deal breaker. Any suggestions would be appreciated!

Asked by s.atherton 13 hours ago

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… (read more)

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 1 day ago

Last reply by Ville 17 hours ago

Flatpak Firefox not displaying some pdfs correctly

Hello, Am using Mozilla Firefox installed via flatpak on openSUSE. Certain pdfs display correctly but other pdfs displayed with Firefox (either locally or online) are di… (read more)

Hello,

Am using Mozilla Firefox installed via flatpak on openSUSE. Certain pdfs display correctly but other pdfs displayed with Firefox (either locally or online) are displayed badly: spaces are replaced with a lower half block character, fonts not sharp. I installed Firefox from the openSUSE repos (not from flathub) and opened the same pdf and it displayed correctly. I downloaded the pdf and opened it using Okular and no problems. I also opened the “troublesome” pdfs on Firefox in Windows and it displays correctly. I conclude that the flatpak version of Firefox is causing some pdfs to display incorrectly but I don’t know why.

I installed flatseal to tweak the flatpak Firefox’s settings but nothing seemed to fix the pdf display issue. Please see screenshot below of how Firefox (from openSUSE repos, on the left hand side) and Firefox (from flathub, on the right hand side) display the same pdf from the internet. The online pdf in the screenshot and used as an example of the issue can be found at:

https://www.jrf.org.uk/sites/default/files/jrf/files-research/international_cities_rotterdam.pdf

Not sure why some pdfs display correctly in Firefox from flathub and others display incorrectly. I’d prefer to use flatpak’s sandboxed Firefox if possible. Is there anyone else with the same problem or someone who who found a solution to this issue?

Thanks

Dad4Linux

Asked by Dad4Linux 3 days ago

Last reply by jonzn4SUSE 20 hours ago

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… (read more)

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 21 hours ago

Firefox < 1.5.0.9 / 2.0.0.1 Multiple Vulnerabilities (23930) / Firefox < 1.0 Multiple Spoofing Vulnerabilities (14181)

The remote Windows host contains a web browser that is affected by multiple vulnerabilities. Description The installed version of Firefox is affected by various security… (read more)

The remote Windows host contains a web browser that is affected by multiple vulnerabilities. Description

The installed version of Firefox is affected by various security issues, some of which could lead to execution of arbitrary code on the affected host subject to the user's privileges.

Solution Upgrade to Mozilla 1.7.1 / Firefox 0.9.2 or later Upgrade to Mozilla 1.7.3 or later. Upgrade to Firefox 1.5.0.9 / 2.0.0.1 or later. Upgrade to Firefox 1.5.0.11 / 2.0.0.3 or later Upgrade to Firefox 1.5.0.10 / 2.0.0.2 or later Upgrade to Firefox 1.5.0.12 / 2.0.0.4 or later

Where are the patches/updates for this vulnerability located on the Mozilla homepage?

Asked by starks.nicholas 3 days ago

Last reply by cor-el 22 hours ago

No comment section on Yahoo or Fox News

All stories on Fox news and Yahoo do not show comments on the end of the stories. If I use MS edge the comment sections are there on all stories. I am using the latest … (read more)

All stories on Fox news and Yahoo do not show comments on the end of the stories. If I use MS edge the comment sections are there on all stories. I am using the latest mozilla program and am running windows 10.

Asked by Bob9754 1 day ago

Last reply by MarkRH 1 day ago

youtube thumbnails - open image in new tab

On the landing page for youtube, I used to be able to right mouse click on a video thumbnail and select "open image in a new tab" from the context menu and see the thumb… (read more)

On the landing page for youtube, I used to be able to right mouse click on a video thumbnail and select "open image in a new tab" from the context menu and see the thumbnail in a new tab window.

After recent updates, (now using 111.0.1 64bit , on windows 10 pro), this feature no longer exists. It's not a change on youtube because the thumbnail is still recognized as an image and can be opened in a new tab when I use Edge browser. It seems like Firefox no longer recognizes the thumbnail as an image.

Is there any setting I can change to get the feature of "open image in new tab" back into the context menu. or somehow get Firefox to recognize the thumbnail as an image ?

Asked by dee_veloper 2 months ago

Last reply by King Ray 1 day ago

I can't access my account. Help change email address

My old juno account is defunct. I want to keep my account using gmail address. I tried but Mozilla sends a code to my defunct juno account. Will I need to open a new acco… (read more)

My old juno account is defunct. I want to keep my account using gmail address. I tried but Mozilla sends a code to my defunct juno account. Will I need to open a new account? Please send help to [email removed from public]

Asked by Katharine 1 day ago

Last reply by cor-el 1 day ago