Fragen mit folgendem Schlagwort anzeigen: Alle Fragen anzeigen

Recent issue viewing my Shopify site

Hello. In the last few days when I visit my Shopify website, the pricing on my products is not visible. This is only for me, nobody else has this issue. I do not have thi… (Lesen Sie mehr)

Hello. In the last few days when I visit my Shopify website, the pricing on my products is not visible. This is only for me, nobody else has this issue. I do not have this issue on Safari, or on Firefox when I open a private browsing window. It is something to do with Firefox, but I don't want to have to open a private window every time I go to my store. Is there a solution? This has only been happening for the last few days. Thanks

Gefragt von leslie.day vor 2 Wochen

Letzte Antwort von zeroknight vor 2 Wochen

downloading a file from an insecure source

We have an electronic document management system in our company. The system is an internal system without access to the LAN. Firefox detects files downloaded from it as p… (Lesen Sie mehr)

We have an electronic document management system in our company. The system is an internal system without access to the LAN. Firefox detects files downloaded from it as potentially dangerous after the last update. Is there a way to prevent files from this website from being detected as potentially dangerous?

Gefragt von Konrad Dymczuk vor 2 Wochen

Letzte Antwort von zeroknight vor 2 Wochen

Primary pass work

I tried to delete my primary password online, but system would not allow me to do so. I have exhausted all avenues to seek help, but to no avail. Any assistance would … (Lesen Sie mehr)

I tried to delete my primary password online, but system would not allow me to do so. I have exhausted all avenues to seek help, but to no avail. Any assistance would be greatly appreciated. Tmg3842@yahoo.com

Gefragt von tmg3842 vor 2 Wochen

Letzte Antwort von cor-el vor 2 Wochen

unwanted background connection while starting mozilla firefox browser

Hello, I like using Firefox browser every day. After installing and running Avast antivirus protection (program version : 24.3.6108 (build 24.3.8975.832)), Avast no… (Lesen Sie mehr)

Hello,

I like using Firefox browser every day. After installing and running Avast antivirus protection (program version : 24.3.6108 (build 24.3.8975.832)), Avast notification always show this message every time I start up Firefox : please check the uploaded images : FPA Scam.jpg.

I already checked the extenstion, the Settings, and the Advance Settings of Firefox browser. I'd like to know if there is any parameter related to engine.forexpeacearmy.com and it is enabled. Unfortunately, I can't found any related parameters.

So, I decide to contact Firefox support to find out what happen to my Firefox browser, why it always call the forexpeacearmy site at the start up, and finally I want to remove it. Because I'm affraid it could be some kind of trojans / malwares and put my laptop into risks.

Kindly need your advise. Thank you.

Kind regards, Gideon

Gefragt von gidhsk vor 1 Woche

Letzte Antwort von zeroknight vor 1 Tag

Firefox is blocking my own website

How can I get access to my own site again? I have been able to access joycefitch.com for years but today I can no longer access it from Firefox. … (Lesen Sie mehr)

How can I get access to my own site again? I have been able to access joycefitch.com for years but today I can no longer access it from Firefox.

Gefragt von joyce.fitch vor 6 Tagen

Letzte Antwort von cor-el vor 6 Tagen

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 1 Woche

Letzte Antwort von jscher2000 - Support Volunteer vor 1 Woche

White screen in Firefox

There are a few websites (e.g., https://thehermitagehotel.com/) that show up as a white screen (see attached) when I visit them from Firefox using my usual settings, but … (Lesen Sie mehr)

There are a few websites (e.g., https://thehermitagehotel.com/) that show up as a white screen (see attached) when I visit them from Firefox using my usual settings, but show up correctly if I use Firefox in private browsing mode. Turning off enhanced tracking protection does not resolve the problem. My browser privacy in Settings is set to "Custom" with everything checked, but changing to Standard and reloading the site does not fix the issue. As I noted above, the only thing that works is to open the site in private browsing mode. Most sites work fine. This problem is limited to 2-3 websites. My version of Firefox is 125.0.1 .

Gefragt von ellad.tadmor vor 5 Tagen

Letzte Antwort von cor-el vor 5 Tagen

What and where is my Security Key and how do I touch it?

Please see the attached image. Firefox believes I have a security key. What is a security key? Where do I find it? Why does Firefox think I have one? And why is the… (Lesen Sie mehr)

Please see the attached image.

Firefox believes I have a security key.

What is a security key? Where do I find it? Why does Firefox think I have one?

And why is there no helpful information to explain this confusing UX?

Gefragt von kurrent93 vor 2 Wochen

Letzte Antwort von zeroknight vor 2 Wochen

New primary password not accepted

I had to reset my primary password. Now the new password is not being accepted. And I keep getting a pop-up asking for the password. What can I do to have my password … (Lesen Sie mehr)

I had to reset my primary password. Now the new password is not being accepted. And I keep getting a pop-up asking for the password. What can I do to have my password accepted?

I already tried to un-check "use primary password" in settings but cannot accomplish that with a password that is rejected.

Gefragt von brooklynseltzer vor 1 Woche

Letzte Antwort von cor-el vor 1 Woche

Wyłączenie blokady reklam

Dzień dobry, W mojej przeglądarce chciałabym skorzystać z czatu GPT, ale pojawia się komunikat, że żeby skorzystać muszę wyłączyć blokadę reklam. Szukałam takiego czegoś … (Lesen Sie mehr)

Dzień dobry, W mojej przeglądarce chciałabym skorzystać z czatu GPT, ale pojawia się komunikat, że żeby skorzystać muszę wyłączyć blokadę reklam. Szukałam takiego czegoś w ustawieniach i firefox support, ale nie znalazłam nic co by pomogło w wyłączeniu blokady reklam. Czy mógłby mi ktoś pomóc i pokierować jak mogłabym wyłączyć blokadę reklam? Jeśli tak, byłabym wdzięczna.

Proszę o szybką odpowiedź

Pozdrawiam Lena Cieślak

Gefragt von Lena Cieślak vor 2 Wochen

Letzte Antwort von cor-el vor 2 Wochen

How can i update my Mozilla Firefox

I trust this message finds you well. I am currently using Mozilla Firefox as my preferred web browser and I'm interested in ensuring that I have the latest version instal… (Lesen Sie mehr)

I trust this message finds you well. I am currently using Mozilla Firefox as my preferred web browser and I'm interested in ensuring that I have the latest version installed for optimal performance and security.

Could you provide a step-by-step guide on how to update Mozilla Firefox to the latest version? I'm curious about the frequency of updates and whether the process varies for different operating systems I'm using windows.

Additionally, I'd like to understand if there are any precautions I should take before initiating the update, such as saving bookmarks or ensuring compatibility with installed extensions.

Furthermore, are there any notable features or improvements in the latest version that I should be aware of? I want to make the most of the browser's capabilities and stay informed about any enhancements.

Thank you in advance for your assistance. I appreciate your expertise in guiding me through the Firefox update process.

Best regards,

Gefragt von Karla withak vor 5 Monaten

Letzte Antwort von Paul vor 5 Monaten

Decryption tool for passwords in Firefox

Back in November 2023 I had the misfortune of a software engineer not doing his job correctly and he reinstalled the OS on my laptop instead of repairing some software th… (Lesen Sie mehr)

Back in November 2023 I had the misfortune of a software engineer not doing his job correctly and he reinstalled the OS on my laptop instead of repairing some software that wasn't functioning correctly. Mercifully, I have had Microsoft support working on recovering my data, which has proved a tremendous task. 4 months and counting.


We have now finally managed to recover my passwords for my browsers, but they are encrypted. Microsoft Support have therefore asked if Mozilla do a decryption tool as they cannot open the file without it being decrypted first. If I was using Microsoft Edge, they would have been able to assist as that is a Microsoft product, but as Firefox is a third party application, they've asked for assistance. By the way, these are NOT scammers or hackers 'helping' me, but Microsoft support and I get everything emailed about our support etc.

Thanks in advance.

Gefragt von darrenallen73 vor 2 Monaten

Letzte Antwort von TechHorse vor 1 Woche

Firefox Default Browser Agent

My Windows Task Scheduler contains an entry called "Firefox Default Browser Agent". If I delete it, it returns. If I disable it, it re-enables itself. Can't be modified e… (Lesen Sie mehr)

My Windows Task Scheduler contains an entry called "Firefox Default Browser Agent". If I delete it, it returns. If I disable it, it re-enables itself. Can't be modified either. How do I turn it off permanently?

I already have telemetry and automatic updates both turned off.

In about:config default-browser-agent.enabled is set to false

Gefragt von mokry9999 vor 5 Monaten

Letzte Antwort von zeroknight vor 5 Monaten

Intermittent Master Password Recognition Issue with External Keyboard on Firefox for Ubuntu

Hello, I've encountered a recurring issue with Firefox on Ubuntu where my master password is sporadically not recognized when typed using my external wireless keyboard. … (Lesen Sie mehr)

Hello,

I've encountered a recurring issue with Firefox on Ubuntu where my master password is sporadically not recognized when typed using my external wireless keyboard. This problem does not occur consistently but is particularly frustrating when it does, as it forces me to switch to my laptop's keyboard for input. I'm certain the password is entered correctly; after multiple careful attempts (3-5 times), the issue persists, leading to unnecessary stress and inconvenience.

    • Environment:**

- **Operating System:** Latest version of Ubuntu - **Hardware:** Dell Latitude laptop with a Contour external wireless keyboard, connected through a Dell docking station. This setup is shared with another laptop (HP) via the docking station.

    • Observations:**

- The issue seems to occur sporadically and is not reproducible on demand, adding to the frustration. - It has happened notably on the first login attempt after the computer's first boot of the day. - On one occasion, the problem led me to change my master password under the mistaken belief it had been compromised.

    • Impact:**

This intermittent recognition issue disrupts my workflow and significantly affects my user experience with Firefox. The necessity to switch input methods and the initial misinterpretation of the problem as a security concern are particularly concerning.

I hope this detailed feedback assists in identifying and resolving the issue. Thank you for your attention to this matter Firefox.

Sincerely, Daniel

Gefragt von Daniel vor 2 Monaten

Letzte Antwort von cor-el vor 2 Monaten