Viser spørgsmål med mærkatet: Vis alle spørgsmål

Disqus Comments doesn't load if Browser Privacy set to Strict

TL;DR : Disqus comments used to work while using privacy Strict mode now it doesn't. After years of it working out of the get-go while using Strict mode up till rec… (læs mere)

TL;DR : Disqus comments used to work while using privacy Strict mode now it doesn't.

After years of it working out of the get-go while using Strict mode up till recently (about a year ago this was really low on my priority list) refused to work I though it was my Ad blocker was causing issues but after setting it in the filters to allow and even after turning it off still no dice.

Removed all add-ons tried again still Disqus comment section refused to load in the websites I regularly visit. So after giving up, I just look around in the browser setting to see if there is anything that may cause conflict with certain scripts from running.

Stillet af ianjay.tt for for 2 måneder siden

Seneste svar af jscher2000 - Support Volunteer for 1 dag siden

  • Løst

adding websites to location permissions in firefox

I cannot find a way to add websites to the location permissions in Firefox Windows PC. I can easily get to the "Location Permissions settings " but there is no way to add… (læs mere)

I cannot find a way to add websites to the location permissions in Firefox Windows PC. I can easily get to the "Location Permissions settings " but there is no way to add, only remove. When I display the access icon in the URL address bar, it shows " you have granted the website additional permissions" , but the site does not display in the FF Settings-Location Box, and the target website does allow me access based on location. Is there another area where location is restricted? would appreciate some help, thx.

Stillet af rejemard for for 3 måneder siden

Besvaret af cor-el for for 3 måneder siden

Disable Automatic Updates In Firefox Version 125.0

For System Administrative reasons, I want to disable automatic Firefox updates. Firefox can ask me if I want to install an update, but I get to choose whether or not to … (læs mere)

For System Administrative reasons, I want to disable automatic Firefox updates. Firefox can ask me if I want to install an update, but I get to choose whether or not to update.

Stillet af jhughey for 1 uge siden

Seneste svar af Agent virtuel for 1 uge siden

  • Løst

Files downloaded in Firefox Private Browsing are deleted automatically after closing the browser

I am facing issue while downloading files in Firefox Private Browsing. Whenever I download my PDF files, as soon as I close the browser window, the files also get deleted… (læs mere)

I am facing issue while downloading files in Firefox Private Browsing. Whenever I download my PDF files, as soon as I close the browser window, the files also get deleted automatically. What should I do to rectify this issue.

Stillet af kashishjaggi16 for for 1 måned siden

Besvaret af cor-el for for 1 måned siden

Website being blocked,

This is the message I get. "Please unblock challenges.cloudflare.com to proceed." I can do nothing. Things I've tried. Adding exceptions in the privacy settings in 2 s… (læs mere)

This is the message I get. "Please unblock challenges.cloudflare.com to proceed." I can do nothing.

Things I've tried. Adding exceptions in the privacy settings in 2 seperate areas. Resetting Browser deafults. Turning off all vpn's and addons.

Nothing works.

This is the site https://1337x.to/

Stillet af Mixelplix for for 3 måneder siden

Seneste svar af cor-el for for 3 måneder siden

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… (læs mere)

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.

Stillet af l s p for 3 uger siden

Seneste svar af cor-el for 3 uger siden

Commentary No Longer Visable On Multiple Websites

The last Firefox update, 126.0 (64bit), that was installed 2 days ago has caused various website's commentary or forums to not be displayed. For example, Yahoo finance pa… (læs mere)

The last Firefox update, 126.0 (64bit), that was installed 2 days ago has caused various website's commentary or forums to not be displayed. For example, Yahoo finance page, attempting to read the "community" section of a particular stock such as Walmart (WMT) nothing is displayed. This happens also on news websites that allow commentary. Google Chrome does display commentary but I don't like using Google.

This is not the first time commentary has not being displayed after an update. Happened a couple of times last year.

The desktop pc is running Windows 11, version 23H2.

Thanks, Frank

Stillet af Clovis People for 22 timer siden

Firefox randomly downloaded a file, with seemingly randomly name, that is 0 bytes and in download manager the source is moz-safe-about

Hello, Firefox randomly downloaded a file, with seemingly randomly name, that is 0 bytes and in download manager the source is moz-safe-about. It happened when I was acce… (læs mere)

Hello, Firefox randomly downloaded a file, with seemingly randomly name, that is 0 bytes and in download manager the source is moz-safe-about. It happened when I was accessing a popular wiki site. I opened the file in notepad, it was empty. I put it on virus total and came back negative, as it is an empty file. I've curbed through the support tickets here, using the keyphrase 'moz-safe-about'. I understand this was/is quite a common problem, but it still makes me quite worried and left a sour taste in my mouth, as I haven't understood any of the explanations. I have enabled firefox to ask me whenever it wants to save something (I have no idea why this isnt the default state). Happened on a somewhat fresh, updated win 11 installation. I'm also attaching more information here with a picture. Long story short: should I be worried? Am I overreacting and this is just some sort of a bug that occurred while getting a sites data? Thank you for your time.

Stillet af grindart3 for for 1 måned siden

Seneste svar af coffeelover101011 for 1 uge siden

  • Løst

macOS disable Firefox default browser prompt non-interactively

I am trying to configure Firefox on macOS to not prompt the user to make it the default browser. I am using the following script to create the profile and set the user p… (læs mere)

I am trying to configure Firefox on macOS to not prompt the user to make it the default browser.

I am using the following script to create the profile and set the user preferences after installing Firefox by copying `Firefox.app` from the downloaded DMG: ```

  1. !/bin/sh

open -a Firefox.app --args -CreateProfile default sleep 1

write_userpref() { USER=$(whoami) PROFILE=$(ls -1 "/Users/${USER}/Library/Application Support/Firefox/Profiles/" | grep -E "\.default$") cat << EOF > "/Users/${USER}/Library/Application Support/Firefox/Profiles/${PROFILE}/user.js" // mandatory comment? user_pref("app.update.auto", false); user_pref("app.update.disable_button.showUpdateHistory", false); user_pref("app.update.enabled", false); user_pref("breakpad.reportURL", ""); user_pref("browser.newtabpage.activity-stream.feeds.topsites", false); user_pref("browser.newtabpage.activity-stream.feeds.section.topstories", false); user_pref("browser.tabs.crashReporting.sendReport", false); user_pref("browser.discovery.enabled", false); user_pref("browser.defaultbrowser.notificationbar", false); user_pref("browser.shell.checkDefaultBrowser", false); user_pref("browser.shell.didSkipDefaultBrowserCheckOnFirstRun", false); user_pref("browser.shell.skipDefaultBrowserCheckOnFirstRun", true); user_pref("browser.newtabpage.enabled", false); user_pref("experiments.enabled", false); user_pref("extensions.pocket.enabled", false); user_pref("toolkit.telemetry.enabled", false); user_pref("update_notifications.enabled", false); EOF }

write_userpref

open -a Firefox.app --args -new-tab -P default "about:blank" sleep 3 osascript -e 'quit app "Firefox"' sleep 2

open -a Firefox.app --args -P default about:blank ```

Here's the behaviour I'm seeing:

  1. Firefox starts to an `about:blank` tab, however there is a second "Firefox Privacy Notice" tab
  2. AppleScript quits Firefox
  3. Firefox starts to an `about:blank` tab, however it is now prompting me to make it the default browser

I do not want Firefox to prompt the user to become the default browser.

My ideal scenario is that Firefox starts without the "Firefox Privacy Notice" tab and without prompting me to make it the default browser. From the observed behaviour, this doesn't seem possible.

Can anyone tell me how I can accomplish this without user interaction or MDM?

Stillet af hal.martin for 1 dag siden

Besvaret af hal.martin for 1 dag siden

Comments do not load

On a couple of sites (e.g. Petapixel) when I click "Load Comments", nothing happens. I suspect this may be because Firefox security is preventing comments from loading b… (læs mere)

On a couple of sites (e.g. Petapixel) when I click "Load Comments", nothing happens. I suspect this may be because Firefox security is preventing comments from loading because of site tracking or other security issues. Is this the cause?

Stillet af dclark for for 2 måneder siden

Seneste svar af jscher2000 - Support Volunteer for 1 dag siden

  • Arkiveret

How to make attached files in email open up without requiring saving the file before viewing

Recently, I purchased some software to scrub my hard drive due to my Dell Desktop running slow. That is when the way I normally access emailed attached files changed. N… (læs mere)

Recently, I purchased some software to scrub my hard drive due to my Dell Desktop running slow. That is when the way I normally access emailed attached files changed. Normally, if I receive a WORD or EXCEL (MS file) in email, I can open the email and access the attachment without having to download and save to my desktop or hard drive. I have changed all settings in the Privacy Area / Trust Area of MS but this did not change anything. MS Representatives stated I would need to use Outlook to make this work, but I know it will work without using Outlook. I think the Scrubbing / Cleaning software I purchased changed a setting with my email for safety purposes since there is risk in opening a file directly from email. Any suggestions on how to change back to how this worked previously - without having to download and save the file? Thanks for your help.

Stillet af Will Phillips for 2 år siden

Seneste svar af Terry for 2 år siden

  • Arkiveret

Somebody has control of my browser

My address line is red, and their is an icon which say: browser is under remote control, reason: DevTools. I am not sure how to fix this, or what to do about this. I do… (læs mere)

My address line is red, and their is an icon which say: browser is under remote control, reason: DevTools.

I am not sure how to fix this, or what to do about this. I do not know if I caused this myself. Please let me know if anybody can help.

Stillet af LadyRedLight for 2 år siden

Seneste svar af cor-el for 2 år siden

  • Løst
  • Arkiveret

Accept the risk and continue-button not showing

Hi Firefox is not showing Accept the risk and continue-button when advance button is clicked. Due to this i am not able to access server. Image is attached for reference… (læs mere)

Hi Firefox is not showing Accept the risk and continue-button when advance button is clicked. Due to this i am not able to access server. Image is attached for reference.

I tried most of the things i know (reinstalled, clear cookies and data, cleared history) but it's not showing this option.

Using 96.0.2 (64-bit) on Window 10.

Pls support

Mahesh

Stillet af splendid.m for 2 år siden

Besvaret af Helping Firefox for 2 år siden

  • Løst
  • Arkiveret

Need help with custom Firefox config

There are multiple screenshots attached below, 2 of them showing setting marked in red. Those settings are pre-configured with the firefox.cfg file. I would like to also … (læs mere)

There are multiple screenshots attached below, 2 of them showing setting marked in red. Those settings are pre-configured with the firefox.cfg file. I would like to also pre-configure a list of other settings. You can also find those other settings below.

Anyways, i remember someone from this forum told me there is no "official documentation" for the firefox settings which are listed in about:config. Is there an "inofficial documentation"? If you could reply with the exact setting that i have to change according to the screenshot attached below that would be awesome, otherwise an URL for some sort of documentation would be welcome..

Basically all the setting i want to change exists and can be manually edited using the firefox settings, but theoretically could be easily pre-configured with the firefox.cfg.

All i need are setting-names/ids.

Stillet af Firefox_Beginner for 2 år siden

Besvaret af jscher2000 - Support Volunteer for 2 år siden