Showing questions tagged: Show all questions
  • Archived

Radar site of the weather network has stopped working

I noticed this morning that the radar site of theweathernetwork.com has stopped working on Firefox. I am running the latest Firefox from OpenSuse Tumbleweed. The strange … (read more)

I noticed this morning that the radar site of theweathernetwork.com has stopped working on Firefox. I am running the latest Firefox from OpenSuse Tumbleweed. The strange thing is Vivaldi also has the same problem so I suspected it's not a Firefox problem. So I logged into Firefox on my two other Linux distros, Debian and Fedora and Firefox has the same problem on them!!. Strange that Vivaldi suffers the same problem, the radar site never loads in Firefox, and in Vivaldi it sort of loads but runs VERY slowly. I tried restarting Firefox in troubleshoot mode and it got as far as a page saying some browsers don't support the site and suggested I update my browser. It appears the radar site has made some sort of change which two browsers under Linux cannot cope with. Unfortunately the radar site of theweathernetwork.com is the best of all the sites available.

Asked by mccfrank 10 months ago

Last reply by mccfrank 10 months ago

  • Archived

How do I remove alternative languages from Firefox Language Settings?

I set my browser to use English instead of my local language and I expect sites to use English by default. Now for some reason Gmail showed me a "do you want to leave thi… (read more)

I set my browser to use English instead of my local language and I expect sites to use English by default. Now for some reason Gmail showed me a "do you want to leave this page" browser dialogue in language other than English.

Turns out, there's a new(?) option to set alternative interface languages, and I suppose websites can now choose which one to use?

Wow, just noticed, even tooltips on this website aren't in English anymore. This is extremely annoying.

I'd love to remove the alternate language from that list and leave Firefox interface exclusively in English. There is no option to remove the second language, only to move priority (see screenshot).

Searching through about:config with "language" didn't help. The closest relevant result was for the dictionaries. I do not have problems with dictionaries; "alternate" did not bring any relevant results either.

Asked by Fly McFlyson 11 months ago

Last reply by cor-el 11 months ago

  • Archived

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 11 months ago

Last reply by vinubangs 11 months ago

  • Archived

Tab foregrounds become gray for NYTimes pages

In Firefox 114.0.2, the tab foreground color for most NYTimes.com pages initially is black, but after an instant, the foreground color now becomes gray. The background c… (read more)

In Firefox 114.0.2, the tab foreground color for most NYTimes.com pages initially is black, but after an instant, the foreground color now becomes gray. The background color is a similar gray, so the tab symbol for the NYTimes (beginning with an ornate letter T) cannot be distinguished from the background. The NYTimes tab foreground color used to remain black.

For an example, go to https://www.nytimes.com/. The tab foreground colors for some NYTimes pages remain black; for example, go to https://help.nytimes.com/hc/en-us. I think this tab foreground color change began recently, less than a month ago. This problem does not occur for web sites other than the NYTimes. Restarting my computer does not help. This tab color problem does not occur in Edge or Chrome.

Thanks for any info

Asked by NotFred3 10 months ago

Last reply by cor-el 10 months ago

  • Archived

Sign in Sync loop inssue

Reinstalled Firefox after a computer upgrade and now I'm stuck with a disconnected account and a sync loop. I login and it shows login confirmed but I look in the top rig… (read more)

Reinstalled Firefox after a computer upgrade and now I'm stuck with a disconnected account and a sync loop. I login and it shows login confirmed but I look in the top right corner where you access your account and it shows that it's disconnected. On top of that, I backed up all of my tabs, favorites and passwords but I don't have the ability to import it from the back up. I'm only given the options to import from another browser. Any help in this matter is greatly appreciated.

Asked by SGTDRE 10 months ago

Last reply by SGTDRE 10 months ago

  • Archived

UI Text Changes Color (Greys Out) When Firefox Window Loses Focus

After updating to Firefox 115.0-1, I noticed that the tab names for all inactive tabs automatically greys out whenever the main Firefox window loses focus (see attached g… (read more)

After updating to Firefox 115.0-1, I noticed that the tab names for all inactive tabs automatically greys out whenever the main Firefox window loses focus (see attached gif image). Only the system theme is affected. I should also note that only Firefox 115 exhibits this behavior (downgrading to Firefox 114.0.2-1 fixes the issue).

I'm not sure if this is by design. I've gone through the change log for Firefox 115 and found no mentions of this.

Of course, the behavior isn't that big of a deal. However, since I'm using a window manager (i3wm), an annoying "flash" (see attached gif image) can be observed every time I press a keybinding to activate a binding mode.

If this is a new feature, I'd very much like to turn it off in about:config.

Does anyone know how?

Asked by Anthony 10 months ago

Last reply by Anthony 10 months ago

  • Solved
  • Archived

Cookies pop-up disappears before I can make a selection.

On a new website or after clearing the cache and cookies and upon opening a page I will often get a pop-up with cookie usage choices, e.g. "strictly necessary", etc. How… (read more)

On a new website or after clearing the cache and cookies and upon opening a page I will often get a pop-up with cookie usage choices, e.g. "strictly necessary", etc. However, the pop-up disappears before I have a chance to click on any choice or even finish reading the first line. I'm not sure what settings I need to change to allow me to make a choice on the pop-up. Please advise. Thanks.

Asked by BigO 10 months ago

Answered by cor-el 10 months ago

  • Solved
  • Archived

using Location Services on Mac

I tried to log in to a website that requires access to my location. I'm using Firefox 114.02 on an iMac running Monterey 12.6.7. I was able to get in to Firefox's Locati… (read more)

I tried to log in to a website that requires access to my location. I'm using Firefox 114.02 on an iMac running Monterey 12.6.7. I was able to get in to Firefox's Location settings and now have the website listed with "Allow" noted. This was not enough, and for some time I didn't understand why. Then I discovered the Mac's System Preferences' Security and Privacy section, where Location Services are one category under Privacy. Selecting Location Services brings up a list of apps that are allowed to provide location information. For some reason, other browsers are on the list and can be turned on or off, but Firefox is not on the list of apps that can be selected as permitted. Am I missing something here? I can't find any way to add apps to the list so that they can actually be selected. Any advice?

Asked by MrWenger2 9 months ago

Answered by zeroknight 9 months ago

  • Archived

Gmail sidebar calendar missing

Never had an issue with my Gmail sidebar calendar loading automatically on Firefox. With the latest Mozilla update to 114.0.2 for my Mac, the calendar sidebar flashes the… (read more)

Never had an issue with my Gmail sidebar calendar loading automatically on Firefox. With the latest Mozilla update to 114.0.2 for my Mac, the calendar sidebar flashes the calendar icon but fails to load. The other sidebar apps are functional. I can load my full calendar in a new tab with issue. Signed into my Gmail account on Chrome and Safari and the sidebar displays as it should.

Asked by reuschebob 10 months ago

Last reply by alec.fredericks 10 months ago

  • Archived

Font size too small on menu bar and bookmarks toolbar

I have just completed a new computer with new Windows 11 and fresh dowhload of Firefox and was very dissappointed to find that the Firefox font sizes on the menu and tool… (read more)

I have just completed a new computer with new Windows 11 and fresh dowhload of Firefox and was very dissappointed to find that the Firefox font sizes on the menu and toolbars were very difficult to read because of their small size. Most of the available settings in Windows and firefox to increase the font size resulted in making the web pages and fonts bigger as well. Looking through the the Firefox help pages this seems to be a common problem that lacks a satisfactory solution - untill now.

I solved the problem by going into about:config and making the following changes: 1. Make sure that Browser.Display.OS-zoom-behaviour is set to 1 2. Set Layout.css.devPixelsperPx to 1.3 ( or between 1.1 to 1.5 to suit) 3. Set ui.textScaleFactor to 75 ( or between 75 to 100 to suit, decrease this number as you increase previous)

This solved the problem for me and I'm posting in the hope others may find this usefull.

Asked by Ants100 10 months ago

Last reply by cor-el 10 months ago

  • Archived

how to block specific domains or urls in firefox

I have run across some sites - well, pages on sites - which seem to stall and lockup my entire laptop requir8ng a restart and quick kill of the page when I then restart F… (read more)

I have run across some sites - well, pages on sites - which seem to stall and lockup my entire laptop requir8ng a restart and quick kill of the page when I then restart FF. I want to be able to simply block such pages or, the domain where such page resides. I can see things like blocking tracking but nothing on specific dom8ns or urls.

Asked by hav 10 months ago

Last reply by jonzn4SUSE 10 months ago

  • Solved
  • Archived

Zoom - Functional Cookies?

I cannot stay Signed In on Zoom's website (and I used to be able to). When I hover over the Information icon, I see a message that I have to enable Functional Cookies (s… (read more)

I cannot stay Signed In on Zoom's website (and I used to be able to). When I hover over the Information icon, I see a message that I have to enable Functional Cookies (see attached). I have cleared my cache and explicitly allowed Zoom, but no luck. I don't have this problem in other browsers.

Asked by sgross38 10 months ago

Answered by jscher2000 - Support Volunteer 10 months ago

  • Archived

Firefox can sync bookmarks but can't sync logins and passwords

Firefox can sync anything except logins and passwords between different devices. I have selected "Logins and passwords" at "settings-Sync-You are syncing these items acro… (read more)

Firefox can sync anything except logins and passwords between different devices. I have selected "Logins and passwords" at "settings-Sync-You are syncing these items across all your connected devices", but it still dosen't work.

Asked by MaxST 11 months ago

Last reply by cor-el 11 months ago

  • Archived

Copy/Paste not working

The people who asked this question 3 years ago were given a "chosen solution", which didn't work then. And 3 years later the underlying problem is still not fixed. Last w… (read more)

The people who asked this question 3 years ago were given a "chosen solution", which didn't work then. And 3 years later the underlying problem is still not fixed. Last week I tried a new solution which meant messing around with the Firefox settings. And it worked - until the next time I restarted the computer.

I copy and paste in many of my activities, which interact with external websites e.g. discussion groups. The current frustration is a discussion about Adobe, which means copying text from one window to another. It does not happen. Unless this is permanently sorted in the next couple of days, regretfully I shall switch to a workable browser, e.g. Chrome. I cannot afford the waste of time repeatedly researching then not fixing a failing feature.

Asked by cvhorie 10 months ago

Last reply by jscher2000 - Support Volunteer 10 months ago

  • Archived

outlook dot com error when signing in

I get this error when trying to access my email using FireFox. Lately this (or a similar) error happens weekly if not every couple of days. Always first thing in the morn… (read more)

I get this error when trying to access my email using FireFox. Lately this (or a similar) error happens weekly if not every couple of days. Always first thing in the morning, too.

UTC Date: 2023-07-16T15:17:20.490Z

Client Id: 57C5EE00898E486392D56E4C2F706F9E

Session Id: 84e33266-6f14-4c67-bcf7-f5589a5e04c5

Client Version: 20230707009.10

BootResult: network

Back Filled Errors: Unhandled Rejection: Error: NetworkResponseError:undefined|undefined:undefined

err: Error: NetworkResponseError

esrc: StartupData

et: ServerError

estack: K@https://res-h3.public.cdn.office.net/owamail/20230707009.10/scripts/owa.mailindex.js:2:260625

p/<@https://res-h3.public.cdn.office.net/owamail/20230707009.10/scripts/owa.mailindex.js:2:259787

my email works just fine using Safari so I am at a loss.

I have tried running FF (Firefox) in safe mode, ensuring outlook.live.com is an exception to the pop up window blocker, changed default protections on outlook dot com to none from standard.... Turned off ABP, clearing cache and cookies from within FF.

it may be worth mentioning that I can still browse/access other websites while outlook produces this error, and my network settings within FF are set to use default system settings (no proxy).

Asked by billy_hill_65 10 months ago

Last reply by jonzn4SUSE 9 months ago

  • Archived

restore bookmarks/profile

My computer 'guru' reinstalled Win10 in order to correct a serious problem. ALL of my programs were gone and I was left with a raw Win10. 6/12/2023 was last date prior to… (read more)

My computer 'guru' reinstalled Win10 in order to correct a serious problem. ALL of my programs were gone and I was left with a raw Win10. 6/12/2023 was last date prior to the disaster. I reinstalled Firefox. Using the "firefox.exe -p" I can only find the default profile. I DO HAVE a full backup done using the Win7 Backup and Restore feature. How do I resurrect my most recent profile? I will need to find the files(s) manually from the b/u. When I did a Full Restore the bookmarks didn't appear. Where and what files am I looking for? The attached screen shots from the b/u may be of help. [removed email from public forum]

Asked by newspr0 11 months ago

Last reply by cor-el 10 months ago

  • Solved
  • Archived

Google Docs: Alt+/ shortcut not working in Firefox, works in Chrome

On Google Docs, the very useful shortcut "Alt+/" for executing menu actions by name exists, similar M-x in Emacs or Ctrl+Shift+A in PyCharm or Ctrl+Shift+P in VS Code. O… (read more)

On Google Docs, the very useful shortcut "Alt+/" for executing menu actions by name exists, similar M-x in Emacs or Ctrl+Shift+A in PyCharm or Ctrl+Shift+P in VS Code.

On a German keyboard, there is no "/" key. In Chrome the hotkey "Alt+#" works instead. In Firefox, it does not.

This hotkey is particularly important, because it gives quick access to menu actions, that have no hotkey assigned, or for which the hotkey does not work on the current layout.

Is there something I can do to make it work?

Note. Based on what I know, I cannot tell if this is an issue with Firefox not sending the Alt+# key correctly, a special feature of Chrome that isn't present in Firefox, or a cross-browser compatibility issue of Google Docs, that should be blamed on Google Docs and not Firefox.

Firefox 114.0.2 (64-bit), running on Open Suse 15.3, 64 bit.

Asked by kb 9 months ago

Answered by jscher2000 - Support Volunteer 9 months ago