Firefox page flickers

I recently got a new computer. Installed firefox onto it. Brought over my profile with all my data and bookmarks. But for the life of me, the page would just sporadically… (read more)

I recently got a new computer. Installed firefox onto it. Brought over my profile with all my data and bookmarks. But for the life of me, the page would just sporadically flicker. I tried messing with the settings; performance settings; hardware acceleration. I tried refreshing firefox. But nothing.

Asked by anger01 1 week ago

Last reply by zeroknight 1 week ago

Printing problem--been getting a printing error the last couple days this message "error occurred while printing".

been getting a printing error the last couple days this message "error occurred while printing". Printer then puts out partial page(s) then stops printing. been trying … (read more)

been getting a printing error the last couple days this message "error occurred while printing". Printer then puts out partial page(s) then stops printing. been trying to print copies of tax forms ( 11 pages)?? page that print shows Firefox in top left corner of page. Today same problem with a four page email print job.

Asked by kmfa1 1 week ago

Last reply by Paul 1 week ago

  • Solved

Video without sound on some sites but work on another

I have: 125.0 (64-bit) Mozilla Firefox for Ubuntu canonical - 1.0 Video on Facebook plays without sound. The video plays, I see the image normally, but no sound. Video … (read more)

I have:

125.0 (64-bit) Mozilla Firefox for Ubuntu canonical - 1.0

Video on Facebook plays without sound. The video plays, I see the image normally, but no sound. Video on Youtube works perfectly.

Fresh install without addons or plugins. Switching to "Troubleshoot mode" does not change anything. Youtube with sound, Facebook without sound.

Any ideas where to look?

Asked by George Brink 1 week ago

Answered by cor-el 1 week ago

  • Solved

How to get "Favorites" or "Bookmarks" spelled out on top of page rather than Star icon

I just got a new computer and had my info transferred. It is probably the latest version of Firefox on the new computer now. On the previous version it seems like Favor… (read more)

I just got a new computer and had my info transferred. It is probably the latest version of Firefox on the new computer now. On the previous version it seems like Favorites was spelled out toward the top of the page on the left hand side. I see now it is just a star icon. Is there any way to get it the way it used to be? I'm sure I will get used to it the new way, but I still liked it the other way. Thanks

Asked by Larry/Nancy Jones 2 weeks ago

Answered by zeroknight 2 weeks ago

  • Solved

Corrupted PDF Downloads from Intranet sites after 125.0.1 Update

Prior to update 125.0.1 corporate intranet users could download PDF files from our Line of Business applications / Webpages. Today after the latest update the PDF files … (read more)

Prior to update 125.0.1 corporate intranet users could download PDF files from our Line of Business applications / Webpages. Today after the latest update the PDF files download but are corrupted. The site was added to the trusted webpage without improvement.

Adobe Acrobat Reader could not open ********.pdf because it is either not a supported file or because the file has been damaged

Asked by Jeff@work 1 week ago

Answered by NoahSUMO 1 week ago

Firefox doesn't load any site, but other browsers can

This has been happening for months now, on multiple devices (I have tried at least 3 different devices), and on multiple networks. I have read the articles in here, but … (read more)

This has been happening for months now, on multiple devices (I have tried at least 3 different devices), and on multiple networks.

I have read the articles in here, but they just want me to check network configuration which is exactly the same for all browsers.

If I restart firefox it starts working again.

How can I prevent it from breaking randomly? This is the only browser having issues, I'm almost positive is some bug and not a configuration thing, given that it happens under multiple circumstances and devices, while Edge and Chrome simply keep working just fine.

There is no consistent repro I can give, afaik it is just random, at some point Firefox just decides to stop working and I have to restart it. This disrupts my work and browsing activities as I can lose progress on input forms and similar actions.

Asked by parietinae 1 week ago

  • Solved

Unable to interact with many of the buttons on the roblox website

Nothing happens when I press the play, like, dislike, notifications, favorite, or join server buttons. On top of this, when I try to open the catalogue it's just a grey s… (read more)

Nothing happens when I press the play, like, dislike, notifications, favorite, or join server buttons. On top of this, when I try to open the catalogue it's just a grey screen with nothing in it. In the attached GIF I am clicking rapidly. I don't believe this is an issue with roblox itself, as when I open chrome everything works perfectly. The only extensions I am using for the site are RoPro and BTRoblox. I have tried to turn the extensions off and have even uninstalled them, however the problem was still not fixed.

Asked by ushaaaaa 1 week ago

Answered by zeroknight 1 week ago

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 2 days ago

Last reply by jscher2000 - Support Volunteer 2 days ago

  • Locked

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

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

Asked by rpm3110 2 weeks ago

Images Not Loading on Certain Websites in Firefox

I'm having trouble with Firefox where images aren't loading on some websites, even though they display fine in other browsers. I've tried clearing the cache and restartin… (read more)

I'm having trouble with Firefox where images aren't loading on some websites, even though they display fine in other browsers. I've tried clearing the cache and restarting Firefox, but the issue persists.

Is there anything else I can try to fix this problem and get images to load properly?

Asked by Robert Wolf 1 week ago

Last reply by cor-el 1 week ago

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 week ago

Last reply by TyDraniu 1 week ago

  • Solved

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

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.

Asked by Tuğrul 1 week ago

Answered by Kiki 4 days ago

Facebook only halfway works on Firefox

I recently purchased a new Mac Book Pro. After migrating my data from my old one I noticed that when using Firefox my Facebook account was not working properly. I no lo… (read more)

I recently purchased a new Mac Book Pro. After migrating my data from my old one I noticed that when using Firefox my Facebook account was not working properly. I no longer could access my own page or the pages of friends. However, I could access some group accounts I'm associated with. On Safari, everything works fine. I suspect something must have been compromised during the data migration.

I deleted the Firefox app from my new computer and then reinstalled it but to no avail. When I'm in Facebook and try to access my page I get an error message. My OS system to up to date and apparently my Firefox is up to date as well. Any suggestions? Thanks!

Asked by jjenkins9 1 week ago

Last reply by zeroknight 1 week ago

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

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.

Asked by milomorai01 1 week ago

Last reply by cor-el 1 week ago

Firefox always plays sound out of my usb devise if even though i windows uses aux

I have two audio device plugged in. firefox only outputs to the usb devise even though i have selected the aux out on windows. all other programs use the selected audio o… (read more)

I have two audio device plugged in. firefox only outputs to the usb devise even though i have selected the aux out on windows. all other programs use the selected audio out but not firefox

any help would be appreciated

Asked by silasfoldbo 1 week ago

EXCEPTION_ACCESS_VIOLATION_READ

I have at least some computer knowledge but not enough to understand the link on the crash report that says what this report means. Is there a cliff notes version of why… (read more)

I have at least some computer knowledge but not enough to understand the link on the crash report that says what this report means. Is there a cliff notes version of why my firefox keeps crashing. I have link to the page so I am not sure what info is needed to help me. I can give screenshots or link info. I'm not sure if it's safe to post everything on report or what is necessary.

Asked by Shelly Bell 1 week ago

Last reply by zeroknight 1 week ago

New updated has broken picutre in picture mac

The latest version of firefox for MacOS 14.4.1 has broken the picture in picture function. When enabling PiP, the video window takes up almost the entire screen and doesn… (read more)

The latest version of firefox for MacOS 14.4.1 has broken the picture in picture function. When enabling PiP, the video window takes up almost the entire screen and doesn't remember the size i set it to, like it did in older versions of Firefox. Another issue is when im in fullscreen mode and enable PiP, the PiP window takes me to another 'desktop', whereas before it would simply overlay on top of my screen.

Asked by fahimali883222 1 week ago

I can't get access to my camera on Spelltable.com

I installed an OBS plug-in for a virtual camera so that I could film my screen and pretend it's a webcam. I was able to use the virtual camera or my webcam on spelltable.… (read more)

I installed an OBS plug-in for a virtual camera so that I could film my screen and pretend it's a webcam. I was able to use the virtual camera or my webcam on spelltable.com by selecting either from the dropdown "allow" menu. One day, I was no longer able to select my webcam. I could only select the obs virtual camera. I switched to MS Edge which worked as normal. I've uninstalled OBS and all plug-ins. Same result I've reinstalled firefox. Same result. I've been using MS Edge for websites that need my camera.

Asked by clffrd.ava 2 weeks ago

Last reply by clffrd.ava 1 week ago