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 1 день назад

Последний ответ от zeroknight 1 день назад

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 дня назад

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 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 дня назад

Scrolling with up down arrow keys disables keyboard intermittently. HP laptop, Firefox 125.0.2 Win 11 pro

When browsing with Firefox, scrolling with the up/down arrow keys intermittently causes the keyboard to be disabled. Trackpad and touchscreen still function, but keyboar… (читать ещё)

When browsing with Firefox, scrolling with the up/down arrow keys intermittently causes the keyboard to be disabled. Trackpad and touchscreen still function, but keyboard becomes completely disabled, requiring a reboot.

This ONLY happens while browsing with Firefox browser. I cannot deliberately reproduce this, but it happens frequently - up to several times a day. It seems to be tied to multiple key hits on the down and/or up keys. This only happens in Firefox, not in any other apps, including Visual Studio.

This is a brand new HP laptop. HP support says that this is a Firefox support issue because it only happens on Firefox and no other programs or scenarios.

Can you please help me to identify, troubleshoot and resolve this issue? I am a software/database engineer but this is a little outside the scope of my knowledge. I should be able to conduct any tests or provide any needed feedback at a useful level with only a reasonable level of hand holding. I suspect that Firefox is somehow inhibiting or disrupting the keyboard driver.


Environment: FIREFOX 125.0.2 64 bit

Windows 11 Edition Windows 11 Pro Version 23H2 Installed on ‎2/‎13/‎2024 OS build 22631.3447 Experience Windows Feature Experience Pack 1000.22688.1000.0

Keyboard drivers: HID Keyboard Device

   ETD.sys            15.56.2.26           ELAN Microelectronics Corp. 
   kbdclass.sys    10.0.22621.1 (Winbuild.160101.0800)       Microsoft
   kbdhid.sys        10.0.22621.1 (Winbuild.160101.0800)       Microsoft

Standard PS/2 Keyboard

   ETD.sys            15.56.2.26           ELAN Microelectronics Corp. 
   i8042prt.sys    10.0.22621.1 (Winbuild.160101.0800)       Microsoft
   kbdclass.sys    10.0.22621.1 (Winbuild.160101.0800)       Microsoft


HP Envy laptop model 17t-cw000 Processor 13th Gen Intel(R) Core(TM) i7-13700H 2.40 GHz Installed RAM 32.0 GB (31.7 GB usable) Product ID 00355-61386-37102-AAOEM System type 64-bit operating system, x64-based processor Pen and touch Touch support with 10 touch points

Задан cliffb1 20 часов назад

Последний ответ от zeroknight 17 часов назад

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… (читать ещё)

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.

Задан maxjen 2 дня назад

Последний ответ от cor-el 2 дня назад

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 1 день назад

Последний ответ от cor-el 1 день назад

Repetitive update request

I keep getting this message that pops up in a private window to restart to keep using firefox. Everytime I click restart Firefox, it closes my tabs and opens them again. … (читать ещё)

I keep getting this message that pops up in a private window to restart to keep using firefox. Everytime I click restart Firefox, it closes my tabs and opens them again. However, 5 minutes later the window pops up again. Even after repeated attempts of updating, even doing a full restart on the computer, Firefox continues to send this window to me. The private window in the bar says about:restartrequired.

I've tried uninstalling Firefox with a fresh install as well as doing a Refresh of Firefox. Neither seem to solve this problem.

Задан rxs621 1 неделю назад

Последний ответ от NoahSUMO 2 дня назад

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… (читать ещё)

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

Задан cherryblossomshadow3 3 дня назад

Последний ответ от jonzn4SUSE 2 дня назад

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 18 часов назад

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 3 дня назад

Последний ответ от cor-el 3 дня назад

over 30 obsolete tabs open when I repopen Firefox

I received a scam Apple (security) popup (on which I never clicked) and from that point on, some 30+ obsolete tabs congregate across the top Firefox browser window. How… (читать ещё)

I received a scam Apple (security) popup (on which I never clicked) and from that point on, some 30+ obsolete tabs congregate across the top Firefox browser window. How do i lose all these unwanted tabs?

Задан Ed Weingold 1 день назад

Последний ответ от cor-el 1 день назад

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 19 часов назад

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 … (читать ещё)

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.

Задан milomorai01 1 неделю назад

Последний ответ от cor-el 1 неделю назад