Ceisteanna leis an gclib seo á dtaispeáint: Taispeáin gach ceist
  • Cartlannaithe

Microsoft Defender Antivirus found Trojan:Script/Wacatac.B!ml in langpack-en-US@firefox.Mozilla.org.xpi

I recently had Firefox auto update the version of Firefox on my windows computer I have for personal use. Within 48 hours or so, Microsoft defender gave me the following… (tuilleadh eolais)

I recently had Firefox auto update the version of Firefox on my windows computer I have for personal use. Within 48 hours or so, Microsoft defender gave me the following notification in the image below, also mentioned in the title.

A little research has had mixed results on Reddit. Anyway, I am not directly looking for advice here on securing my device. Rather, I am wondering if there is any chance this could be a problem on the Firefox end, perhaps an issued caused by the recent update? Thanks.

Asked by everestpaintballer 1 bhliain ó shin

Last reply by everestpaintballer 1 bhliain ó shin

  • Cartlannaithe

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> <… (tuilleadh eolais)

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 bhliain ó shin

Last reply by vinubangs 1 bhliain ó shin

  • Cartlannaithe

Force Dark Theme on pages feature, Firefox browser

Hello, is there a 'Force Dark Theme on pages' feature in any Firefox browser, whether Developer edition or Nightly or ... i'm using Opera just because i can force dark th… (tuilleadh eolais)

Hello, is there a 'Force Dark Theme on pages' feature in any Firefox browser, whether Developer edition or Nightly or ... i'm using Opera just because i can force dark theme on any page while Firefox i trust it and consider it better as browser but i don't use it just for the lack of this feature

Here's how your site looks when i use this feature on Opera, it's attached

And here's how your site looks like on Firefox browser even if i have enabled and selected Dark Theme in your settings, image is attached.

Please add this feature and do not depend on Add-ons or Extension as these community or individual developers' Extensions/Add-ons require full access of browser data, and this is not a secure practice

Asked by oreillieaqa26 1 bhliain ó shin

Last reply by oreillieaqa26 1 bhliain ó shin

  • Cartlannaithe

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… (tuilleadh eolais)

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 1 bhliain ó shin

Last reply by cor-el 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

Cannot verify my device on Chase Bank's secure server

I'm unable to verify my Mac to log into my Chase bank account, since I last cleaned out my cookies. When I enter my verification code and password, the fields revert to b… (tuilleadh eolais)

I'm unable to verify my Mac to log into my Chase bank account, since I last cleaned out my cookies. When I enter my verification code and password, the fields revert to blank rather than submitting. I've cleaned my cache and cookies, restarted my browser, spoken to Chase reps... but it seems the issue is the browser. Firefox is the only browser I have this problem with.

It was suggested to me that Total Cookie Protection is not allowing Chase to verify, but I toggled off Enhanced Tracking Protection on the site, as well as adding exceptions as many of Chase's secure servers as I've seen (the exceptions in the attached screenshot go way past 7...), and I still can't verify and log in.

Asked by Anna 1 bhliain ó shin

Answered by Medhasree Suram 1 bhliain ó shin

  • Cartlannaithe

Firefox not opening the Roblox link properly

So I have the latest version of macOS Ventura, the latest version of Firefox, and the latest version of Roblox. Whenever I try to open a Roblox game from their website (y… (tuilleadh eolais)

So I have the latest version of macOS Ventura, the latest version of Firefox, and the latest version of Roblox. Whenever I try to open a Roblox game from their website (yes, I know. Roblox now has the desktop app so you don't need the website to open a game), it opens the app, but not the link, which means it doesn't open the game :( Does anybody know how to get Firefox to open the link and not just the app? (Btw no hate on firefox)

Asked by thisiscoolio 1 bhliain ó shin

Last reply by Greymagic27 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

Firefox URL/Search box and results drop down show diagonal pink line background

With the last update I suddenly have the url/search box background and its search results drop down background set to an ugly pink with diagonal lines. I am visually imp… (tuilleadh eolais)

With the last update I suddenly have the url/search box background and its search results drop down background set to an ugly pink with diagonal lines.

I am visually impaired and now its almost impossible to use firefox because I can't read the text on top of the diagonal colored bands. There doesn't seem to be any settings to turn on or off this appearance.

I will have to switch browsers until this is fixed and I don't want to.

Asked by tniec 1 bhliain ó shin

Answered by tniec 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

How can I enable sound on pop-up blocked

Is there a way to enable sounds when the built in pop-up blocker blocks a pop-up or make the banner more noticeable? I often dont realize a pop-up has been blocked and ca… (tuilleadh eolais)

Is there a way to enable sounds when the built in pop-up blocker blocks a pop-up or make the banner more noticeable? I often dont realize a pop-up has been blocked and cant figure out why I' not getting the new content

Asked by jpnyc 1 bhliain ó shin

Answered by cor-el 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

British Airways enable cookies page essential cookies greyed out so can't log in

British Airways enable cookies page, essential cookies greyed out so can't log in. The other three cookie choices are live and ticked. This problem has been here for wee… (tuilleadh eolais)

British Airways enable cookies page, essential cookies greyed out so can't log in. The other three cookie choices are live and ticked. This problem has been here for weeks - can anyone suggest what is wrong?

Asked by elsfield 1 bhliain ó shin

Answered by jonzn4SUSE 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

Websites

There at least 3 websites now that I cannot open, straighttalk.com, kbb.com, and redbox.com. Last month I could open these websites, before that I could not, now I canno… (tuilleadh eolais)

There at least 3 websites now that I cannot open, straighttalk.com, kbb.com, and redbox.com. Last month I could open these websites, before that I could not, now I cannot again. I have had this problem for months. I have emptied my cache, I keep firefox up to date, and I have restarted my computer and browser multiple times. This is the error message I get from straighttalk.com:

Access denied Error 15 www.straighttalk.com 2023-06-26 13:48:00 UTC

This is the error message I get from kbb.com Access Denied You don't have permission to access "http://www.kbb.com/" on this server.

This is the error message I get from redbox.com 403 ERROR The request could not be satisfied. Request blocked. We can't connect to the server for this app or website at this time. There might be too much traffic or a configuration error. Try again later, or contact the app or website owner. If you provide content to customers through CloudFront, you can find steps to troubleshoot and help prevent this error by reviewing the CloudFront documentation.

Any help would be greatly appreciated. Thank you Nicki

Asked by Nicki Z. 1 bhliain ó shin

Answered by jscher2000 - Support Volunteer 1 bhliain ó shin

  • Cartlannaithe

Downloads>Save File to always on...

Hello Mozilla Support Team, Since one of the last updates firefox Download Setting seems not work properly... Into Settings > Files and Applications > Downlods &… (tuilleadh eolais)

Hello Mozilla Support Team,

Since one of the last updates firefox Download Setting seems not work properly...

Into Settings > Files and Applications > Downlods > Save files to option is ALWAYS on, even when "Aways ask you where to save files" option box is checked. When I open a PDF in view mode with Firefox, it automatically download it to the location described into "Save Files to"..in my case Desktop. It seems that the "Save Files to" option doesn't gray out when "Always ask..." option box is checked.

Do you have any idea why I can't chose just one of the two options?

Thanks for you help...

Alex

P.S. Attached screenshot...

Asked by Alex 1 bhliain ó shin

Last reply by zeroknight 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

Noto Hieroglyphics shifted up with writing-mode: vertical-lr;

When using Noto Sans Egyptian Hieroglyphics font and writing-mode: vertical-lr; the characters appear shifted up by ~10%, thus appearing partially outside their parent el… (tuilleadh eolais)

When using Noto Sans Egyptian Hieroglyphics font and writing-mode: vertical-lr; the characters appear shifted up by ~10%, thus appearing partially outside their parent element. All hieroglyphics do this (here using (U+13000)), but only with Noto font.

Tested on versions 114.0.2 and 79.0esr, on different machines, new installs, old installs, even the mobile version. Chromium-based browsers don't have the issue. Images show character inside a div (with borders), the same character highlighted, and Chrome screenshot for comparison. TO REPRODUCE just import and set Noto Sans Egyptian Hieroglyphics and writing-mode: vertical-lr/vertical-rl/tb/tb-rl. A bordered div around the characters might be useful.

Asked by damian.dbcz 1 bhliain ó shin

Answered by damian.dbcz 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

Disable "Firefox suggest" drop down list. (Not autocomplete text, just extra ones)

When I start typing, there's a feature that is not very good for my privacy: "Firefox Suggest" - it shows off my web history to anyone looking at my screen, complete with… (tuilleadh eolais)

When I start typing, there's a feature that is not very good for my privacy: "Firefox Suggest" - it shows off my web history to anyone looking at my screen, complete with thumbnails for all the websites. How can we stop it?

Asked by lantai 1 bhliain ó shin

Answered by cor-el 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

Image search on Google constantly cause tab crash!

Hello everybody, since the last two updates Firefox started tab-crashing everytime I enter search terms on Google and then I click on "Images" Previous versions of Fire… (tuilleadh eolais)

Hello everybody,

since the last two updates Firefox started tab-crashing everytime I enter search terms on Google and then I click on "Images" Previous versions of Firefox had no problems at all.

I'm running Linux-Ubuntu 16.04

For example:

1. I "insert nut M6" in the google search-bar 2. Google shows me mixed image and text contents 3. I click on the "Images" button of Google 4. A collection of images appears for a fraction of a second, but immediately after.... 5. ....boom! Tab crashed message (see attached screenshot)

Any clue? Giulio - Munich/Germany


Name Firefox Version 114.0.2 Build ID 20230619081400 Distribution ID canonical User Agent Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/114.0 OS Linux 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 OS Theme Greybird / Adwaita Application Binary /usr/lib/firefox/firefox

Asked by giulio.buccini 1 bhliain ó shin

Answered by giulio.buccini 1 bhliain ó shin

  • Cartlannaithe

403 Forbidden

I just started getting "403 Forbidden" when trying to access dexterlive.com from Firefox running on a Windows 7 PC. It's been working for the last 5 years. I tried with C… (tuilleadh eolais)

I just started getting "403 Forbidden" when trying to access dexterlive.com from Firefox running on a Windows 7 PC. It's been working for the last 5 years. I tried with Chrome. It works fine. It also works fine on Firefox running on my Android phone. What's happened to Firefox on the PC?

Asked by johnmi 1 bhliain ó shin

Last reply by cor-el 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

Extensions are not shown in toolbar after restore

Hello, I wanted to restore Firefox to start clean. I wanted anyway to reinstall my (few) extensions, all of which are safe and well known. When I do that, though, their i… (tuilleadh eolais)

Hello, I wanted to restore Firefox to start clean. I wanted anyway to reinstall my (few) extensions, all of which are safe and well known. When I do that, though, their icons don't show up in the toolbar. When I open the "customize toolbar" setting, extension icons aren't there. So there's no way to add them to toolbar.

I tried all possible methods: - "Restore Firefox" and resync my account (extensions are reinstalled but icons not shown in toolbar / customize toolbar) - "Restore Firefox", not syncing, and manually installing extensions (icons still not shown in toolbar / customize toolbar) - Uninstall Firefox, delete everything in Profiles folder, reinstall Firefox. Same behavior.

So, it seems it's something not related to a broken profile, since a fresh profile, with no syncing, does not fix the issue.

Any clue of what I could try? Thanks!

Asked by Daniele Mancino 1 bhliain ó shin

Answered by Daniele Mancino 1 bhliain ó shin

  • Cartlannaithe

Change Home Page and New Window

How do I change the Home Page and New Window. The methods shown on a search to not match the menu structure that show on my version (should be up to date) of FireFox. I s… (tuilleadh eolais)

How do I change the Home Page and New Window. The methods shown on a search to not match the menu structure that show on my version (should be up to date) of FireFox. I select "open application menu" top right corner. The selected settings, then Home. Home page and new windows drop down box is clicked and new custom URL is entered. There is option to save the new Home Page. If you exit and restart it defaults back to FireFox home page. How is the change saved.

Using Google search all the various sources of help either describe or show a different set of screens to my version of FireFox.

Asked by ian.pauline.hamilton 1 bhliain ó shin

Last reply by Terry 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

Pop-Up Notifications

I like the Firefox notification at the top of the browser that says "Firefox prevented this site from opening a pop-up window." However, I recently accidentally clicked "… (tuilleadh eolais)

I like the Firefox notification at the top of the browser that says "Firefox prevented this site from opening a pop-up window." However, I recently accidentally clicked "Don't show this message when pop-ups are blocked."

I can't find any way to *undo* this choice. How can I get this notification to start appearing again whenever Firefox blocks a pop-up? I feel like this should be an easy checkbox somewhere, but I can't seem to find it.

Asked by roadrunner210 1 bhliain ó shin

Answered by jscher2000 - Support Volunteer 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

Difference in fonts/font size in Firefox 114 vs 113

Just updated to Firefox 114 from version 113 on Fedora 37 and spotted difference in the font rendering using the old profile. On Firefox 114, the fonts are larger. I cou… (tuilleadh eolais)

Just updated to Firefox 114 from version 113 on Fedora 37 and spotted difference in the font rendering using the old profile.

On Firefox 114, the fonts are larger. I could not make it the same as in Firefox 113, despite all the configuration in the profile is the same. Downgrading to Firefox 113 return the previous font size/rendering.

However, in Firefox 114 there's a font difference even between my old profile and fresh new profile. The font configuration in the settings is exactly the same between these two profiles (default profile, Latin and Cyrillic — the same font families, sizes, checkboxes, i've even checked about:config options searching by "font" — all the same).

Check the screenshots.

Asked by iam18 1 bhliain ó shin

Answered by iam18 1 bhliain ó shin

  • Cartlannaithe

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… (tuilleadh eolais)

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 1 bhliain ó shin

Last reply by jonzn4SUSE 1 bhliain ó shin