Kukhonjiswa imibuzo ethegiwe: Veza yonke imibuzo

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… (funda kabanzi)

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 1 ihora elidlule

SSL_ERROR_BAD_CERT_DOMAIN only when click link, but not when type URL

When I click a link to https://drive-image.com, Firefox gives me the security error: Warning: Potential Security Risk Ahead Firefox detected a potential security threat … (funda kabanzi)

When I click a link to https://drive-image.com, Firefox gives me the security error:

Warning: Potential Security Risk Ahead Firefox detected a potential security threat and did not continue to drive-image.com. Firefox does not trust this site because it uses a certificate that is not valid for drive-image.com. The certificate is only valid for the following names: secure.r-tt.com, www.drive-image.com, www.r-studio.com, www.r-tt.com, www.r-undelete.com, www.r-wipe.com

Error code: SSL_ERROR_BAD_CERT_DOMAIN

But here's what makes it so bizarre: Clicking the link gives the error, but if I type that URL into the address bar, it works perfectly fine. I can even right-click the link > Open Link in New Tab (or Window) and it works fine. I originally found this because I searched "r drive image" in DuckDuckGo and that link was the first result. But it also happens in a very simple test HTML page I wrote, which just contains a link to that page.

When drive-image.com is loaded, it immediately redirects, so that the page actually shown is https://www.drive-image.com/.

Some more info:

  • This is on my laptop (Windows 10 Home 64-bit), in Firefox (up to date, 113.0.2 (64-bit)).
  • It also happens in latest Mullvad Browser, which is based on Firefox codebase.
  • Also happens on my other computer, running Windows 10 Home 64-bit, in Firefox and Mullvad Browser.
  • I created a new profile and it still happens using that.
  • I turned off uBlock and Ghostery extensions, it still happens.
  • I added an exception in Firefox Settings: Enhanced Tracking Protection for drive-image.com and it still happens.
  • It does not happen in Chrome or Edge.
  • It happens with my VPN connected or disconnected, on both computers, which use different VPN servers when connected.

I've gotten the infrequent security error clicking what looks like a legitimate link before and shrugged it off, going elsewhere. But this time knowing the site was legit, I messaged their support and eventually ended up at this point after much investigating, and suspect something serious is amiss.

Images of the error are attached, along with an image of my test page's text if that matters (since I can't attach a text file).

Does anyone else get this error by clicking a link to that site? Is this a Firefox bug/issue, or an actual problem with their website/certificate?

Asked by timepilot3000 3 amahora adlule

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.… (funda kabanzi)

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 3 amahora adlule

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… (funda kabanzi)

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 5 amahora adlule

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 … (funda kabanzi)

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 3 ezinsukwini ezidlule

Last reply by Mohsen 6 amahora adlule

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… (funda kabanzi)

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 8 amahora adlule

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… (funda kabanzi)

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 13 amahora adlule

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 … (funda kabanzi)

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 21 amahora adlule

Can not sign to Quick Books starting about 3pm Wednesday 6/8/23.

I used Firefox to log into QB online morning of 6/8/23. Afternoon of same day I was kicked off and unable to log back in. This morning I contacted QB and we were able t… (funda kabanzi)

I used Firefox to log into QB online morning of 6/8/23. Afternoon of same day I was kicked off and unable to log back in. This morning I contacted QB and we were able to log in to QB online from my computer on another browser. I updated FF today and still can not log into QB. How do I log into QB online using Firefox like I have done for years ? James Fletcher

Asked by James 1 usuku oludlule

Audio stops playing when switching tabs or alt tabbing

I saw an other article about the same possible but they had a problem with an extension but I dont have that extension but still have the same problem. Whenever i watch t… (funda kabanzi)

I saw an other article about the same possible but they had a problem with an extension but I dont have that extension but still have the same problem. Whenever i watch twitch or youtube and i alt tab or switch tabs my audio and video stops playing.

Asked by Davvy 6 ezinsukwini ezidlule

Last reply by Davvy 1 usuku oludlule

Bookmarks sorted by date when pressing "control" + "b"

I know there are ways , with more clicks or longer shortcuts to get to some folders but this is the main and most easily accessible way to get to my bookmarks. I know thi… (funda kabanzi)

I know there are ways , with more clicks or longer shortcuts to get to some folders but this is the main and most easily accessible way to get to my bookmarks. I know this has been discussed in some older posts but they are all archived so I can't ask any questions there. Sorting by name, for me, is quite inconvenient as sometimes the bookmarks title isn't immediately, easily remembered. Thanks.

Asked by piedblues01 2 ezinsukwini ezidlule

Last reply by piedblues01 1 usuku oludlule

bahn.de login broken, "503 Service Unavailable"

Hi all, I'm running 113.0.2 (64-Bit) on Ubuntu Focal. I just wanted to log into my bahn.de account, got prompted with a hcaptcha which I correctly answered and then go… (funda kabanzi)

Hi all,

I'm running 113.0.2 (64-Bit) on Ubuntu Focal.

I just wanted to log into my bahn.de account, got prompted with a hcaptcha which I correctly answered and then got an "503 Service Unavailable" error. The problem is reproducible each time I try. It was working fine when I last tried about 2 weeks ago. I tried disabling addons and tracking protection, deleted cache + cookies + login data as well as cookie files, reset Firefox - no change. Fun fact: The login is working without issues and interestingly even without captcha showing up in Opera and Epiphany (Gnome web browser).

Any suggestions for debugging would be very much welcome. Any hint on why the hcaptcha shows up in Firefox and not in Opera and Epiphany is much appreciated, too.

Thanks, r.

Asked by roots1 5 ezinsukwini ezidlule

Last reply by roots1 1 usuku oludlule

Just got updated to ver 114 and have problems with magnified screen.

Win 10, FireFox ver 114 just got update on 6/6. Been using FireFox for years w/o any problems until this latest update. Ever since, "Twitter.com" and "Tweetdeck.Twitter… (funda kabanzi)

Win 10, FireFox ver 114 just got update on 6/6.

Been using FireFox for years w/o any problems until this latest update.

Ever since, "Twitter.com" and "Tweetdeck.Twitter.com" both have super magnified screens. All other ones are slightly magnified.

I have 5 columns in Tweetdeck that used to show up completely but only 4 show now--see attached. When I log out of Tweetdeck it takes me to a screen that says "Page isn't redirecting properly" and I can't type the URL and get back to a normal screen--instead it takes me back to my already magnified and logged in screen.

How in the heck can I correct this???? It's driving me crazy!

Thanks for any help you can provide!

Asked by phycoinsc3 1 usuku oludlule

Cannot Post to Forum

We had a power failure last night. Now i cannot post to Historum (although I can read it). Error message says "Oops! We ran into some problems. Please try again later. … (funda kabanzi)

We had a power failure last night. Now i cannot post to Historum (although I can read it). Error message says "Oops! We ran into some problems. Please try again later. More error details may be in the browser console." I've been on this for 2+ hours, have restarted and cannot understand console message.

Asked by ness2 1 usuku oludlule

Form <input> tags misinterpreted in firefox, not IE , Chrome

[Yesterday 12:57 PM] Mills, Ed Our HTML for has this: <input type='hidden' id='dir' name='dir' value='datasets/open/2023-06-07_09:54:40'> <input type='hidden' i… (funda kabanzi)

[Yesterday 12:57 PM] Mills, Ed Our HTML for has this:

<input type='hidden' id='dir' name='dir' value='datasets/open/2023-06-07_09:54:40'> <input type='hidden' id='fileCount' name='fileCount' value='0'>

When posted , both IE and Chrome have: $vars{dir} = 'datasets/open/2023-06-07_09:54:40' $vars{fileCount}=0

BUT, Firefox 114.0 has only this: $vars{dir} = 0

Since it appeared that firefox was somehow "merging" the two tags into one, I reversed the order to this to see if the new first var would post. But instead, now this works 100% fine: <input type='hidden' id='fileCount' name='fileCount' value='0'> <input type='hidden' id='dir' name='dir' value='datasets/open/2023-06-07_09:54:40'>

The system is working again. chatAI suggested a few things like updating firefox (I did) , but nothing they suggested worked. Only my reversal worked.


Thoughts?

Asked by spydox 1 usuku oludlule

website doesnt work on the newest version of firefox why is this

Our Company website www.sharetrackin.com Doesnt display correctly in the new version of firefox. Up to version 113 it displays perfectly but version 114 the logo does… (funda kabanzi)

Our Company website

www.sharetrackin.com

Doesnt display correctly in the new version of firefox.

Up to version 113 it displays perfectly but version 114 the logo does display correctly and the ssl doesnt seem to work

Please check the url if needed

Asked by rowlesgeorge3 1 usuku oludlule

Firefox window blinks white when playing video

Hi When I'm watching videos on Firefox especially while on YouTube, the whole browser turns white for a few seconds. It sometimes pauses the whole video but almost every … (funda kabanzi)

Hi When I'm watching videos on Firefox especially while on YouTube, the whole browser turns white for a few seconds. It sometimes pauses the whole video but almost every time the audio is still playing and I can't see the video. I looked at other similar problems but turning on and off hardware acceleration does nothing. I have the latest GPU drivers and I'm using a laptop.

Asked by Pouek_ 1 usuku oludlule