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… (閱讀更多)

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

Person Guyerson 於 2 天前 詢問

zeroknight 最近回覆於 2 天前

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 … (閱讀更多)

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.

Dean 於 2 天前 詢問

cor-el 最近回覆於 2 天前

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… (閱讀更多)

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

j.sobiech 於 2 天前 詢問

jscher2000 - Support Volunteer 最近回覆於 2 天前

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, … (閱讀更多)

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

OMVW 於 3 天前 詢問

cor-el 最近回覆於 2 天前

little window in right lower corner

I've recently had a little video window appear in the bottom right corner of my browser screen. I can't find any control link to eliminate it other than closing it manua… (閱讀更多)

I've recently had a little video window appear in the bottom right corner of my browser screen. I can't find any control link to eliminate it other than closing it manually every time it appears. Where did it come from and how do I get rid of it?

weary 於 1 天前 詢問

zeroknight 最近回覆於 1 天前

Firefox browser is not launching on my pc

Suddenly on my PC the icon of Firefox turned white on both desktop and taskbar. And whenever I try to open Firefox, it says, "The file or directory is corrupted and unrea… (閱讀更多)

Suddenly on my PC the icon of Firefox turned white on both desktop and taskbar. And whenever I try to open Firefox, it says, "The file or directory is corrupted and unreadable." And I didn't make any changes myself. So far it was fine. Now what can/should I do?

michealwd8 於 1 天前 詢問

Jatin Yt 最近回覆於 1 天前

Default speaker settings do not work correctly in Firefox

Hello. Our organization is experiencing an issue where sound settings are not carrying over correctly to Firefox. Specifically, this is with speaker settings. In multiple… (閱讀更多)

Hello. Our organization is experiencing an issue where sound settings are not carrying over correctly to Firefox. Specifically, this is with speaker settings. In multiple calling platforms (tested in Genesys Cloud and Teams), we are not able to adjust the settings for the speaker that audio plays from. We can adjust the default microphone setting, but not the speaker setting. This is only occurring in Firefox (works fine in Edge and Chrome).

Additionally, we've tried adjusting the default audio settings by going to Windows > Sound settings > App volume and device preferences, and changing the settings specifically for Firefox on this page. This does not work. When we check Teams or Genesys Cloud, it seems like Firefox is just picking any default without a rhyme or reason.

Any assistance would be greatly appreciated.

gbishop61 於 1 天前 詢問

zeroknight 最近回覆於 1 天前

Bad/Rogue Current Session of Firefox (Windows 7) Redux

Sorry, posted recently and had then trouble finding out how to respond to help offered (jscher2000)! Noticed that the email version was "no-reply" so I didn't figure that… (閱讀更多)

Sorry, posted recently and had then trouble finding out how to respond to help offered (jscher2000)! Noticed that the email version was "no-reply" so I didn't figure that would work! So, I tried to 'cut and paste' my reply (on a smartphone) and I ended up losing even the email reply text so here is a reconstruction. I tried the suggestions in order and the first one didn't have a "Restore previous session" option and the second one had "Recently closed windows" greyed out! And, when I entered "about.support" in the address bar (top rightish), I received a notice that I couldn't reach Google (Remember that I don't currently have internet access on my laptop). So, no joy there either! Can I not just change some current setting to prevent Firefox v 115.9lesr from saving the current 'Windows' and Tabs so that, when I again open Firefox, the previous session 'Windows' and Tabs would be used?!?

balls69bc 於 2 天前 詢問

jscher2000 - Support Volunteer 最近回覆於 1 天前

Firefox is already running, but is not responding. The old Firefox process must be closed to open a new window.

Unable to run firefox. I get the error message. (see attached screenshot) After terminating firefox processes, I attempted to create a new profile. and see an error mess… (閱讀更多)

Unable to run firefox. I get the error message. (see attached screenshot) After terminating firefox processes, I attempted to create a new profile. and see an error message. (see attached screenshot)

P J 於 1 天前 詢問

cor-el 最近回覆於 1 天前

I am a senior citizen, not very computer literate and just want some technical support from Mozilla

Most of the time I cannot print my emails because an "add blocker" is installed. So now, I no longer use Firefox, since when I use Microsoft, I have no such problem. … (閱讀更多)

Most of the time I cannot print my emails because an "add blocker" is installed. So now, I no longer use Firefox, since when I use Microsoft, I have no such problem.

samandmort2 於 1 天前 詢問

cor-el 最近回覆於 1 天前

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… (閱讀更多)

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

claytudor 於 4 天前 詢問

cor-el 最近回覆於 3 天前

where to find the cast-cast media to device icon in firefox browser

in the firefox browser is there any way to see the casting the browser screen to chromecast on tv. similar to 'cast to media device' in edge browser or chrome browser. … (閱讀更多)

in the firefox browser is there any way to see the casting the browser screen to chromecast on tv. similar to 'cast to media device' in edge browser or chrome browser.

k.Indrakanth K 於 2 天前 詢問

zeroknight 最近回覆於 1 天前

My bookmarks and history are gone.

I get the following message when going online with Firefox: "The bookmarks and history system will not be functional because one of Firefox's files is in use by another a… (閱讀更多)

I get the following message when going online with Firefox: "The bookmarks and history system will not be functional because one of Firefox's files is in use by another application. Some security software can cause this problem." I've followed all the prompts to restart the computer, refresh the computer, delete the favicons.sqlite and places.sqlite and it won't allow me to delete them. This happened yesterday as well. Yesterday I could delete those files and everything was restored. But today I can't get it to work.

Lana Patterson 於 2 天前 詢問

zeroknight 最近回覆於 1 天前

firefox extension can't read and change data on this site

why can't I use the lingq importer extention? I get a message for all my extentions that says: firefox extension can't read and change data on this site. It's preventing … (閱讀更多)

why can't I use the lingq importer extention? I get a message for all my extentions that says: firefox extension can't read and change data on this site. It's preventing me from using the LingQ importer extention.

ElJay1951 於 1 天前 詢問

jscher2000 - Support Volunteer 最近回覆於 1 天前

'trust this device' not working - why?

For several sites, when i check 'trust this device' it doesn't work. next time i signin it still requires 2fa from the site. i've checked and the certificates do exist … (閱讀更多)

For several sites, when i check 'trust this device' it doesn't work. next time i signin it still requires 2fa from the site. i've checked and the certificates do exist as i get a message saying already exists when i try to import. this is a very user hostile function. I do not have this issue with Chrome or Microsoft Edge!!!!! i hate to begin using one of these vs Mozilla Firefox to get around this but i may have to do so. my wife and i share access to critical sites so if i need to see her info or she needs to see mine, we both have to be available in order to access the site. Mozilla Firefox 'bug' is requiring us to do so and it doesn't satisfy our requirements. any ways to solve this issue is greatly appreciated. so far no 'searched' solutions work.

jdk 於 1 天前 詢問

cor-el 最近回覆於 1 天前

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… (閱讀更多)

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.

l s p 於 2 天前 詢問

cor-el 最近回覆於 1 天前