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 32 minutes ago

Last reply by jonzn4SUSE 22 minutes ago

What are the Operating Systems working Reload Matic ?

What are the Operating Systems working Reload Matic ? How does Reload Matic work with the windows 11 ? Please Send me a E-mail to [email removed by moderator]@… (read more)

What are the Operating Systems working Reload Matic ? How does Reload Matic work with the windows 11 ?

Please Send me a E-mail to [email removed by moderator]@gmail.com

Thank you

Forum rules and guidelines

Asked by pganurajnalindesilva7 50 minutes ago

Last reply by jscher2000 - Support Volunteer 45 minutes ago

Firefox version

I am using Version 113.0.2 (64-bit) and trying to access a home camera system, mydlink.com. When I go to log in there, it tells me "You are using an unsupported browse...… (read more)

I am using Version 113.0.2 (64-bit) and trying to access a home camera system, mydlink.com. When I go to log in there, it tells me "You are using an unsupported browse.....We recommend you use Firefox 12-51/52 ESR on Windows" Can I get this version? What options do I have? Thanks, Ed Corcoran

Asked by Ed Corcoran 1 hour ago

Last reply by jscher2000 - Support Volunteer 39 minutes ago

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

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

Last reply by cor-el 1 hour ago

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

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

Last reply by cor-el 1 hour 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

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

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

How to opt a specific addon out/setting of account settings sync

I have a lot a devices. I would like the majority of settings/etc to be synced with my account but I would also like to be able to have some add-ons excluded. For example… (read more)

I have a lot a devices. I would like the majority of settings/etc to be synced with my account but I would also like to be able to have some add-ons excluded. For example I use Persepolis download manager for the devices that support it but not all my devices support it. Result is I have to toggle active addon every time I switch devices as it syncs.

Asked by tsrnc2 2 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 1 hour ago

Search Shortucts not working: "*", "%", "^"

Hello, I'm trying to use the, "*", "%", "^", in my browser bar. What exactly do these do? After entering the shortcut I get a "Tab" or "History" button that shows up in … (read more)

Hello,

I'm trying to use the, "*", "%", "^", in my browser bar. What exactly do these do? After entering the shortcut I get a "Tab" or "History" button that shows up in the search bar and then after hitting enter nothing happens. Isn't this feature suppose to search inside all my open tabs and my History? Nothing happens after I hit enter.

Thank you.

Asked by max139 13 hours ago

Last reply by cor-el 3 hours ago

eliminate 3rd line of address bar

at the very top of firefox browser are 3 rows...the highest row is the list of open tabs.....the middle row is the address bar itself with various icons....the lowest row… (read more)

at the very top of firefox browser are 3 rows...the highest row is the list of open tabs.....the middle row is the address bar itself with various icons....the lowest row which is the third row begins with 'import bookmarks' 'getting started' and then various website suggestions.

that 3rd row takes up space and has no useful functionality for me .....i've tried changing the settings but i can't alter it... is there a harmless way to eliminate that third row? thanks

Asked by wdobni 14 hours ago

Last reply by cor-el 3 hours ago

Firefox fails to show Arabic characters

Hi, As the attached screenshot shows, my browser fails to correctly show Arabic characters in textboxes. Sometime, the same problem happens when loading a page too. I te… (read more)

Hi,

As the attached screenshot shows, my browser fails to correctly show Arabic characters in textboxes. Sometime, the same problem happens when loading a page too. I tested it with Arabic, Persian and Kurdish keyboards and still get the same problem.

My Firefox version is 113.02 (64-bit). I use an Apple M1 Pro (Ventura 13.2.1).

This problem exists since early 2023.

Asked by sina.recherche 3 hours ago

Last reply by cor-el 3 hours ago

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

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

Last reply by cor-el 3 hours ago

Reorder context menu addon-options

I have many addons and some add a context menu with specific options. One that I often use is "Copy Plain text". Can it be moved upwards, can the order of the context men… (read more)

I have many addons and some add a context menu with specific options. One that I often use is "Copy Plain text". Can it be moved upwards, can the order of the context menu list of options for addons be customized?

Asked by cipricus 22 hours ago

Last reply by cor-el 3 hours ago

editor.use_div_for_default_newlines not working in version 112.0

Hello, in version 112.0 editor.use_div_for_default_newlines in FALSE it does not work. When I write in certain forums, it creates a double space between lines, any help? … (read more)

Hello, in version 112.0 editor.use_div_for_default_newlines in FALSE it does not work. When I write in certain forums, it creates a double space between lines, any help?

It worked until today when i update it.

Thx.

Asked by Zoisa88 1 month ago

Last reply by cor-el 3 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