Showing questions tagged: Show all questions
  • Locked
  • Archived

"Expected redirect cookie to exist" for Valorant/Riot Games Website

Every time I would try to log in it would always redirect me to a website that contain only the words "Expected redirect cookie to exist" It's really annoying because it… (read more)

Every time I would try to log in it would always redirect me to a website that contain only the words "Expected redirect cookie to exist"

It's really annoying because it only happens on Firefox. For some context I just re-installed Windows 11 and I heard from another post that re-installing Windows 11 will help but I do not want to go through the whole process again.

I have already tried:
  • Turning off DNS over HTTPS
  • Turning Off Proxy
  • Clearing Cache and Cookies
  • Reinstalling Firefox

Asked by SuMo Bot 1 year ago

Last reply by SuMo Bot 1 year ago

  • Archived

Controlling address bar search results

I always want the address bar suggestions to start with my bookmarks. Is there a way to control the results? I remember there was something in about:config previously. … (read more)

I always want the address bar suggestions to start with my bookmarks. Is there a way to control the results? I remember there was something in about:config previously.

Asked by technomad 1 year ago

Last reply by technomad 1 year ago

  • Archived

All my saved and synced bookmarks and passwords are gone!?

Hi, I did a clean install from win10 to win11, then installed firefox and logged in to my account but it havent synced anything? All my saved passwords and bookmarks are … (read more)

Hi, I did a clean install from win10 to win11, then installed firefox and logged in to my account but it havent synced anything? All my saved passwords and bookmarks are gone!?

Can someone please help me get them back! Does anyone have a solution for this?

Read something about that a backup is saved on your computer? Isnt saved to a cloud? Thats what a thought! I have done a clean install on a new drive, old drive i already wiped aswell! Doesnt have a windows.old dir or anything.

Please tell me everything isnt lost!

Best regards Gabriel

Asked by gabrielstrid 1 year ago

Last reply by gabrielstrid 1 year ago

  • Archived

Tab Settings

I am on a brand-new machine and having trouble setting up the Firefox browser. When I click on a link it opens in a new window with all the tabs ready opened. How do I… (read more)

I am on a brand-new machine and having trouble setting up the Firefox browser.

When I click on a link it opens in a new window with all the tabs ready opened.

How do I open a tab without opening a new window?

Also, how do I set Yahoo.com as my default search engine?

Thank you for sharing your wisdom

Asked by RocketNut 1 year ago

Last reply by zeroknight 1 year ago

  • Archived

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… (read more)

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

Asked by j.sobiech 1 year ago

Last reply by jscher2000 - Support Volunteer 1 year ago

  • Archived

Daily updates (seems update doesn't run)

I have been using Firefox as my primary browser for a very long time. Now, every time I start Firefox, I get a message that the update failed, and that I should manually… (read more)

I have been using Firefox as my primary browser for a very long time. Now, every time I start Firefox, I get a message that the update failed, and that I should manually download the update file and run it. I do so, the update appears to work, and Firefox behaves, until I stop it and restart again. Then I get the same message. I looked online - it appears that others have had this problem, but no clear solution. I am not willing to use Edge, but am beginning to wonder if it is time to leave Firefox. I would appreciate a solution, preferably a reliable one. Thanks, Joe Purvis Email hidden for privacy reasons

WIndows 11 64, AMD processor, 64 GB ram. Connected via ethernet and fiber. NordVPN, and Bitdefender (neither of which has produced any error messages).

Asked by jdpsmp 1 year ago

Last reply by Paul 1 year ago

  • Archived

Browser utilizing way too much memory, prescribed fixes dont work

First off, heres my device info: Device name: HP Spectre Convertible Model 15-ch011dx Processor Intel(R) Core(TM) i7-8550U CPU @ 1.80GHz 1.99 GHz Installed RAM 16.0 G… (read more)

First off, heres my device info:

Device name: HP Spectre Convertible Model 15-ch011dx

Processor Intel(R) Core(TM) i7-8550U CPU @ 1.80GHz 1.99 GHz

Installed RAM 16.0 GB (15.8 GB usable)

Device ID F3EDBCEE-137F-4854-B06C-912570DD1DB5

Product ID 00325-81213-26880-AAOEM

System type 64-bit operating system, x64-based processor

Pen and touch Pen and touch support with 10 touch points

Every time i use firefox with even one tab open i end up with extremely high CPU usage-50% or more on average. It causes the exact type of issues that one would expect, and after spending a hours and hours over the last month looking for solutions and implementing anything promising, it hasnt improved. Ive done config edits, countless cache clears, memory snapshots via devtools, and many many other things that have been recommended to me and nothing has helped. running the browser in troubleshoot confirms the problem isnt related to extensions/add-ons or anything like that, because cpu numbers are identical to those seen normally. increasingly i am convinced that this has to be an issue on the mozilla side. reddit confirms i am not alone in struggling with this, not by a long shot.....pls help!

Asked by Peter P 1 year ago

Last reply by ixian 1 year ago

  • Archived

adblocker

I frequently attempt to open news articles or other pages requiring form fill-in but instead get a page that advises me to disable an adblocker. I have no idea what Firef… (read more)

I frequently attempt to open news articles or other pages requiring form fill-in but instead get a page that advises me to disable an adblocker. I have no idea what Firefox (yes, up-to-date) uses or how I could set it to allow pop-ups for a particular site. Help!

Asked by dennis_crowe 1 year ago

Last reply by zeroknight 1 year ago

  • Solved
  • Archived

Why ESR Updates on macos ventura?

Macos Ventura: Greetings, When I started getting msgs saying my browser was no longer supported, I checked my version. Firefox says i have v115esr and that it is "up t… (read more)

Macos Ventura:

Greetings,

When I started getting msgs saying my browser was no longer supported, I checked my version. Firefox says i have v115esr and that it is "up to date" - i.e. no update available at this time. I assumed I was getting the brush off from those web sites.

Why did Firefox not bring me up to v124? I get a "download update" probably once a month. It's been giving me a new variation of 115esr all along.

I've now downloaded 124 from your site. What do I need to do so that I stay current in the future? Thanks John

Asked by jnehera 1 year ago

Answered by James 1 year ago

  • Archived

Trouble saving downloads

Prior to about a month ago, downloading worked as expected: - click a link - the save to... dialog opened - choose the folder - the download is off and running No more. … (read more)

Prior to about a month ago, downloading worked as expected: - click a link - the save to... dialog opened - choose the folder - the download is off and running

No more. For about the past month - click a link - wait for a long time with FF frozen - the a wheel starts rotating - after a full minute (or more) the save dialog appears.

Something has been broken in the mad-dash to push updates. It's fine for browsing, but the, you need to download. At that point you wish you were using a different browser (any other browser, in fact) since FF is the only oe that has this problem. Downloading works fine in a 8 chromium browsers that I have and in the 5 FF clones (like Waterfox)

It's just FF that's broken. I can no longer afford to set it as default because of this. The others are not perfect (WF won't activate Pocket, foe example) but downloading promptly is critical.

Asked by essin 1 year ago

Last reply by squillenial 1 year ago

  • Archived

how to flash tasmota using forefox browser

https://tasmota.github.io/install/ This is an example of what i am tryingto achieve bit no matter on which site i am , i do not get to choose from ports and my devices an… (read more)

https://tasmota.github.io/install/ This is an example of what i am tryingto achieve bit no matter on which site i am , i do not get to choose from ports and my devices and always faults out saying similar messages that the browser does not support web serial in one way or the other for any site doing similar task. error message is as shown in the image shared basically complains of browser not supporting web serial.

Asked by K2 1 year ago

Last reply by TyDraniu 1 year ago

  • Archived

Can't close Firefox with multi pages opened through right clicking the taskbar.

Firefox Version: 124.0.2 (64 bit) Windows Version: Windows 10 LTSC 2019 (Version 1809) When I right click the taskbar and press close Firefox, here comes the interface j… (read more)

Firefox Version: 124.0.2 (64 bit) Windows Version: Windows 10 LTSC 2019 (Version 1809)

When I right click the taskbar and press close Firefox, here comes the interface just as the screenshot uploaded. The blue close button doesn't response no matter how I click it and the Firefox's taskbar is flashing yellow. This bug only occurs on the first window of Firefox and only when user right click the taskbar.

It has been a long time for me wishing that some updates would be released soon to fix this issue, while noting happens. Or this bug is only for me?

Asked by Feeling Unreal 1 year ago

Last reply by zeroknight 1 year ago

  • Archived

Importing bookmarks from a different moxilla account

Is it possible to import bookmarks for a different Mozilla account. Apparently I have 2 different Mozilla accounts. I had been using (I'll call it account #1) for quite… (read more)

Is it possible to import bookmarks for a different Mozilla account. Apparently I have 2 different Mozilla accounts. I had been using (I'll call it account #1) for quite a while, and recently subscribed to Mozilla VPN service. When I subscribed i gave it login info for "Account #2". How can I keep the logon info for the VPN, and get my bookmarks imported from the old (routinely used account #1) ? Or, can I change the VPN service to the old account (account #1)? I know how to add another device to the VPN account, but the "accounts" are on the same "device".

Thanks...

Asked by larryag 1 year ago

Last reply by jscher2000 - Support Volunteer 1 year ago

  • Archived

trackpad preference

At one time, I was able to swipe left on my trackpad and go back to the previous page on firefox. I can't seem to find where to set that preference. I'm running MacOS. … (read more)

At one time, I was able to swipe left on my trackpad and go back to the previous page on firefox. I can't seem to find where to set that preference. I'm running MacOS.

Asked by wallin.ian 1 year ago

Last reply by zeroknight 1 year ago

  • Archived

cannot restore history

Accidentally closed browser with many multiple tabs open. Tried to restore history but option was grayed out. Tried several times but was not able to get back to the or… (read more)

Accidentally closed browser with many multiple tabs open. Tried to restore history but option was grayed out. Tried several times but was not able to get back to the original browsing window with the multiple open tabs.

Would really appreciate help on this, if possible, as the many multiple tabs contained family history research that will be difficult to impossible to duplicate.

Thank you.

Asked by jengel1600 1 year ago

Last reply by jscher2000 - Support Volunteer 1 year ago

  • Archived

Repeated Installation Requests

Hello, I've installed Firefox twice in the last couple of days (Windows 10 - I think) and I continue to receive messages that say I need to install the latest version. … (read more)

Hello, I've installed Firefox twice in the last couple of days (Windows 10 - I think) and I continue to receive messages that say I need to install the latest version.

Do you issue updates daily, or is there something wrong with my Firefox installation or is it something else?

Thank you.

Asked by Jerry Wiener 1 year ago

Last reply by zeroknight 1 year ago

  • Solved
  • Archived

Why is my firefox hompage so negative?

Hi, I am aware I can change my homepage and will do so. But I just wanted to share how terrible the firefox homepage is. I am just shown an array of negative stories as … (read more)

Hi,

I am aware I can change my homepage and will do so. But I just wanted to share how terrible the firefox homepage is. I am just shown an array of negative stories as soon as I open mozilla firefox.

Asked by Joshua Daly 1 year ago

Answered by jscher2000 - Support Volunteer 1 year ago

  • Archived

Prime Video - Picture-in-Picture subtitles aren't working

When using picture in picture on Prime Video, my subtitles aren't showing up in the window, but instead on the original page, despite prime video being one of the origina… (read more)

When using picture in picture on Prime Video, my subtitles aren't showing up in the window, but instead on the original page, despite prime video being one of the original supported websites. Any ideas on how to fix?

Asked by Veronica 1 year ago

Last reply by jonzn4SUSE 1 year ago