• Uzamknuté

Unable to update Firefox browser

I have Windows 11 and the Firefox 124.0.2 browser. I cannot update to the latest version of Firefox. I receive an error message "Failed to update". I've uninstalled an… (ďalšie informácie)

I have Windows 11 and the Firefox 124.0.2 browser. I cannot update to the latest version of Firefox. I receive an error message "Failed to update". I've uninstalled and reinstalled the browser, ran the install utility selecting update, nothing seems to work. Please help

Duplicate question, please continue in your 2nd thread: /questions/1445013

Otázku položil(a) rpm3110 Pred 2 týždňami

Microsoft login Broken

Hey all, as of the past few days when I get the prompt to enter my password on Outlook.com (And microsoft.com) and hit 'sign in' the page just reloads and nothing happens… (ďalšie informácie)

Hey all, as of the past few days when I get the prompt to enter my password on Outlook.com (And microsoft.com) and hit 'sign in' the page just reloads and nothing happens. There is no failed login message, the page just reloads like I didn't hit sign in. I have disabled all of my extensions, cleared cookies and cache, ETP... with no luck.

Works fine on Chrome for android...

I'd really like to stay with Firefox so all help seriously appreciated

Otázku položil(a) Person Guyerson Pred 6 dňami

Posledná odpoveď od zeroknight Pred 6 dňami

Addon cannot be installed because it seems to be corrupt

I've made an extention which works fine when I test it using the temp mode on firefox. When I attempt to install from file however I'm told it could not be installed as i… (ďalšie informácie)

I've made an extention which works fine when I test it using the temp mode on firefox. When I attempt to install from file however I'm told it could not be installed as it appears to be corrupt. Below are the package.json and the manifest.json:

package.json

{

 "name": "ext",
 "version": "1.0.0",
 "description": "",
 "main": "contentScript.js",
 "scripts": {
   "test": "echo \"Error: no test specified\" && exit 1"
 },
 "keywords": [],
 "author": "",
 "license": "ISC"

}


manifest.json

{

 "manifest_version": 2,
 "name": "SKUORG",
 "version": "1.0",
 "description": "Organises SKUs on WooPage",
 "permissions": [
   "activeTab",
   "webNavigation",
   "<all_urls>"
 ],
 "content_scripts": [
   {
     "matches": ["<all_urls>"],
     "js": ["contentScript.js"]
   }
 ]

}


I have tried on two devices / installs of firefox and have followed the steps I could find on this page : https://support.mozilla.org/en-US/kb/unable-install-add-ons-extensions-or-themes#w_corrupt-extension-files

If you have any suggestions please let me know.

Otázku položil(a) harjoat Pred 2 dňami

Posledná odpoveď od harjoat Pred 2 dňami

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… (ďalšie informácie)

#!/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."

Otázku položil(a) j.sobiech Pred 1 týždňom

Posledná odpoveď od jscher2000 - Support Volunteer Pred 1 týždňom

No response on my bugs.

I have started posting bugs of Firefox in Bugzilla for almost 6 months now(though the number of bugs is 3). I have noticed that the bugs really had no response for nearly… (ďalšie informácie)

I have started posting bugs of Firefox in Bugzilla for almost 6 months now(though the number of bugs is 3). I have noticed that the bugs really had no response for nearly then(almost 6 months), so is it the way bugs are handled?, like they take long time to address( just asking as I though the process to be relatively fast) or is it something that I might be doing wrong in reporting a bug. I searched online and have been looking at assigning the bug( what I understood). So, how to do it if there exists something like assigning and will it increase the movement on my bugs??

Otázku položil(a) Bhaumik Tripathi Pred 2 dňami

Posledná odpoveď od jonzn4SUSE Pred 2 dňami

Tab search defaulting to address bar

Whenever I select tab and then start typing in the page search box it automatically jumps to the URL/Address bar. This is not only annoying but it makes it difficult for … (ďalšie informácie)

Whenever I select tab and then start typing in the page search box it automatically jumps to the URL/Address bar. This is not only annoying but it makes it difficult for me to see what I'm typing, and it often results in unwanted typing errors. I have yet to encounter a single longtime Firefox user who thinks this is a good idea, but I have met several who've decided to drop Firefox and start using Chrome just to be done with it. I've been using Firefox since early 2005 and I've mostly been happy with it but this is just to annoying to continue. I'm complaining because the feature exits, I'm complaining because there's no option to opt for those of us who find it annoying and will never become comfortable with it.

If there is a working fix that I've been unable to find, then please point me to where or what it is so that I can apply it.

Otázku položil(a) mh lg Pred 6 dňami

Posledná odpoveď od cor-el Pred 6 dňami

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 … (ďalšie informácie)

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 .

Otázku položil(a) ellad.tadmor Pred 3 dňami

Posledná odpoveď od cor-el Pred 3 dňami

browser

Thank you for your assistance in advance. Since I updated my browser, I've encountered some issues when trying to maximize the virtual screen in my tv. I use a Mac and co… (ďalšie informácie)

Thank you for your assistance in advance. Since I updated my browser, I've encountered some issues when trying to maximize the virtual screen in my tv. I use a Mac and connect the screen to a web TV to watch YouTube in my big tv. However, when I click to maximize the window, the connection becomes unstable, and the virtual screen disappears every time I click the YouTube icon to do this. This problem never occurred before. I would appreciate your help in resolving this issue. Please let me know if you require any additional information from me.

Otázku položil(a) A77EXOTICFLOWER Pred 6 dňami

Browser no longer asking for primary password

This started a few weeks ago. I thought it might have been because I synced the passwords with other devices. I reverted it back. When in about:logins, I click on the l… (ďalšie informácie)

This started a few weeks ago. I thought it might have been because I synced the passwords with other devices. I reverted it back.

When in about:logins, I click on the log in button but nothing happens.

Otázku položil(a) l s p Pred 6 dňami

Posledná odpoveď od cor-el Pred 6 dňami

Disabling drag/selection scrolling

I don't want to be able to scroll the page by selecting text. That's what the scroll wheel is for. More often than not this 'feature' just results in frustration as scrol… (ďalšie informácie)

I don't want to be able to scroll the page by selecting text. That's what the scroll wheel is for. More often than not this 'feature' just results in frustration as scrolling the page selects more text. Can I just disable this altogether somehow?

Otázku položil(a) Sabin Pred 3 dňami

Posledná odpoveď od Sabin Pred 3 dňami

  • Vyriešené

Prevent all autocomplete in address bar

My elderly mother has twice (in the last month alone!) been scammed by selecting the first thing that comes along in a Google search. I realize this is simply never going… (ďalšie informácie)

My elderly mother has twice (in the last month alone!) been scammed by selecting the first thing that comes along in a Google search. I realize this is simply never going to change, and I need to take steps to prevent her from ever seeing any sponsored results of any kind, or any kind of address bar autocomplete suggestion.

I have taken several dozen hours of my personal time this past month to repair the damage from her first scam experience (that I know about!), and today's incident made me realize that I have to do much more customization of her browser than I previously imagined. When I told her to never fully trust a Google search, her reply was "but I used Firefox!", and that told me everything I needed to know. It simply cannot be left to her understanding of the internet.

The intended setup is an iPad and a Win11 laptop. I would like to set up Firefox so that the address bar is nothing but an address bar without any kind of autocomplete at all. Is this even possible?

Also, I obviously can't filter every scam known to man, but I would like to specifically block the kind of pop-ups and ads that scammers use. What is a good strategy for this specific purpose? I don't care about legitimate marketing ads, even though they're annoying to me personally.

Otázku položil(a) townie Pred 5 dňami

Na otázku odpovedal(a) townie Pred 5 dňami

Chase

I can open the Chase bank site, but cannot log into my account. I can log into my Chase account using Edge. This may have happened after the most recent update to Firefo… (ďalšie informácie)

I can open the Chase bank site, but cannot log into my account. I can log into my Chase account using Edge. This may have happened after the most recent update to Firefox. Any ideas how to fix this?

Otázku položil(a) ggfossen Pred 3 dňami

Posledná odpoveď od cor-el Pred 3 dňami

2FA Sometimes Only Accepts Hardware Key for Biometrics Instead of Touch ID

When choosing biometrics for 2-factor authentication, sometimes Firefox will only prompt for a physical hardware key, and Touch ID does not work. Support for built-in bio… (ďalšie informácie)

When choosing biometrics for 2-factor authentication, sometimes Firefox will only prompt for a physical hardware key, and Touch ID does not work. Support for built-in biometrics is inconsistent.

For reference, I am using Mac OS Sonoma 14.4.1 with an ARM processor.

Otázku položil(a) Sarah Pred 5 dňami

huge bloating with version 124.0.4 Linux64

latest 124.0.2 causing severe problems, it will near instantly bloat to fill all RAM and SWAP even in safe mode causes system load over 24! only solution is to reboot ve… (ďalšie informácie)

latest 124.0.2 causing severe problems, it will near instantly bloat to fill all RAM and SWAP even in safe mode causes system load over 24! only solution is to reboot very problematic on for ex: https://epg.pw/xmltv/epg_CA.xml hard to get a screencap since system is nearly totally unresponsive. RAM is ok SSD is ok MX Linux is ok

Otázku položil(a) Galen Thurber Pred 2 týždňami

Posledná odpoveď od zeroknight Pred 3 dňami

Trouble printing with Epson POS TM-T20 Thermal Printer

I am unable to get printing to work correctly using Firefox with Epson POS TM-T20 thermal printers we have a work. We're currently running Firefox on Debian 12. I've … (ďalšie informácie)

I am unable to get printing to work correctly using Firefox with Epson POS TM-T20 thermal printers we have a work.

We're currently running Firefox on Debian 12. I've tried both the ESR version that comes with the Debian repository and the latest Firefox as a flatpak.

When printing to the receipt printer, the only thing that is printed is the left-hand most part of the logo and a little part of the text and this occurs towards the right-hand side of the paper. I've changing all of the settings, resetting the settings for the print in about:config, but nothing seems to work.

I'd love to get this working so that staff could use Firefox. I'm attaching an image of what the print job looks like and a screenshot of what the print-preview shows.

Otázku položil(a) Ron H. Pred 4 dňami

Posledná odpoveď od Ron H. Pred 3 dňami

  • Vyriešené

message said Firefox could not update automatically, requested I install Firefox. I did. Next day, same thing, can't update, intall Firefox. And again today. I don't know what to do.

I have two desktop icons for Firefox. Each opens to a different file. How do I clear the old file? What do I do about the message that Firefox can not update automatical… (ďalšie informácie)

I have two desktop icons for Firefox. Each opens to a different file. How do I clear the old file? What do I do about the message that Firefox can not update automatically? Where do I look to see Firefox file and see what date it is downloaded? If it is operational? Why is the same series of problems repeating daily?

Otázku položil(a) beth.woodworth1 Pred 1 týždňom

Na otázku odpovedal(a) beth.woodworth1 Pred 5 dňami

  • Vyriešené

my account is suspended and contact mail address not working (discourse)

hi, my discourse account is suspended but i wonder why? i try to reach discourse staff but i cant. because email address not working in this page: https://discourse.mozil… (ďalšie informácie)

hi, my discourse account is suspended but i wonder why? i try to reach discourse staff but i cant. because email address not working in this page: https://discourse.mozilla.org/about

my profile is: https://discourse.mozilla.org/u/tugrul/summary

please unsuspend my account. thanks.

Otázku položil(a) Tuğrul Pred 1 týždňom

Na otázku odpovedal(a) Kiki Pred 1 týždňom

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 … (ďalšie informácie)

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.

Otázku položil(a) milomorai01 Pred 2 týždňami

Posledná odpoveď od cor-el Pred 2 týždňami