顯示下列標籤的問題: 顯示所有問題
  • 已解決
  • 封存

CORS request did not succeed

To whom it may concern, I have an angular application accessing data from a 3rd party data provider. To get data, POST-requests are sent to the data provider REST API (h… (閱讀更多)

To whom it may concern,

I have an angular application accessing data from a 3rd party data provider. To get data, POST-requests are sent to the data provider REST API (https://capzlog.aero). The application works correctly using Google Chrome and Microsoft Edge. However, when using Firefox, the following error appears:

"Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://capzlog.aero/api/pel/public/externalsystemflights/GetMissingIDs. (Reason: CORS request did not succeed). Status code: (null)."

As the POST request contains basic authentication, a preflight-request (OPTIONS) is first sent to the data provider. This request fails when using Firefox (but not when using Chrome or Edge), see attached screen-shots.

I have spent 4 days on the internet trying to figure out a solution, but I could not solve the issue. I tried the following: 1) check the certificates of the 3rd party provider (https://capzlog.aero): There are no issues. 2) start Firefox in safe-mode, disactivating the "Enhanced Tracking Protecting", clearing the cache. 3) changing the following Firefox settings:

   security.enterprise_roots.enabled (true<->false)
   security.tls.version.min (1<->3)
   security.tls.version.max (2<->4)
   network.http.network-changed.timeout

I tried sending the "OPTIONS"-request using curl and it worked as expected:

curl --verbose -XOPTIONS -H "Access-Control-Request-Method: POST" -H "Origin: https://projectz.numericalsolutions.ch" https://capzlog.aero/api/pel/public/externalsystemflights/GetMissingIDs

  • Host capzlog.aero:443 was resolved.
  • IPv6: (none)
  • IPv4: 156.67.9.80
  • Trying 156.67.9.80:443...
  • Connected to capzlog.aero (156.67.9.80) port 443
  • ALPN: curl offers h2,http/1.1
  • TLSv1.3 (OUT), TLS handshake, Client hello (1):
  • TLSv1.3 (IN), TLS handshake, Server hello (2):
  • TLSv1.2 (IN), TLS handshake, Certificate (11):
  • TLSv1.2 (IN), TLS handshake, Server key exchange (12):
  • TLSv1.2 (IN), TLS handshake, Server finished (14):
  • TLSv1.2 (OUT), TLS handshake, Client key exchange (16):
  • TLSv1.2 (OUT), TLS change cipher, Change cipher spec (1):
  • TLSv1.2 (OUT), TLS handshake, Finished (20):
  • TLSv1.2 (IN), TLS handshake, Finished (20):
  • SSL connection using TLSv1.2 / ECDHE-RSA-AES256-GCM-SHA384 / secp384r1 / rsaEncryption
  • ALPN: server accepted h2
  • Server certificate:
  • subject: CN=capzlog.aero
  • start date: Dec 31 10:14:59 2024 GMT
  • expire date: Mar 31 10:14:58 2025 GMT
  • subjectAltName: host "capzlog.aero" matched cert's "capzlog.aero"
  • issuer: C=US; O=Let's Encrypt; CN=R10
  • SSL certificate verify ok.
  • Certificate level 0: Public key type RSA (3072/128 Bits/secBits), signed using sha256WithRSAEncryption
  • Certificate level 1: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption
  • Certificate level 2: Public key type RSA (4096/152 Bits/secBits), signed using sha256WithRSAEncryption
  • using HTTP/2
  • [HTTP/2] [1] OPENED stream for https://capzlog.aero/api/pel/public/externalsystemflights/GetMissingIDs
  • [HTTP/2] [1] [:method: OPTIONS]
  • [HTTP/2] [1] [:scheme: https]
  • [HTTP/2] [1] [:authority: capzlog.aero]
  • [HTTP/2] [1] [:path: /api/pel/public/externalsystemflights/GetMissingIDs]
  • [HTTP/2] [1] [user-agent: curl/8.6.0]
  • [HTTP/2] [1] [accept: */*]
  • [HTTP/2] [1] [access-control-request-method: POST]
  • [HTTP/2] [1] [origin: https://projectz.numericalsolutions.ch]

> OPTIONS /api/pel/public/externalsystemflights/GetMissingIDs HTTP/2 > Host: capzlog.aero > User-Agent: curl/8.6.0 > Accept: */* > Access-Control-Request-Method: POST > Origin: https://projectz.numericalsolutions.ch > < HTTP/2 204 < cache-control: private < server: Microsoft-IIS/10.0 < access-control-allow-origin: https://projectz.numericalsolutions.ch < access-control-allow-credentials: true < x-aspnet-version: 4.0.30319 < x-powered-by: ASP.NET < date: Thu, 16 Jan 2025 07:12:32 GMT <

  • HTTP/2 stream 1 was not closed cleanly: HTTP_1_1_REQUIRED (err 13)
  • Downgrades to HTTP/1.1
  • Connection #0 to host capzlog.aero left intact
  • Issue another request to this URL: 'https://capzlog.aero/api/pel/public/externalsystemflights/GetMissingIDs'
  • Found bundle for host: 0x55ecfa0a46e0 [can multiplex]
  • Hostname capzlog.aero was found in DNS cache
  • Trying 156.67.9.80:443...
  • Connected to capzlog.aero (156.67.9.80) port 443
  • ALPN: curl offers http/1.1
  • SSL reusing session ID
  • TLSv1.3 (OUT), TLS handshake, Client hello (1):
  • TLSv1.3 (IN), TLS handshake, Server hello (2):
  • TLSv1.2 (IN), TLS handshake, Finished (20):
  • TLSv1.2 (OUT), TLS change cipher, Change cipher spec (1):
  • TLSv1.2 (OUT), TLS handshake, Finished (20):
  • SSL connection using TLSv1.2 / ECDHE-RSA-AES256-GCM-SHA384 / secp384r1 / UNDEF
  • ALPN: server accepted http/1.1
  • Server certificate:
  • subject: CN=capzlog.aero
  • start date: Dec 31 10:14:59 2024 GMT
  • expire date: Mar 31 10:14:58 2025 GMT
  • subjectAltName: host "capzlog.aero" matched cert's "capzlog.aero"
  • issuer: C=US; O=Let's Encrypt; CN=R10
  • SSL certificate verify ok.
  • using HTTP/1.x

> OPTIONS /api/pel/public/externalsystemflights/GetMissingIDs HTTP/1.1 > Host: capzlog.aero > User-Agent: curl/8.6.0 > Accept: */* > Access-Control-Request-Method: POST > Origin: https://projectz.numericalsolutions.ch > < HTTP/1.1 204 No Content < Cache-Control: private < Transfer-Encoding: chunked < Server: Microsoft-IIS/10.0 < Access-Control-Allow-Origin: https://projectz.numericalsolutions.ch < Access-Control-Allow-Credentials: true < X-AspNet-Version: 4.0.30319 < X-Powered-By: ASP.NET < Date: Thu, 16 Jan 2025 07:12:32 GMT <

Here, a comparison of the "OPTIONS"-HTTP-request as sent by Chrome and by Firefox:

CHROME OPTIONS /api/pel/public/externalsystemflights/GetMissingIDs HTTP/1.1 Accept: */* Accept-Encoding: gzip, deflate, br, zstd Accept-Language: en-US,en;q=0.9a comparison of the "OPTIONS"-HTTP-request as sent by Chrome and by Firefox: Access-Control-Request-Headers: authorization,content-type Access-Control-Request-Method: POST Connection: keep-alive Host: capzlog.aero Origin: https://projectz.numericalsolutions.ch Referer: https://projectz.numericalsolutions.ch/ Sec-Fetch-Dest: empty Sec-Fetch-Mode: cors Sec-Fetch-Site: cross-site User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36


FIREFOX OPTIONS /api/pel/public/externalsystemflights/GetMissingIDs undefined Host: capzlog.aero User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0 Accept: */* Accept-Language: en-US,en;q=0.5 Accept-Encoding: gzip, deflate, br, zstd Access-Control-Request-Method: POST Access-Control-Request-Headers: authorization,content-type Referer: https://projectz.numericalsolutions.ch/ Origin: https://projectz.numericalsolutions.ch Connection: keep-alive Sec-Fetch-Dest: empty Sec-Fetch-Mode: cors Sec-Fetch-Site: cross-site Priority: u=4 TE: trailers

And the response header as seen by Chrome:

CHROME HTTP/1.1 200 OK Content-Type: application/json; charset=utf-8 Content-Language: en Server: Microsoft-IIS/10.0 Access-Control-Allow-Origin: https://projectz.numericalsolutions.ch Access-Control-Allow-Credentials: true Set-Cookie: AppSettings=Culture=en-US&Language=English&CountryAlpha2=CH; expires=Fri, 31-Dec-9999 23:59:59 GMT; path=/; secure; SameSite=Lax X-Powered-By: ASP.NET Date: Thu, 16 Jan 2025 07:19:59 GMT Content-Length: 2

Here, a comparison of the Network Traffic as seen for Chrome and for Firefox:

CHROME 17:07:46.550256 IP ANYPC.57562 > 156.67.9.80.https: Flags [P.], seq 1480736564:1480737180, ack 2430285572, win 501, length 616 17:07:46.557654 IP 156.67.9.80.https > ANYPC.57562: Flags [P.], seq 1:393, ack 616, win 8212, length 392 17:07:46.557654 IP 156.67.9.80.https > ANYPC.57562: Flags [P.], seq 393:427, ack 616, win 8212, length 34 17:07:46.557683 IP ANYPC.57562 > 156.67.9.80.https: Flags [.], ack 393, win 501, length 0 17:07:46.557688 IP ANYPC.57562 > 156.67.9.80.https: Flags [.], ack 427, win 501, length 0 17:07:46.558334 IP ANYPC.57562 > 156.67.9.80.https: Flags [F.], seq 616, ack 427, win 501, length 0 17:07:46.558741 IP ANYPC.42786 > 156.67.9.80.https: Flags [S], seq 2926210792, win 64240, options [mss 1460,sackOK,TS val 2936933242 ecr 0,nop,wscale 7], length 0 17:07:46.562927 IP 156.67.9.80.https > ANYPC.57562: Flags [F.], seq 427, ack 617, win 8212, length 0 17:07:46.562962 IP ANYPC.57562 > 156.67.9.80.https: Flags [.], ack 428, win 501, length 0 17:07:46.563492 IP 156.67.9.80.https > ANYPC.42786: Flags [S.], seq 1974100572, ack 2926210793, win 65535, options [mss 1460,nop,wscale 8,nop,nop,sackOK], length 0 17:07:46.563514 IP ANYPC.42786 > 156.67.9.80.https: Flags [.], ack 1, win 502, length 0 17:07:46.565558 IP ANYPC.42786 > 156.67.9.80.https: Flags [P.], seq 1:1743, ack 1, win 502, length 1742 17:07:46.572094 IP 156.67.9.80.https > ANYPC.42786: Flags [.], ack 1743, win 8212, length 0 17:07:46.572094 IP 156.67.9.80.https > ANYPC.42786: Flags [P.], seq 1:161, ack 1743, win 8212, length 160 17:07:46.572133 IP ANYPC.42786 > 156.67.9.80.https: Flags [.], ack 161, win 501, length 0 17:07:46.572276 IP ANYPC.42786 > 156.67.9.80.https: Flags [P.], seq 1743:1794, ack 161, win 501, length 51 17:07:46.572421 IP ANYPC.42786 > 156.67.9.80.https: Flags [P.], seq 1794:3197, ack 161, win 501, length 1403 17:07:46.583942 IP 156.67.9.80.https > ANYPC.42786: Flags [.], ack 3197, win 8206, length 0 17:07:46.710020 IP 156.67.9.80.https > ANYPC.42786: Flags [P.], seq 161:638, ack 3197, win 8206, length 477 17:07:46.751327 IP ANYPC.42786 > 156.67.9.80.https: Flags [.], ack 638, win 501, length 0 17:07:46.754201 IP 156.67.9.80.https > ANYPC.42786: Flags [P.], seq 161:638, ack 3197, win 8206, length 477 17:07:46.754231 IP ANYPC.42786 > 156.67.9.80.https: Flags [.], ack 638, win 501, options [nop,nop,sack 1 {161:638}], length 0$

FIREFOX 17:08:28.962851 IP ANYPC.35980 > 156.67.9.80.https: Flags [S], seq 2319755284, win 64240, options [mss 1460,sackOK,TS val 2936975646 ecr 0,nop,wscale 7], length 0 17:08:28.972248 IP 156.67.9.80.https > ANYPC.35980: Flags [S.], seq 1053801102, ack 2319755285, win 65535, options [mss 1460,nop,wscale 8,nop,nop,sackOK], length 0 17:08:28.972330 IP ANYPC.35980 > 156.67.9.80.https: Flags [.], ack 1, win 502, length 0 17:08:28.974266 IP ANYPC.35980 > 156.67.9.80.https: Flags [P.], seq 1:1894, ack 1, win 502, length 1893 17:08:28.987389 IP 156.67.9.80.https > ANYPC.35980: Flags [.], ack 1894, win 1026, length 0 17:08:28.987433 IP 156.67.9.80.https > ANYPC.35980: Flags [P.], seq 2921:3937, ack 1894, win 1026, length 1016 17:08:28.987461 IP ANYPC.35980 > 156.67.9.80.https: Flags [.], ack 1, win 502, options [nop,nop,sack 1 {2921:3937}], length 0 17:08:28.987598 IP 156.67.9.80.https > ANYPC.35980: Flags [.], seq 1:1461, ack 1894, win 1026, length 1460 17:08:28.987647 IP ANYPC.35980 > 156.67.9.80.https: Flags [.], ack 1461, win 524, options [nop,nop,sack 1 {2921:3937}], length 0 17:08:28.987682 IP 156.67.9.80.https > ANYPC.35980: Flags [.], seq 1461:2921, ack 1894, win 1026, length 1460 17:08:28.987707 IP ANYPC.35980 > 156.67.9.80.https: Flags [.], ack 3937, win 547, length 0 17:08:28.994553 IP ANYPC.35980 > 156.67.9.80.https: Flags [P.], seq 1894:2052, ack 3937, win 547, length 158 17:08:29.005007 IP 156.67.9.80.https > ANYPC.35980: Flags [P.], seq 3937:3988, ack 2052, win 1025, length 51 17:08:29.005007 IP 156.67.9.80.https > ANYPC.35980: Flags [P.], seq 3988:4057, ack 2052, win 1025, length 69 17:08:29.005700 IP ANYPC.35980 > 156.67.9.80.https: Flags [.], ack 4057, win 547, length 0 17:08:29.006086 IP ANYPC.35980 > 156.67.9.80.https: Flags [P.], seq 2052:2151, ack 4057, win 547, length 99 17:08:29.006123 IP ANYPC.35980 > 156.67.9.80.https: Flags [P.], seq 2151:2577, ack 4057, win 547, length 426 17:08:29.008948 IP ANYPC.35980 > 156.67.9.80.https: Flags [P.], seq 2577:2615, ack 4057, win 547, length 38 17:08:29.018116 IP 156.67.9.80.https > ANYPC.35980: Flags [.], ack 2615, win 1023, length 0 17:08:29.018116 IP 156.67.9.80.https > ANYPC.35980: Flags [P.], seq 4057:4095, ack 2615, win 1023, length 38 17:08:29.024518 IP 156.67.9.80.https > ANYPC.35980: Flags [P.], seq 4095:4322, ack 2615, win 1023, length 227 17:08:29.024518 IP 156.67.9.80.https > ANYPC.35980: Flags [P.], seq 4322:4364, ack 2615, win 1023, length 42 17:08:29.024943 IP ANYPC.35980 > 156.67.9.80.https: Flags [.], ack 4364, win 570, length 0 17:08:35.342337 IP ANYPC.42786 > 156.67.9.80.https: Flags [.], ack 1974101210, win 501, length 0 17:08:35.349317 IP 156.67.9.80.https > ANYPC.42786: Flags [.], ack 1, win 8206, length 0

I really do not know what to do anymore to solve that problem.

As the problem is impacting hundreds of users, I really hope there is a solution.

In advance thanks for your help.

brugger2 於 6 個月前 詢問

jscher2000 - Support Volunteer 於 5 個月前 解答

  • 已解決

Most Google tools are unusable because the content appears completely black.

Hello, For a few days now I've been unable to use Google tools via Firefox (I can't tell if this is due to an update or not). As soon as a document (usually an editable… (閱讀更多)

Hello,

For a few days now I've been unable to use Google tools via Firefox (I can't tell if this is due to an update or not).

As soon as a document (usually an editable or navigable area) is opened on the page, it appears completely black. Interactions work correctly at first glance (it's possible to click, write, interact with content that isn't displayed. The problem seems to be purely visual.

I've encountered the problem in all Google Sheet or Docs documents (including when I'm making a new one) and on Google Maps, regardless of location (in the case of Google maps, a notable point is that the map is displayed and then turns black after one or two seconds).

I don't have this problem on another browser, I have it in PM.

Do you have any ideas on how to find the cause and fix the problem?

Have a nice day!

Myra 於 4 個月前 詢問

jscher2000 - Support Volunteer 於 4 個月前 解答

  • 已解決

Unable to log into Google account after latest update

While I am able to log into my Google account in Chrome, I am unable to do so in Firefox after the latest update. Whenever I try, I am redirected to the attached support … (閱讀更多)

While I am able to log into my Google account in Chrome, I am unable to do so in Firefox after the latest update. Whenever I try, I am redirected to the attached support page, which asks me to delete cookies and cache contents. Deleting those does not help.

Please help!

altquixote 於 3 週前 詢問

altquixote 於 2 週前 解答

  • 已解決

Firefox can't open Gmail

I searched the forums and found a few similar entries but i couldn't see any solution so far. Whenever i try to open my inbox the page initially loads and shows the prog… (閱讀更多)

I searched the forums and found a few similar entries but i couldn't see any solution so far. Whenever i try to open my inbox the page initially loads and shows the progress bar but after the progress hits 100% it just hangs there and nothing happens. See screenshot please. Gmail works normally in other browser (MS Edge) and my Android phone. I've been experiencing this issue for more than a month now. Not sure exactly when it started. Probably with v134. Installing v135 fresh didn't change anything. This is one of the most persistent issues i've experienced about browsers. I use Avast AV but all browser modules are disabled + web shield disabled.

So far i tried these steps to no avail: - Clear cache and history - Clear whole site data by using "forget site" feature - Clear cache and cookies using the padlock icon next to the search bar - Disable/enable hardware acceleration - Disable/enable javascript (gmail requires javascript to work anyways) - Disabled all add ons/extensions, tried safe mode - Reinstalled firefox after uninstalling and deleting any left over folders

My system specs: - Windows 10 pro 22h2 x64 - ASrock B450M HDV R4 Mainboard - AMD Ryzen R5 3600X CPU - AMD RX 6600 GPU - 16 GB DDR4 3000 RAM, 250 GB M2 SSD

RudeBoy8066 於 4 個月前 詢問

jonzn4SUSE 於 4 個月前 解答

  • 已解決

Microsof Outlook Web Login

Hello, Not sure if posted under the right section. Recently started having an issue trying to sign in to Microsoft Outlook (formally Hotmail) Web. I don't recall any ch… (閱讀更多)

Hello,

Not sure if posted under the right section.

Recently started having an issue trying to sign in to Microsoft Outlook (formally Hotmail) Web. I don't recall any changes i made or updates.

When i try to sign in, it opens a new tab and takes me back to the sign in page. This just continues.

Tried using MS Edge and don't have the issue.

So far tried Safe Mode which disabled add-ons, which are currently Add Block plus, and New Tab Override and the issue remains. Not sure if i tried the refresh option but i think it removes the extensions which is not the end of the world.

Added a few images, one shows duplicate tabs, which will continue

Firefox version 140.0.4 (64-bit)

Any ideas whats going

Thanks

jamesjudge 於 5 天前 詢問

jonzn4SUSE 於 5 天前 解答

  • 已解決

Unable to enter one particular website

There is one particular website that I use quite frequently. Lately I haven't been able to log onto it without encountering a page verifying I am a human, and I can't pro… (閱讀更多)

There is one particular website that I use quite frequently. Lately I haven't been able to log onto it without encountering a page verifying I am a human, and I can't proceed (the page just loops). This has happened on other browsers too, though I fixed the problem there by disabling my adblocker. But that doesn't help here on Firefox. Any suggestions?

Ladyjay12 於 2 天前 詢問

jscher2000 - Support Volunteer 於 2 天前 解答

  • 已解決

Youtube videos won't play

I'm no longer able to play Youtube videos on Firefox. I've tried everything from re-starting laptop (this worked initially) to refreshing/updating Firefox browser as well… (閱讀更多)

I'm no longer able to play Youtube videos on Firefox. I've tried everything from re-starting laptop (this worked initially) to refreshing/updating Firefox browser as well as clearing Firefox cache and cookies. Any help will be appreciated.

Thanks, MC [email removed]@aol.com

p.s. Youtube does work and play on my Edge browser

chowbabyhi 於 5 個月前 詢問

chowbabyhi 於 5 個月前 解答

  • 已解決
  • 被鎖定

Viewing streams on Twitch.tv quickly become corrupted (colorful static)

Hello, I am suffering from an odd issue when using twitch.tv. In short, when viewing peoples streams, my video feed will usually turn into colorful static (aka "clown vom… (閱讀更多)

Hello, I am suffering from an odd issue when using twitch.tv. In short, when viewing peoples streams, my video feed will usually turn into colorful static (aka "clown vomit"). I suspect that the issue is coming from Firefox, but I can't be certain. I am using a newly-bought laptop and the issue could be caused by a large number of things, theoretically. Here is what I know:

  • When viewing on twitch.tv with quality 360p or higher, the video feed will usually (95%) become colorful static within 1 minute or less. When this happens, the video feed does not ever recover until page is refreshed or quality is changed. (I know a bit about video encoding, so this seems extremely odd to me, if it were due to a networking thing that lost some packets, a full-image frame should come alone sooner or later and fix things, but that never seems to happen)
  • The video feed is far less likely to become corrupted when viewing at 160p, but can still happen.
  • The ads may become corrupted in the same way that the main video feed can.
  • When the feed is corrupted, the rest of the Twitch interface (pause/play, volume, quality select) is extremely laggy.
  • When the feed is corrupted, if I pause the stream, sometimes the paused corrupted image is not completely stationary! There will be flickering in small portions of the image, looking similar to texture fighting in 3d rendering, flickering between two equally-but-differently corrupted versions of the image
  • The issue never appears when using Chrome to watch twitch.tv. This is what makes me think Firefox is the culprit, not Twitch or networking or graphics drivers.
  • Disabling my browser addons does not help.
  • Private browsing window does not help.
  • Clearing my browser cache does not help.
  • I have had the issue happen on Youtube exactly once in 2 weeks, not sure if that's related or not, I think it was a normal "lost some network traffic but fixed itself the next time a full frame was received" thing.
  • Video live streams on Youtube don't get corrupted the way they do on Twitch.

Can someone please give me advice for how to fix this? Has anyone seen anything like this before? Is there a way for me to get deeper under the hood of either Twitch or Firefox and more closely debug the video stream when it fails?

brian.henson1 於 5 個月前 詢問

brian.henson1 於 5 個月前 解答

  • 已解決
  • 封存

Web Minidisc Pro

Ive been told that firefox does not support https://web.minidisc.wiki/ (Web minidic pro) and only google chrome does. I hate google chrome. how difficult would it be fo… (閱讀更多)

Ive been told that firefox does not support https://web.minidisc.wiki/ (Web minidic pro) and only google chrome does. I hate google chrome. how difficult would it be for firefox to support usb devices like a minidisc recorder player. I guess its down to drivers or some form of plug in? Could firefox be made to support my minidisc or is it too much of a security/software performance issue? Cheers Mark

g0nmy 於 6 個月前 詢問

jonzn4SUSE 於 6 個月前 解答

  • 已解決

Black Box around Google Search Results

I think this might be more of a Google issue, but it happens when using Firefox so I'll post it here. As of Jun 25, 2025, I have noticed dark black boxes appearing around… (閱讀更多)

I think this might be more of a Google issue, but it happens when using Firefox so I'll post it here. As of Jun 25, 2025, I have noticed dark black boxes appearing around my Google search results. I normally use a dark theme in Google, but the color is a muted grey/black. Today, however, dark black boxes have begun appearing around my search result. I really dislike the appearance as it is quite jarring. Interestingly enough, this issue only happens when signed into a Google account. Some Reddit users have reported having the same issue even in other browsers when using Google search. It seems to be something that Google has done on thier end but I was wondering if there was a potential workaround in the meantime.

Bradley Hughes 於 2 週前 詢問

jscher2000 - Support Volunteer 於 2 週前 解答

  • 已解決
  • 封存

NYTIMES website not working properly anymore in FireFox

28Dec2024 I've been using FireFox to login to nytimes.com for many years. Recently, the nytimes.com website hasn't been working properly. It works fine using Edge. Sy… (閱讀更多)

28Dec2024

I've been using FireFox to login to nytimes.com for many years. Recently, the nytimes.com website hasn't been working properly. It works fine using Edge.

Symptoms are: (1) The zoom level at login and the zoom on going from page to page is very inconsistent. (2) Clicking the Account button does not open the account settings page. Instead it causes the screen background to become grey.

I restarted FireFox in troubleshooting mode, but this did not improve the behavior. I have a single extension (Adblock). Disabling Adblock on nytimes.com also did not improve things.

mitchb9 於 6 個月前 詢問

mitchb9 於 6 個月前 解答

  • 已解決

update broke at&t email

The latest firefox browser for windows desktop pc broke the ability to log in to at&t (also called yahoo) email. The email works fine on microsoft edge and chrome. … (閱讀更多)

The latest firefox browser for windows desktop pc broke the ability to log in to at&t (also called yahoo) email. The email works fine on microsoft edge and chrome. It worked fine on firefox until the last update.

grwink 於 3 個月前 詢問

NoahSUMO 於 3 個月前 解答

  • 已解決
  • 封存

Unable to login or make donations on DTS site

On the Dallas Theological Seminary site, only this site, suddenly I'm unable to login - it doesn't recognize my password. Nor will it allow me to make a donation. I comp… (閱讀更多)

On the Dallas Theological Seminary site, only this site, suddenly I'm unable to login - it doesn't recognize my password. Nor will it allow me to make a donation. I complete the donation form and it just keeps going round and round "processing" but never does it. I cleared my cache, re-started my laptop, made sure Win 11 is updated, still same problem. I did not try disabling extensions because they haven't changed in a long time. I opened it in incognito window and was able to login and make donation there. However I could not log in to my Gmail account from there. I went to a different laptop that runs Opera browser and logged into DTS just fine. This problem just started. Until recently I had no trouble with this site.

Fran Turner 於 6 個月前 詢問

cor-el 於 6 個月前 解答

  • 已解決

I can't log into my dr. Their support says to not use Firefox.

I can't log into my doctor. Their web support says to not use Firefox. https://www.samaritanhealthcare.com/mychart/ I've been with Firefox for years. I don't want to ch… (閱讀更多)

I can't log into my doctor. Their web support says to not use Firefox.

https://www.samaritanhealthcare.com/mychart/

I've been with Firefox for years. I don't want to change browsers.

Can you fix the communication problem between Firefox and MyChart?

Thanks for everything,

Jude

judeeylander 於 2 週前 詢問

Denys 於 2 週前 解答

  • 已解決

Secure Form is blocked

I regularly receive email advice (via Thunderbird) from companies to access my account with them. Two days ago I selected a link to direct me to the secure form. I note … (閱讀更多)

I regularly receive email advice (via Thunderbird) from companies to access my account with them.

Two days ago I selected a link to direct me to the secure form. I note that the exact same link has been provided to me in the past and opened. This time however I was confronted with "Invalid Address".

I was advised to copy the link into another browser; I chose "Edge" and the form opened.

I have cleared FireFox's "Recent History" but that still gives no joy.

How do I overcome this?

Is there something in a configuration file that I might edit, or a potentially corrupt Windows Registry entry?

I do not use any Windows Security depending upon Bitdefender (which has never created any issues of this nature).

brijohnnow 於 2 個月前 詢問

brijohnnow 於 2 個月前 解答

  • 被鎖定

firefox desktop does not show IRS form filler correctly 2024

the IRS has free tax form filler that I have used for years. This year (tax year 2024) the page for the filler does not show correctly. most lines overlap and cannot fi… (閱讀更多)

the IRS has free tax form filler that I have used for years. This year (tax year 2024) the page for the filler does not show correctly. most lines overlap and cannot fill in fields. I emails IRS and they say it is the browser issue---clear your cache..I did and not luck.. I did try EDGE and they show correctly. I have w10 fully updated on my laptop. anyone else have this issue and how do I fix..I prefer Firefox.

OldBob2 於 5 個月前 詢問

jscher2000 - Support Volunteer 最近回覆於 5 個月前

  • 已解決

Problems accessing Google products on FF

About a week ago, I started having these problems with FF 136.0 (64-bit) on Windows 10: Gmail (mail.google.com) became completely inaccessible Google Maps (maps.go… (閱讀更多)

About a week ago, I started having these problems with FF 136.0 (64-bit) on Windows 10:

  • Gmail (mail.google.com) became completely inaccessible
  • Google Maps (maps.google.com) opens normally, but app icons stopped displaying correctly (as in attached screenshot)

Comments:

  • Gmail and Google Maps are accessible normally on Chrome and Edge
  • YouTube (which is another Google product) works fine on my FF
  • Tried refreshing FF then tried clearing all cookies, caches, and browsing history, but made no improvement of any kind.

Any advice?

Khalid 於 4 個月前 詢問

Khalid 於 4 個月前 解答

  • 已解決

Firefox 136.0 breaks Disney Hotstar

So Firefox automatically updated to version 136.0 and now Disney Hotstar (hotstar.com) website does not work. It shows the following error: "Something went wrong. Don't w… (閱讀更多)

So Firefox automatically updated to version 136.0 and now Disney Hotstar (hotstar.com) website does not work. It shows the following error: "Something went wrong. Don't worry our best minds are on it. Please use the skip option if available or try again later." (see screenshot) There is no skip option.

I downgraded to version 135.0.1 and everything works fine. Hotstar website also works fine in other browsers. But soon the automatic update kicks in and with version 136.0 Disney Hotstar does not work at all.

Firefox version: 136.0 64-bit for Windows OS: Windows 11 24H2 Home Edition (build 26100.3194)

Thank you in advance :)

amzbun 於 4 個月前 詢問

amzbun 於 4 個月前 解答

  • 已解決

Audio not playing on certain websites

Hello, when I am on Firefox I am unable to play audio from websites such as Reddit,Twitter and other sites but I am able to do so in youtube. This does not happen to me i… (閱讀更多)

Hello, when I am on Firefox I am unable to play audio from websites such as Reddit,Twitter and other sites but I am able to do so in youtube. This does not happen to me in other browsers such as brave/edge. Things I have tried are refreshing firefox, turning off extensions, installing windows media pack, trying a different sound device, adjusting sound mixer, allowing autoplay, update drivers. This started happening after I did a clean install of windows. Any help would be appreciated.

alanjzamora 於 4 個月前 詢問

alanjzamora 於 4 個月前 解答

  • 已解決

Logging in to Reddit is blocked.

Firefox is not allowing me to login to Reddit.com. Nor can I create a new account with Reddit.com with Firefox. I can login fine with Microsoft Edge. I don't want to use… (閱讀更多)

Firefox is not allowing me to login to Reddit.com. Nor can I create a new account with Reddit.com with Firefox.

I can login fine with Microsoft Edge. I don't want to use Microsoft Edge.

I can login fine with Chrome. I don't want to use Chrome.

What's Firefox's problems?

moonpupy@outlook.com

moonpupy 於 3 個月前 詢問

jonzn4SUSE 於 3 個月前 解答