Showing questions tagged: اعرض كل الأسئلة
  • المُؤرشفة

Warning: Potential Security Risk Ahead

For Securing my Apache server i have created a CA and from that CA i have created a self-signed certificate. When i add the certificate to the certificate manager and try… (read more)

For Securing my Apache server i have created a CA and from that CA i have created a self-signed certificate. When i add the certificate to the certificate manager and try to access my domain with https i am getting this warning 'Warning: Potential Security Risk Ahead'. My certificate has enough validation. How can i get rid of this warning.

Asked by shiam.mahmud01 10 months ago

Last reply by Medhasree Suram 10 months ago

  • حُلّت
  • المُؤرشفة

real solution to retrieve the saved login password from completely uninstalled firefox

Hi, I completely uninstalled the firefox and re installed the latest version. The problem is that I have lost all the passwords and email addresses. how do i retrieve th… (read more)

Hi, I completely uninstalled the firefox and re installed the latest version. The problem is that I have lost all the passwords and email addresses. how do i retrieve this information Some experts suggested to use recuva. I have tried . But how do I use recuva to retrieve the password. Please explain in detall. If it is saved in pc, please give me instructions how to retrieve. Could I opt for system restore to have the previous firefox with all the passwords. how do I select the profile in roaming folder, appdata roaming folder to copy the same to my newly installed firefox. Please give the real solution for this urgently ,as i have to login to finish web work

Asked by jrj 10 months ago

Answered by cor-el 10 months ago

  • حُلّت
  • المُؤرشفة

subtitles out of sync in streaming services

Hello, I am finding that Firefox display incorrectly and out of sync the subtitles in streaming services like Hulu or Amazon Video. Subtitles dialogs appear around ten se… (read more)

Hello, I am finding that Firefox display incorrectly and out of sync the subtitles in streaming services like Hulu or Amazon Video. Subtitles dialogs appear around ten seconds before the actual audio plays that dialog. It doesn't occur when I am using Chrome.

Thanks.

Asked by dmbaber 10 months ago

Answered by dmbaber 10 months ago

  • حُلّت
  • المُؤرشفة

Automatic dynamic theme to show name of profile in browser header

I use multiple Firefox profiles. I would like an EASY way to see the name of the Firefox profile somewhere on the screen. The attached image shows a theme I created whi… (read more)

I use multiple Firefox profiles. I would like an EASY way to see the name of the Firefox profile somewhere on the screen. The attached image shows a theme I created which shows the name of the profile on the menu bar. I forgot exactly how I did it, but it involved typing this in a Word document, taking a screenshot and turning it into a jpeg, crop the image, upload it as a theme, then test it. Repeated several times until I got it to work.

I don't need or want fancy graphics here. I just need the name of the Firefox profile to appear somewhere in the window. In my fantasy world, there would be an option to include this name in the window Title bar.

Asked by dan400man1 10 months ago

Answered by Paul 10 months ago

  • حُلّت
  • المُؤرشفة

Firefox crashes after Pasting text or Paste and go.

Firefox crashes whenever I paste something in search bar. Even if its one word only. It has been like 3 months now and no help. It even crashes in troubleshooting mode. I… (read more)

Firefox crashes whenever I paste something in search bar. Even if its one word only. It has been like 3 months now and no help. It even crashes in troubleshooting mode. I have reinstalled and refreshed, but it helped only for a day.

Thanks in advance.

Asked by Amandeep Singh 10 months ago

Answered by Amandeep Singh 10 months ago

  • حُلّت
  • المُؤرشفة

"The server encountered an error", unable to view activity or file owner information in google drive

I am currently unable to view any file activity or ownership information in Google Drive in a shared folder. I have tried the following troubleshooting steps: Quit an… (read more)

I am currently unable to view any file activity or ownership information in Google Drive in a shared folder. I have tried the following troubleshooting steps:

  • Quit and reopen firefox
  • Relaunched firefox in safe mode/extensions disabled
  • Cleared cookies
  • Tried in other browsers (works in Librewolf, Brave and Chromium; doesn't work in any Firefox browser (Nightly, beta, standard)

Asked by Zander 11 months ago

Answered by Zander 11 months ago

  • حُلّت
  • المُؤرشفة

Text glitching only in Firefox

I've been having a weird issue with my text glitching only in my Firefox browser. Initially I thought it might be my monitor but then I realized the issue only presents i… (read more)

I've been having a weird issue with my text glitching only in my Firefox browser. Initially I thought it might be my monitor but then I realized the issue only presents itself in my Firefox browser. Literally no other program is affected.

I've done a reset, I've uninstalled and done a clean install, I've deleted all Firefox files and re-downloaded the browser. The issue immediately pops up again.

Asked by janna.g.landry 10 months ago

Answered by janna.g.landry 9 months ago

  • حُلّت
  • المُؤرشفة

bring the security.csp.enable option back at least at the developer version of FF

Dear Sirs, today i did lockout everybody on a test server of a web application while playing with CSP on the server side. no modern browser was able to open the page any… (read more)

Dear Sirs,

today i did lockout everybody on a test server of a web application while playing with CSP on the server side. no modern browser was able to open the page anymore. but the real problem was that the configuration interface was also not accessable anymore.

the option security.csp.enable is long gone since FF 99 and i had to ""downgrade to FF 98"" to be able to access the misconfigured server.

please enable that security.csp.enable in about:config back again at least for the development version of FF. someone might need it. other options are to install risky extensions and i would like to avoid that in the future.

Yours

E

Asked by vedro 10 months ago

Answered by Terry 10 months 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 10 months ago

Last reply by vinubangs 10 months ago

  • المُؤرشفة

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

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

Last reply by Greymagic27 10 months ago

  • حُلّت
  • المُؤرشفة

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

  • المُؤرشفة

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

  • المُؤرشفة

Setting Printer Potrait or Landscape

Good afternoon, hi admin, regarding the latest update, please for the printer settings for landscape and portrait to be displayed on the right as before and permanently f… (read more)

Good afternoon, hi admin, regarding the latest update, please for the printer settings for landscape and portrait to be displayed on the right as before and permanently for the choice of portrait and landscape settings. because we are constrained by the print settings for PDF, we have to go to the printer settings all the time. please help for the next update. thank you for your concern.

Asked by purchase.job22 10 months ago

Last reply by jscher2000 - Support Volunteer 5 months ago

  • حُلّت
  • المُؤرشفة

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

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

Answered by Daniele Mancino 10 months ago

  • حُلّت
  • المُؤرشفة

PROBLEM ACCESSING MY GMAIL VIA FIREFOX

PROBLEM ACCESSING MY GMAIL VIA FIREFOX My wife and I both have (separate) Gmail accounts – we access them on Win 10 computers, using Firefox. I have set up two Firefox … (read more)

PROBLEM ACCESSING MY GMAIL VIA FIREFOX

My wife and I both have (separate) Gmail accounts – we access them on Win 10 computers, using Firefox. I have set up two Firefox “buttons” (one for each Gmail address), both of which worked perfectly – until today!

Now, when I click on EITHER of the two Gmail “buttons” I get ONLY my wife’s email! I CAN access my own Gmail with either my Android phone OR using the Edge browser however!

So far as I can see, nothing has changed with the two URLs (a different one for each button) – I’ve tried setting up a ‘new’ button from scratch and just using 'my' URL in the search bar but both still give the same result – my wife’s email account!

HELP!!

Asked by goshjm 10 months ago

Answered by goshjm 10 months ago

  • المُؤرشفة

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

  • المُؤرشفة

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

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

Last reply by everestpaintballer 10 months ago