TLS Errors When Launching Webinars

In recent attempts to join a few webinars I am now getting more and more "TLS Errors." I have noticed that many of the solutions to this problem involve actions that do n… (Lesen Sie mehr)

In recent attempts to join a few webinars I am now getting more and more "TLS Errors." I have noticed that many of the solutions to this problem involve actions that do not solve the problem but create larger issues. Do you have a solution that works safely? I am forced to use Windows 7 unfortunately due to work systems and a long story. I think this is my primary problem but I have to keep using it until the bitter end with this PC.

I appreciate your kind help. Thanks, Clay

Gefragt von claytudor vor 3 Wochen

Letzte Antwort von cor-el vor 3 Wochen

Embedded videos not playing after Firefox update, screen turns dark green

My Firefox browser recently updated to 115.11.0esr (64-bit), and now embedded videos won't play, I can initially see a picture, but instead of starting to play, the scree… (Lesen Sie mehr)

My Firefox browser recently updated to 115.11.0esr (64-bit), and now embedded videos won't play, I can initially see a picture, but instead of starting to play, the screen turns dark green and I can only hear the sound. This happened once before recently, but then it seemed to fix itself after a week or two. How can this be fixed?

Gefragt von BMC vor 4 Tagen

Letzte Antwort von cor-el vor 4 Tagen

loss of open tabs and windows

Today while using firefox all my open tabs and windows crashed. Due to the situation, I had to restart my computer because everything was stuck. When it restarted I could… (Lesen Sie mehr)

Today while using firefox all my open tabs and windows crashed. Due to the situation, I had to restart my computer because everything was stuck. When it restarted I couldn't restore the previous session so I used various methods to restore it but I still can't restore the windows and tabs that were open today. I would like you to restore my session from before the failure today.

Gefragt von mateuszzadrozny11 vor 5 Tagen

Letzte Antwort von cor-el vor 4 Tagen

firefox PDF editor losing changes

Firefox seems to forget edits made to text boxes. I was reading a large pdf and adding notes to previously made text boxes. I thought I must be going crazy as I saw there… (Lesen Sie mehr)

Firefox seems to forget edits made to text boxes. I was reading a large pdf and adding notes to previously made text boxes. I thought I must be going crazy as I saw there was no notes I thought I had already made multiple times so I tested it. I edited a text box, scrolled a bit and continued browsing on another monitor. Checked in a minute and boom edit gone. If anyone has a solution I'd appreciate it as I have been using Firefox PDF editor for a bit and quite liked it until now.

Gefragt von rqcniqsobvdsrxhjet vor 5 Tagen

Letzte Antwort von cor-el vor 4 Tagen

Can't close a tab or a separate window without closing Firefox, and only then I need taskmgr

My Firefox can only be shut down by TaskManager, or by clicking on the three horizontal bars and then dropping to exit. So I can't close any single tab 'without closing … (Lesen Sie mehr)

My Firefox can only be shut down by TaskManager, or by clicking on the three horizontal bars and then dropping to exit.

So I can't close any single tab 'without closing them all', that's the real annoyance. I also can't close any individual windows I opened instead of a new tab, without closing all tabs and windows. Finally the classic windows ALT+F4 closure that's built into Windows doesn't close Firefox, and if it did I suspect ALT+F4 would close them all. Bottom line Firefox is seriously close-resistant.

What precipitated this was I allowed a previous Firefox update to download-install, and it tanked my performance, I figured your team would fix that issue, but in the meantime what I did was uninstall that version and reinstall the version I had been running before that update. Tilt! That action resulted in the close windows or tabs problem.

Summary: I am using the latest version now, but with it came this "can't close any individual tab without closing them all, and can only close even then except by Taskmanager or by clicking the 3 horizontal bars then dropping to Exit which also closes all Firefox tabs and Windows. This problem has surfaced before in this support, and none of the solutions worked, probably because I got to this place uniquely. I did read before submitting this.

Gefragt von Dean vor 3 Wochen

Letzte Antwort von cor-el vor 3 Wochen

recover passwords file

Hi, i locked my pc few days ago due to smart windows not recognizing my ( correct password ) repeatedly. anyway, im still trying to find a way to solve this issue. now, … (Lesen Sie mehr)

Hi, i locked my pc few days ago due to smart windows not recognizing my ( correct password ) repeatedly. anyway, im still trying to find a way to solve this issue.

now, i created an admin windows account get access to my old user files, found the bookmarks file. the only thing left for me now is the passwords file.i did not a Firefox online account before today

the only way currently if i did not solve the wind10 login issue is the find the passwords file physically just like i did with the bookmarks file.


can anyone help with this ??


thanks

Gefragt von OMVW vor 3 Wochen

Letzte Antwort von cor-el vor 3 Wochen

error messagfe

when I entered this string - chrome://pippki/content/exceptionDialog.xul - I got a 'file not found' message. Is there another way to access that? I am trying to get to … (Lesen Sie mehr)

when I entered this string - chrome://pippki/content/exceptionDialog.xul - I got a 'file not found' message. Is there another way to access that? I am trying to get to https//mlb.tickets.com and get this message: The page you are trying to view cannot be shown because the authenticity of the received data could not be verified.

Gefragt von milomorai01 vor 1 Monat

Letzte Antwort von cor-el vor 1 Monat

I want to write an addon firewall but it fails

#!/bin/bash # Verzeichnis erstellen mkdir FoxyAddOnFirewall cd FoxyAddOnFirewall || exit # package.json erstellen cat <<EOF > package.json { "title": "Foxy A… (Lesen Sie mehr)

#!/bin/bash

# Verzeichnis erstellen
mkdir FoxyAddOnFirewall
cd FoxyAddOnFirewall || exit

# package.json erstellen
cat <<EOF > package.json
{
  "title": "Foxy AddOn Firewall",
  "name": "foxy-addon-firewall",
  "description": "A Firefox addon to control internet access for other addons",
  "author": "Your Name",
  "version": "1.0.0",
  "license": "MIT"
}
EOF

# background.js erstellen
cat <<EOF > background.js
var permissionManager = Components.classes["@mozilla.org/permissionmanager;1"]
                        .getService(Components.interfaces.nsIPermissionManager);

// Addon-Liste abrufen
function getAllAddons() {
    var {AddonManager} = Components.utils.import("resource://gre/modules/AddonManager.jsm", {});
    return new Promise(function(resolve, reject) {
        AddonManager.getAllAddons(function(addons) {
            resolve(addons);
        });
    });
}

// GUI aktualisieren
function updateUI() {
    getAllAddons().then(function(addons) {
        var addonList = document.getElementById("addon-list");
        addonList.innerHTML = ""; // Zurücksetzen der Liste

        addons.forEach(function(addon) {
            var listItem = document.createElement("li");
            listItem.textContent = addon.name;
            
            var blockButton = document.createElement("button");
            blockButton.textContent = "Block";
            blockButton.addEventListener("click", function() {
                blockInternetAccessForAddon(addon);
            });

            listItem.appendChild(blockButton);
            addonList.appendChild(listItem);
        });
    });
}

// Internetzugriff für ein bestimmtes Addon blockieren
function blockInternetAccessForAddon(addon) {
    var host = addon.getResourceURI("").host;
    permissionManager.remove(host, "allAccess");
    console.log("Internetzugriff für " + addon.name + " wurde blockiert.");
}

document.addEventListener("DOMContentLoaded", function() {
    updateUI(); // GUI beim Laden der Seite aktualisieren
});
EOF

# index.html erstellen
cat <<EOF > index.html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Foxy AddOn Firewall</title>
  <link rel="stylesheet" href="style.css">
</head>
<body>
  <h1>Foxy AddOn Firewall</h1>
  <p>Welcome to Foxy AddOn Firewall!</p>

  <h2>Installed Addons:</h2>
  <ul id="addon-list">
    <!-- Addon-Liste wird hier eingefügt -->
  </ul>

  <script src="background.js"></script>
</body>
</html>
EOF

# style.css erstellen
cat <<EOF > style.css
body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  text-align: center;
}

h1 {
  color: #007bff;
}

h2 {
  margin-top: 20px;
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  margin-bottom: 10px;
}

button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}
EOF

# manifest.json erstellen
cat <<EOF > manifest.json
{
  "manifest_version": 2,
  "name": "Foxy AddOn Firewall",
  "version": "1.0",
  "description": "A Firefox addon to control internet access for other addons",
  "icons": {
    "48": "icon.png"
  },
  "permissions": [
    "management"
  ],
  "browser_action": {
    "default_popup": "index.html",
    "default_icon": "icon.png"
  }
}
EOF

# Icon herunterladen
wget -O icon.png "https://img.icons8.com/ios-filled/50/000000/firewall.png"

# Installationsanweisungen anzeigen
echo "FoxyAddOnFirewall wurde erfolgreich initialisiert!"
echo "Um das Addon in Firefox zu installieren:"
echo "1. Öffnen Sie Firefox und geben Sie 'about:debugging' in die Adressleiste ein."
echo "2. Klicken Sie auf 'Dieses Firefox installieren' unter 'Temporäre Add-ons laden'."
echo "3. Navigieren Sie zum Verzeichnis 'FoxyAddOnFirewall' und wählen Sie die 'manifest.json' Datei aus."
echo "4. Das Addon wird nun installiert und kann verwendet werden."

Gefragt von j.sobiech vor 3 Wochen

Letzte Antwort von jscher2000 - Support Volunteer vor 3 Wochen

Microsoft Windows 11 user - font size for display resolution 3456 x 2160

I have to put my face within inches of the screen and strain to see the text in Firefox browser menus, tabs, and search bars. How do I adjust the font size? I'm not a p… (Lesen Sie mehr)

I have to put my face within inches of the screen and strain to see the text in Firefox browser menus, tabs, and search bars. How do I adjust the font size?

I'm not a programmer. If I need to enter code please be pedantic about descriptions of how to do that.

Gefragt von maxjen vor 3 Wochen

Letzte Antwort von cor-el vor 3 Wochen

Amazon not working

I was using Amazon just fine a few days ago. When I tried to open an amazon link yesterday, I got the message: Secure Connection Failed. I tried updating my browser and c… (Lesen Sie mehr)

I was using Amazon just fine a few days ago. When I tried to open an amazon link yesterday, I got the message: Secure Connection Failed. I tried updating my browser and clearing my cache and cookies. Please fix

Gefragt von cherryblossomshadow3 vor 3 Wochen

Letzte Antwort von jonzn4SUSE vor 3 Wochen

Session set back to as it was 9 months ago following an unexpected restart and update.

My computer has been having some problems lately: Any rough handling might trigger the computer to shut off instantly or restart automatically. This is likely a hardware … (Lesen Sie mehr)

My computer has been having some problems lately: Any rough handling might trigger the computer to shut off instantly or restart automatically. This is likely a hardware issue, probably a loose battery or something. The Firefox-related issue is that sometimes, upon turning the computer back on, something odd happens to my browser session: It is set back to three months earlier. The recent browsing button show everything having been browsed three months ago; but when I check my history, all my most recent tabs are there. This is tedious whenever it happens, as I have to spend about an hour manually opening everything I've lost (that I want to keep) from history. If there's a way to bulk re-open a bunch of tabs, I don't know how. All that has become something of a routine annoyance (it happens maybe once every two months) but I'd gotten used to it and it wasn't really an urgent problem. Today, however, I dropped my phone on my laptop, triggering a restart and a blue screen with a message that said something like "we're cleaning things up for you." It's what usually happens when I drop something on or accidentally elbow my thinkbad. (More commonly I move my computer a little bit and it just shuts off completely, goes black.) Before this happened I was due a firefox update, and I found it had done so when I turned my computer back on. I realised immediately that I had lost some tabs, and I assumed that it was just a three month setback. Upon opening my recent browsing though, I found out with horror that I'd been set back nine months. I cannot restore from a nine month period manually. I don't have the time, energy or willpower. I'm asking here if anyone knows how to bulk restore tabs from history or how to restore my session to how it was just a few hours ago. Thanks

Gefragt von Robin Dabrowski-Haverty vor 5 Tagen

Letzte Antwort von cor-el vor 4 Tagen

I don't feel like being nice! Firefox is a POS! Websites which work in Chrome do not work in Firefox

Trying to use this site: https://www.asraymond.com/mechanical-wire-springs/compression/spec-metric-compression-springs-131626/?Imperial=false Near the top of the page on… (Lesen Sie mehr)

Trying to use this site: https://www.asraymond.com/mechanical-wire-springs/compression/spec-metric-compression-springs-131626/?Imperial=false

Near the top of the page on the right hand side you can switch from imperial to metric units. The link is set to metric values, but the search input is still using imperial dimensions (see this on the left side of the page as you scroll down) But it works in Chrome!

The is one a myriad of problems I have encountered with Firefox. My installation at home frequently stops searching. It won't perform a web search. Typically when I fire up Chrome in frustration to this constant event, Firefox starts working again. I have removed and reinstalled Firefox, but this did not solve the problem. It's my understanding the Google finances Firefox. Are these problems intentional?

Gefragt von hooflungdung vor 4 Tagen

Letzte Antwort von cor-el vor 4 Tagen

How do I dismiss a permission dialog?

Sometimes a box pops up on the screen that asks if I want to block or allow something. Sometimes I have no interest in doing either, and just want the damned dialog out o… (Lesen Sie mehr)

Sometimes a box pops up on the screen that asks if I want to block or allow something. Sometimes I have no interest in doing either, and just want the damned dialog out of my face. The page seems to work otherwise, but the stupid browser keeps the dialog over top of things, and clicking outside of it, and hitting Esc, don't make it go away. I think those actions used to work, and I think there, sensibly, used to be a dismiss option, but that seems to be absent now. There's no sense to trying to force me to make a decision I don't want to make, and doesn't even need to be made, and I want this thing to cut it out.

Gefragt von Sterrence vor 6 Tagen

Letzte Antwort von cor-el vor 4 Tagen

Facebook Images appear as Color Blocks on Facebook Since Last Week A bug?

Hello. I have an issue with Firefox. Last week Facebook stopped showing images when run on Firefox. These are in the Feed and photos, etc. I tried refreshing, clearin… (Lesen Sie mehr)

Hello. I have an issue with Firefox. Last week Facebook stopped showing images when run on Firefox. These are in the Feed and photos, etc. I tried refreshing, clearing cookies, history and cache. I changed enhanced tracking but nothing stops this. Are there any suggestions to repair this or could it be a bug? I work on Windows 10. Please help.

Thank you.

Gefragt von bessaustin1 vor 4 Tagen

Letzte Antwort von cor-el vor 4 Tagen

Poor screen resolution on extended display

I have 3 laptops all running windows 10 or 11. These all share a docking station giving access to an extended display, keyboard etc. All laptops run fine with the dockin… (Lesen Sie mehr)

I have 3 laptops all running windows 10 or 11. These all share a docking station giving access to an extended display, keyboard etc. All laptops run fine with the docking station except for one issue with the newest laptop... The screen resolution, only on firefox on the one laptop, (everything else is fine) is completly out of whack. I have tried the zoom function but no luck. I have trawled the internet but all the solutions are from 10+ years ago and refer to different versions of firefox and windows. I am not a computer geek so please dumb down any advice.

Gefragt von Simon vor 1 Monat

Letzte Antwort von cor-el vor 1 Monat

Unwanted page loads up during windows startup

The page https://www.stardock.com/products/groupy/update opens during the loading of the OS background processes. I have looked up on the windows task manager, the about:… (Lesen Sie mehr)

The page https://www.stardock.com/products/groupy/update opens during the loading of the OS background processes. I have looked up on the windows task manager, the about:config and haven't found anything related to this process.

Gefragt von raphaelfhb vor 1 Monat

Letzte Antwort von jonzn4SUSE vor 1 Monat

I recently updated to FF126 and I appear to have lost the Tabs Bar (which I had in 125). I know all about F11 and fullscreen. I may be old but I'm not totally stupid!

I have looked around the Internet for similar issues, but most of them appear to address the moronic F11 full-screen problem. I'd be grateful to know if a 'tabs bar' opti… (Lesen Sie mehr)

I have looked around the Internet for similar issues, but most of them appear to address the moronic F11 full-screen problem. I'd be grateful to know if a 'tabs bar' option remains in FF126, and if so, how to enable it. Many thanks.

Gefragt von shiroisaru vor 4 Tagen

Letzte Antwort von cor-el vor 4 Tagen