Prikaz pitanja označenih s: Prikaži sva pitanja

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… (saznaj više)

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 prije 45 minuta

How do I convince Firefox on macOS to take an internal and .local address instead of search?

When I enter either of these internal addresses, it fails: http://dfa shows: Hmm. We’re having trouble finding that site. We can’t connect to the server at dfa. http://… (saznaj više)

When I enter either of these internal addresses, it fails:

http://dfa shows: Hmm. We’re having trouble finding that site. We can’t connect to the server at dfa.

http://rpi-m92a-ad82:3003/ Hmm. We’re having trouble finding that site. We can’t connect to the server at rpi-m92a-ad82.

Both issues are similar, but neither work as expected.

dfa is an alias for a longer name such as dfa.int.example.com. The local DNS (/etc/resolv.conf) will reply with the correct IP if asked for "dfa" but not "dfa." due to the dot forcing the Fully Qualified Domain Name to be "dfa." only. We wish to opt to leave off the rest of the url.

For the raspberry pi, it is a mDNS. So doing "rpi-m92a-ad82.local" works. But this used to work long ago, and ended 10 or 20 updates ago as best as I can remember.

How can I convince Firefox to query DNS, then query mDNS, and if both fail perform a search?

Asked by snotty-05.flotsam 4 sata prije

Recent activity

My recent activity rows have stopped updating. Before whenever I started a new show on a streaming website they would update and have the new show I was watching in the r… (saznaj više)

My recent activity rows have stopped updating. Before whenever I started a new show on a streaming website they would update and have the new show I was watching in the recent activity panel and that made it a lot easier for me to reopen the website and resume watching my shows but for some reason they wont update now and previous shows keep showing up.

Asked by neensmalik 7 sati prije

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… (saznaj više)

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 7 sati prije

List box contents do not appear in alphabetical order

I have an issue when displaying the contents of a list box, it contains a list of countries and does not display in alphabetical order in Firefox, but does display correc… (saznaj više)

I have an issue when displaying the contents of a list box, it contains a list of countries and does not display in alphabetical order in Firefox, but does display correctly in other browsers such as safari, chrome and edge. Is there any configuration to resolve this issue?

Asked by frazer1 7 sati prije

Can't print from Pocket to Google Drive when using Firefox

When using Chrome, I can easily save a website article on Google Drive from Pocket by printing as a pdf. However, when I try to perform the same activity when using Fire… (saznaj više)

When using Chrome, I can easily save a website article on Google Drive from Pocket by printing as a pdf. However, when I try to perform the same activity when using Firefox, I get the dialogue box below. I really want to make Firefox my default browser but not being able to save from Pocket (or the web) to Google Drive when in Firefox is a deal breaker. Any suggestions would be appreciated!

Asked by s.atherton 11 sati prije

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… (saznaj više)

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 12 sati prije

Sync problem after a clean windows install

Hi! My windows suddenly encountered problems and I had to reinstall it, but after reinstalling win and Firefox and logging into my account, none of my data loaded to the … (saznaj više)

Hi! My windows suddenly encountered problems and I had to reinstall it, but after reinstalling win and Firefox and logging into my account, none of my data loaded to the new Firefox. Please help, for me, loosing that much of bookmarks and passwords, is just like a matter of death and life.

Asked by Mohsen prije 4 dana

Last reply by Mohsen 13 sati prije

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 ?… (saznaj više)

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 14 sati prije

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: <title>WebSocket Chat</title> &l… (saznaj više)

Hi, I am working on websocket with javascript and php. Let me share my code here:

index.php is:

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

    
    
      WebSocket Chat
      
<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>


server.php is:

   
   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 14 sati prije

Trojan Warning from windows defender

Im very worried, today (8th of june) I got a trojan warning from windows defender. the contamination affected this file path : file: C:\Users\(my name)\AppData\Roa… (saznaj više)

Im very worried, today (8th of june) I got a trojan warning from windows defender. the contamination affected this file path :

file: C:\Users\(my name)\AppData\Roaming\Mozilla\Firefox\Profiles\owhmdxi4.default-release\extensions\langpack-en-US@firefox.mozilla.org.xpi

below i have a picture of the addons i was using at the time and also the virus report.

Asked by Ville prije 1 dan

Last reply by Ville 15 sati prije

Various Websites give SSL_ERROR_NO_CYPHER_OVERLAP

In the last few days, I have noticed that a number of websites are throwing me SSL_ERROR_NO_CYPHER_OVERLAP errors. Most websites, particularly more modern websites, seem … (saznaj više)

In the last few days, I have noticed that a number of websites are throwing me SSL_ERROR_NO_CYPHER_OVERLAP errors. Most websites, particularly more modern websites, seem to not have this issue. As some more professional examples, www.twitch.tv and www.dndbeyond.com throw this error. I have tried setting temporarily TLS version fallback limit and min to 0, with no change. I'm not really sure how to go about debugging what cyphers these websites do support and why they are throwing these errors. Any help on where to start would be greatly apprecaited.

Asked by acesoyster prije 2 dana

Last reply by acesoyster 16 sati prije

For several days now, FF has been launching on its own, each time opening what seem to be an MSN news page

It even happened while I was playing MMOs, making it crash. I am using Zone Alarm Antivirus + Firewall, which does not find any malware on my computer. I NEVER use MSN n… (saznaj više)

It even happened while I was playing MMOs, making it crash.

I am using Zone Alarm Antivirus + Firewall, which does not find any malware on my computer. I NEVER use MSN news, so for the time being I placed the site on block list.

I am very concerned with FF (up to date) launching on its own, regardless which site it opens; that could be a breach of security in FF code itself.

Asked by serenity_guild 19 sati prije

Your Firefox is broken, 6-9-2023

So slow I almost think MSFT AI has invented a thing that trips you up... After all, they're the fallback. Just saying. I have MSFT 11 on a strong Nvidia gaming laptop. I… (saznaj više)

So slow I almost think MSFT AI has invented a thing that trips you up... After all, they're the fallback. Just saying.

I have MSFT 11 on a strong Nvidia gaming laptop. It's a fast machine. Once Firefox is open everything works fine and fast. It's just the opening.

Thank you, Liah

Asked by Liah'O'Marsh 20 sati prije

Firefox Dev Edition 115.0b2 ignores `browser.link.open_newwindow.override.external` pref on OSX

Firefox DE set as the default browser. When clicking an external link, a new window is opened with one tab, the URL address bar is blank. Restarting in troubleshooting … (saznaj više)

Firefox DE set as the default browser. When clicking an external link, a new window is opened with one tab, the URL address bar is blank. Restarting in troubleshooting mode does exhibits the same behaviour.

If anyone else can duplicate this issue I will file a Bugzilla report.

Asked by neil100 prije 1 dan

Last reply by neil100 21 sat prije

I WANT MY ORIGINAL FIREFOX NOT THIS CHANGE

I WOULD LIKE TO HAVE MY ORIGINAL FIREFOX THUNDERBIRD BACK ON MY COMPUTER. I AM ELDERLY AND DO NOT WANT A LOT OF DIFFERENT ITEMS OR CHANGES. I HAD NO PROBLEM USING WHAT I … (saznaj više)

I WOULD LIKE TO HAVE MY ORIGINAL FIREFOX THUNDERBIRD BACK ON MY COMPUTER. I AM ELDERLY AND DO NOT WANT A LOT OF DIFFERENT ITEMS OR CHANGES. I HAD NO PROBLEM USING WHAT I HAVE HAD FOR YEARS !!!!!!!!!

Asked by pjmarrs prije 1 dan

Browser wont load

Hi Good Morning. For some reason, my browser will not load -- I get an error message saying "unable to connect." I've been using this browser for years....never had a p… (saznaj više)

Hi Good Morning. For some reason, my browser will not load -- I get an error message saying "unable to connect." I've been using this browser for years....never had a problem. My Google and Microsoft browsers work....so this is Mozilla issue. Please help as I prefer to use Firefox.

You can reach me at [email removed from public forum]

Thanks, Mitch

Asked by md202007 prije 1 dan