Why am I getting access denied messages
Why am I being denied access to some websites?
Why am I being denied access to some websites?
since my last update I am unable to access 4 web sites which I normally use.I have firefox ESR and am on windows 7. Edgesuite is blocking two of my sites, Sephora and Ar… (xem thêm)
since my last update I am unable to access 4 web sites which I normally use.I have firefox ESR and am on windows 7. Edgesuite is blocking two of my sites, Sephora and Argos and QVC tells me they are unavailable. Scottish Power tells me there is a client error.
Please help.
Started a few days ago, I'm getting a Access Denied error on Sky News web site-: Access Denied You don't have permission to access "http://news.sky.com/uk" on this serv… (xem thêm)
Started a few days ago, I'm getting a Access Denied error on Sky News web site-:
Access Denied You don't have permission to access "http://news.sky.com/uk" on this server. Reference #18.6e3f655f.1775840716.11cf0872 https://errors.edgesuite.net/18.6e3f655f.1775840716.11cf0872
Has anyone a clue? I can go to the Sky Watch live..... when I click any link I get the same result above. This happens when running Firefox in safe-mode.
Running Win 7 x64 115.33.0ESR This is the only problem I have.
Dave
i need to watch porn videos i Am over 18 Years
I am experiencing an issue where Google.com (other google domains work fine) will not load in Firefox, resulting in an infinite loading loop. Other browsers on the same s… (xem thêm)
I am experiencing an issue where Google.com (other google domains work fine) will not load in Firefox, resulting in an infinite loading loop. Other browsers on the same system (Brave) work fine.
Here are the steps I have already tried:
Reinstalled Firefox completely
Removed Firefox via sudo apt remove --purge firefox -y
Cleared all user profiles and caches: ~/.mozilla/firefox, ~/.cache/mozilla, ~/.config/Mozilla
Reinstalled via Flatpak
Tested network connectivity outside Firefox
curl google.com works correctly
DNS resolution works via getent hosts google.com in the host system
Checked proxy settings
Ensured “No proxy” is selected in Firefox → did not resolve the issue
Tested in Safe Mode (disabling extensions)
Problem persists, so not caused by extensions
Tried disabling IPv6 inside Firefox
network.dns.disableIPv6 set to true → no effect
Cleared DNS cache inside Firefox
about:networking#dns → clicked “Clear DNS Cache” → no effect
Disabled DNS-over-HTTPS (Secure DNS)
about:preferences#privacy → “Use secure DNS” → disabled → no effect
Disabled HTTP/3 (QUIC)
network.http.http3.enabled set to false → no effect
Verified Flatpak network permissions
flatpak info --show-permissions org.mozilla.firefox shows network access allowed
Inside the Flatpak shell:
flatpak run --command=sh org.mozilla.firefox getent hosts google.com
→ returns only IPv6 address: 2800:3f0:4001:839::200e google.com
Firefox is preventing me from going to certain websites because it is telling me I am using adblocker but I have none installed.. I am trying to play around with the sett… (xem thêm)
Firefox is preventing me from going to certain websites because it is telling me I am using adblocker but I have none installed.. I am trying to play around with the settings but I still can't do it. Is there an inbuilt adblocker? I need help please...
The last 2 days i have had problems signing into my Aliexpress account. The site has told me it is temporarily unavailable, then that the server is taking too long and no… (xem thêm)
The last 2 days i have had problems signing into my Aliexpress account. The site has told me it is temporarily unavailable, then that the server is taking too long and now that parental controls have been used.
I am 68. I don't need or use my computer for sites that require parental control.
I'm building a website from scratch and its going great. I just tried to implement a CSP and it worked except for one small section of my website that allows a user to up… (xem thêm)
I'm building a website from scratch and its going great. I just tried to implement a CSP and it worked except for one small section of my website that allows a user to upload an image and that image is supposed to be displayed back to the user. Anyways long story short the CSP blocked me so I tried to whitelist data: and it still didn't work. defeated I removed the CSP from Nginx to work on it later but when I went to try and test again I get this error. ``` Content-Security-Policy: The page’s settings blocked the loading of a resource (img-src) at data:image/webp;base64,UklGRqbeAABXRUJQV… because it violates the following directive: “default-src 'self'” ``` I have confirmed with Curl and by inspecting the network tab that there is no CSP included in the headers anymore. I have restarted Firefox, created a new Firefox profile, and cleared my cache to the end of time and yet still the error persists. I don't know where or how Firefox is storing website headers but they persists and also apparently work between profiles an implication I'm not going to delve into here. If someone could point me to the file where the headers are stored so I can delete it that would be wonderful.
specs Qubes OS 4.2 Mozilla Firefox 140.4.0esr
Our team has already tried to fix the issue for a week now and none of the approaches seem to fix the issue. Does the Firefox dev department have any hints or clues for u… (xem thêm)
Our team has already tried to fix the issue for a week now and none of the approaches seem to fix the issue. Does the Firefox dev department have any hints or clues for us?
Short description: Firefox network.lna.blocking blocks same-origin/loopback requests when the page is controlled by a Service Worker
Symptom: Login via OIDC fails in Firefox (the backend call after the IdP redirect is blocked). The error disappears if either network.lna.blocking=false is set or the Service Worker is disabled.
Environment: - Frontend (react) and backend run on the same machine (loopback/localhost)—no cross-network scenario. - Firefox with active network.lna.blocking (experimental Local Network Access feature, Chromium’s equivalent is Private Network Access).
Root Cause (Analysis): 1. apps/react/sw.js registers a global fetch listener via Workbox and calls workbox.core.clientsClaim(). This causes every open page to be immediately controlled by the Service Worker. 2. registerServiceWorker() is called unconditionally on every app start, regardless of authentication state—even on the login/OIDC page. 3. The app uses hash-routing (URL fragments like “#/oidc”); the login page and the rest of the app share the same document URL, so you can’t restrict the SW scope to “everything except login.” 4. Once a page is Service-Worker-controlled, every fetch—including requests not explicitly handled by Workbox routes—first goes through the SW’s fetch event (default behavior when any fetch listener is registered) before proceeding to the network if it isn’t intercepted. 5. Hypothesis: Firefox’s LNA implementation doesn’t correctly inherit the address-space classification (loopback/private/public) for SW-forwarded requests across the controlling client. A direct document fetch (loopback→loopback) is allowed, but an identical target fetch routed through the SW is blocked.
Reproduction (minimal): 1. Use Firefox with network.lna.blocking=true (the default in affected versions). 2. Load a page that registers a Service Worker with a fetch-event listener (e.g. via Workbox precacheAndRoute + clientsClaim()). 3. Ensure both the page and the target resource are served from localhost/loopback. 4. From the SW-controlled page, call fetch() against the loopback target resource → the request is blocked. 5. By comparison, the same fetch from a non-SW-controlled page succeeds. 6. Setting network.lna.blocking=false also allows the fetch to succeed under SW control.
Excluded Causes: - Different address spaces for frontend/backend (both are on the same loopback machine)—ruled out. - Misclassification due to redirect_uri or cross-origin navigation—the OIDC redirect is a top-level navigation (unaffected); only the subsequent backend call (token exchange/session validation in SsoLogin.tsx → ssoLoginSubmit) fails.
fire fox prevents me from visiting presstv.ir on my laptop.
I suddenly can no longer get my Gmail to appear in my Firefox browser. (I CAN get to +use Google.com, but when I try to go to https://mail.google.com/mail/u/0/#inbox", I … (xem thêm)
I suddenly can no longer get my Gmail to appear in my Firefox browser. (I CAN get to +use Google.com, but when I try to go to https://mail.google.com/mail/u/0/#inbox", I just get a blank white page.) I did not (to my knowledge) change any settings or have some strange thing happen. Please help!
Tell me if there is a way to clear old data and resume access to the site.
As of about last Thursday, I have been unable to access my Isomedia.com SpamTitan01 account. I usually have a trove of spam messages, which I look at and delete, except … (xem thêm)
As of about last Thursday, I have been unable to access my Isomedia.com SpamTitan01 account. I usually have a trove of spam messages, which I look at and delete, except for the one or two that are real emails. For the last 5 days My Titan vault is empty, though it is trying to retrieve data. My address is [redacted] @pioneernet.net Could it be that a Firefox update is preventing me from access?
Nancy Moore
Ubuntu 22.04.5 (kernel 5.15.0-153) Firefox updated from 142 to 143 automatically by snap. In version 142 and older, html file with image source pointing to local (remote)… (xem thêm)
Ubuntu 22.04.5 (kernel 5.15.0-153) Firefox updated from 142 to 143 automatically by snap.
In version 142 and older, html file with image source pointing to local (remote) network image file displays properly.
In version 143, this does not work anymore. I tried changing the image to point to a local computer file and it works.
In verion 143, If the link to the image is typed directly to the address tab in firefox, it works.
Perhaps some config setting need to be changed? Hope somebody can help.
Thanks in advance.
firefox network tab shows NS_ERROR_CONNECTION_REFUSED
Up until today (3/26) , accessing CompuServe (AOL) mail was not an issue. Now , getting to the site is OK , but when it attempts to access the mail , I get: Firefox Can’… (xem thêm)
Up until today (3/26) , accessing CompuServe (AOL) mail was not an issue. Now , getting to the site is OK , but when it attempts to access the mail , I get:
Firefox Can’t Open This Page
To protect your security, compuserve.com will not allow Firefox to display the page if another site has embedded it. To see this page, you need to open it in a new window.
What changed overnight? After getting the message , if I click on Mail , it works just fine. There is also a similar message when closing the page , but not every time.
Any clues?
I can no longer access amazon.com/ on firefox???
I can't get to my email thru Firefox to see if yu have responded tome.
I access Bluesky (bsky.app) for business on my PC. Since the last update, I've been unable to access Bluesky from my regular Firefox browser. I can using other browsers, … (xem thêm)
I access Bluesky (bsky.app) for business on my PC. Since the last update, I've been unable to access Bluesky from my regular Firefox browser. I can using other browsers, the mobile app, and, oddly, in Firefox private browsing. I've cleared my browser history, cookies, etc. I restarted the computer. I logged out of Bluesky (and now can't log back on the regular PC account because it claims I'm not connected to the internet). Yet, I had no trouble logging in using private browsing.
I've looked through settings, etc. and can't figure out what could be limiting my ability to access this website.
Firefox shows Server Not Found, although I can connect to other websites. Please help
Google has not worked on Firefox for me for the last 2-3 days and always gives the same error message: " The connection has timed out. The server at www.google.co.uk is t… (xem thêm)
Google has not worked on Firefox for me for the last 2-3 days and always gives the same error message: " The connection has timed out. The server at www.google.co.uk is taking too long to respond."
This issue only exists in Firefox, not in Opera or Edge. I have tried clearing the cache, using using Troubleshoot Mode, changing proxy settings to No Proxy, disabling antivirus, restarting the browser, and restarting my PC. None of these have made any difference, not even a slightly different error message. Google does, however, still work on my Firefox for Android.
As far as I can tell so far, Google is the only website affected by this issue, every other website works fine. Gmail and YouTube also still work fine, it's really only Google search.
Any help with this would be greatly appreciated!