Showing questions tagged: Show all questions

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

Last reply by cor-el 11 hours ago

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

Last reply by cor-el 13 hours 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 1 day ago

Last reply by cor-el 15 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 18 hours ago

Last reply by cor-el 18 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 21 hours ago

Last reply by cor-el 19 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 1 day ago

Last reply by cor-el 20 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 1 day ago

Last reply by cor-el 21 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 1 day 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 4 days ago

Last reply by cor-el 1 day 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 2 days ago

Last reply by cor-el 1 day ago

Zoom in and zoom out css not working

i want to zoom in and zoom out screen content using zoom css according to my screen it's working fine in Google crome browser but not working in Mozilla Firefox browser… (read more)

i want to zoom in and zoom out screen content using zoom css according to my screen it's working fine in Google crome browser but not working in Mozilla Firefox browser

https://prnt.sc/brKa31ZMK1LE

Asked by khyatipanchal2 2 days ago

Last reply by James 1 day ago

Microsoft edge issue

I can't login to Playnow. Microsoft Edge Geolocation Issue Since the release of Microsoft Edge versions 114.0.1823.37 and 114.0.1823.41, there have been numerous repor… (read more)

I can't login to Playnow.

Microsoft Edge Geolocation Issue

Since the release of Microsoft Edge versions 114.0.1823.37 and 114.0.1823.41, there have been numerous reported cases of geolocation issues resulting in players being unable to log in to Playnow.com. We recommend using an older version of Microsoft Edge (113.0.1774.57) or using another browser such as Chrome .

Asked by Hangmeover 2 days ago

Last reply by James 1 day ago

Download Helper not downloading from Youtube

When watching something on Youtube and I click on the coloured download icon, I get to be able to click on the title of the video. A blue 1 appears in the download icon. … (read more)

When watching something on Youtube and I click on the coloured download icon, I get to be able to click on the title of the video. A blue 1 appears in the download icon. When I click again, then click on the blue 1 to watch the download. Nothing happens. The window just sits there and states 'downloading', but it does not happen. This happened last year and you managed to fix it; now Youtube seem to have blocked downloading again. Geoffrey D Dean, Australia.

Asked by Geoffrey D Dean 6 days ago

Last reply by James 1 day ago

Chinese hackery

If I use Chrome, this does not happen. When I use Firefox, Every. Single. Time. I log into gmail, all the instructions are in Chinese. If I just log out, default is Chi… (read more)

If I use Chrome, this does not happen.

When I use Firefox, Every. Single. Time. I log into gmail, all the instructions are in Chinese. If I just log out, default is Chinese. Do I need to change my email address? Gmail is my work email, also, and it doesn't happen with that account at work, but the default browser is Chrome.

Yes, I've repeatedly changed the language back to English. I have 2-step verification for logging in. I just changed my password, closed all browsers, reset trusted devices. Did not help. If I use Mozilla Firefox, when I type in gmail.com, my email addresses are in English; everything else is Chinese.

Asked by martha_sellers 2 days ago

Last reply by jscher2000 - Support Volunteer 1 day ago

Copying from webpage

A webpage has 1,200 rows. I do Select All or drag the cursor from the first row to the last row to highlight all of the rows. I then do Copy. When I do Paste (using Ma… (read more)

A webpage has 1,200 rows.

I do Select All or drag the cursor from the first row to the last row to highlight all of the rows.

I then do Copy.

When I do Paste (using Match Destination Formatting) to paste the copied rows into an empty Excel spreadsheet, only about 65 rows get posted.

What am I doing wrong?

Asked by gcotterl 2 days ago

Last reply by jscher2000 - Support Volunteer 2 days ago

How do you block automatic video play?

Hi Automatic video play has been quite a nuisance in spite of using some recommended measures, such as under Firefox Settings => Privacy and Security => Permission… (read more)

Hi

Automatic video play has been quite a nuisance in spite of using some recommended measures, such as under Firefox Settings => Privacy and Security => Permissions => Autoplay => both options set to Block Video & Audio and saving. The settings change does not appear to work.

Since I mostly use the Portableapps.com version of Firefox, I suspected it might be the issue, after noting once you restart Firefox, that the settings are both back to = Allow Video & Audio! I immediately checked out a separate standalone Firefox installation which I updated to 114.0 (64-bit), but to my dismay, noticed it does also not keep the preferred "Block Video and Audio" settings, also when the browser is restarted.

So is there a bug in the Windows versions I use on my Win 10 64bit and if not, which would be strange, what is going on, why are the settings not kept and how can effectively stop auto-play, which can be a nuisance.

An example of such videos is on Huffpost, such as https://www.huffpost.com/entry/jake-tapper-brianna-keilar-cnn-gop-race_n_647ece5ce4b0b4444c80b001 where the DeSantis video immediately loads and starts playing. The Settings save does not appear to work at all.

Thank you for you help.

Asked by simbats4z 3 days ago

Last reply by cor-el 2 days ago