Showing questions tagged: Show all questions
  • Solved

Microsoft OneDrive photos of the day not displaying

Each day I get an email from Microsoft OneDrive with photos of the day, titled On this day"'. Clicking on a button titled "View all memories" on the email causes the phot… (read more)

Each day I get an email from Microsoft OneDrive with photos of the day, titled On this day"'. Clicking on a button titled "View all memories" on the email causes the photos from that day to appear as a new tab on Firefox. Perfect. Until a couple of weeks ago.

At that time, clicking on it caused the new tab to appear but no photos are displayed. The screen looks as if it's trying to load the pics, but nothing shows up. When I open up the OneDrive website directly, I can click on "Photos" and see ALL photos in my cloud account, and there is also a row at the top under the title "For You" which shows several clickable buttons titled "September <XXX>", "A new trip", "Revisiting <month XXX>", "Last week", etc. Clicking on each of those separately yields the same result as when I clicked on "View all memories" from the original email, which is that nothing is displayed but it appears to be trying.

Below the "For You" row is "All Photos" sections which has everything, but not organized like the "For You" row. It simply is the entire set of my pictures from which the "For You" buttons do their selection from.

I exchanged emails with the MS OneDrive support over several days, who made numerous suggestions, but none worked. We did determine, though, that the photos do appear seamlessly if I switch to Edge as the default browser, but I want Firefox as my default.

Because the photos did appear under a different browser, they suggested I contact Firefox, which I'm doing. And this is after I've tried all the suggestions contained in a google search I entered as: "firefox setting to allow microsoft onedrive photos of the day".

Understandably, I'm very frustrated and appreciate any suggestions anyone can provide. Thank you.

Asked by jmill53 5 months ago

Answered by Denys 4 months ago

mpenzie tv

When I play YouTube videos in Firefox, the video stutters and drops frames, even at 480p. Audio keeps playing normally. This does not happen in Chrome on the same compute… (read more)

When I play YouTube videos in Firefox, the video stutters and drops frames, even at 480p. Audio keeps playing normally. This does not happen in Chrome on the same computer. The issue started about a week ago. I’m using Firefox on Windows 11 on a laptop. Restarting Firefox did not fix it.

Asked by MPENZI 2 months ago

Last reply by Paul 2 months ago

  • Solved

Unable to play some YouTube videos on Firefox on Steam Deck

First off, apologies - I don't know if this is a YouTube problem, a Steam Deck problem or a Firefox problem. I haven't been able to figure out the cause of this problem f… (read more)

First off, apologies - I don't know if this is a YouTube problem, a Steam Deck problem or a Firefox problem. I haven't been able to figure out the cause of this problem for months so I'm trying you guys because you're more responsive than YouTube has been so I'm really hoping it's a Firefox problem.

Basically since early June I've been getting "an error occurred" errors for YouTube videos of approximately an hour. Longer videos and shorter videos tend to play fine, but I get the issue with videos under ten minutes sometimes as well.

This only occurs in Firefox on my Steam Deck (SteamOS). Other browsers and other devices are fine.

I have cleared my cache, cleared cookies, disabled extensions and logged in and out of YouTube to no avail. The problem still occurs in troubleshoot mode and updating Firefox hasn't fixed it.

Would appreciate any troubleshooting tips and again, apologies if this ends up not being a Firefox problem, I just don't know what else to try at this point.

Asked by Umbravita 4 months ago

Answered by Umbravita 4 months ago

  • Solved
  • Archived

Playing video on bilibili can't use hardware decoder

I just need how to make use of the hardware decoder on bilibili.com when I watching videos by Firefox android I have tried to solve this problem by using AI,but I have fo… (read more)

I just need how to make use of the hardware decoder on bilibili.com when I watching videos by Firefox android

I have tried to solve this problem by using AI,but I have followed the steps given by Deepseek, I have made sure my device are support HEVC and AVC hardware decoding (Snapdragon 870), I also tried to switch my UA to Safari 18, MacOS X, it couldn't help either,but I do the same steps on Edge Canary it works. It bothered me a lot,every time I switched the quality options to 8k,the video playback becomes very According to edge://gpu, I'm very sure 8k video hardware decoding is available on my device. Thank you weather you can or cannot solve my problem.

(Sorry about my poor English, I'm still studying it in school)

Asked by withoutnames773 1 year ago

Answered by withoutnames773 1 year ago

  • Solved

F1TV stopped working

Hi, since the latet update thi week (20 november) my F1TV doesnt work anymore via https://f1tv.formula1.com/. It states : Unsupported Browser This browser is currently un… (read more)

Hi, since the latet update thi week (20 november) my F1TV doesnt work anymore via https://f1tv.formula1.com/.

It states : Unsupported Browser

This browser is currently unsupported. To experience F1 TV, please switch to an alternative browser. Please see our FAQs for more information

Pleae help as this weekend is La Vega F1. Thank! Erik.

Asked by Bangsaen 3 months ago

Answered by Paul 3 months ago

  • Solved

Google Passkey Prompt

Since the Tahoe upgrade I can't login to my google account because the 'Passkey' prompt that the system is supposed to automatically trigger, never eventuates as it used … (read more)

Since the Tahoe upgrade I can't login to my google account because the 'Passkey' prompt that the system is supposed to automatically trigger, never eventuates as it used to in Sequoia. I am signed into my account on the same desktop using Safari but my preferred browser is Firefox, so this is quite frustrating.

Asked by QbnPat 5 months ago

Answered by Pakeeza Safdar 5 months ago

  • Solved

Amazon Prime Video no progress bar

Last week we lost the progress bar at the bottom of videos on Prime Video. When I cursor over the bar it returns Infinity:NaN:NaN. Switching to MS Edge and the progress … (read more)

Last week we lost the progress bar at the bottom of videos on Prime Video. When I cursor over the bar it returns Infinity:NaN:NaN. Switching to MS Edge and the progress bar appears as normal. I get the same results in Firefox on both my PC and Laptop. I have updated and reinstalled Firefox to the lastest version. I have NOT added any new extensions in the last year.

Asked by Curt W 6 months ago

Answered by jonzn4SUSE 6 months ago

  • Solved
  • Archived

Images from canvas black or transparent: img.src = canvas.toDataURL(); // FF: 'image/jpeg'=black. Png,webp,default=transparent.

I don't know if this ever worked in FF, since I've been on Chrome a while. I tried canvas.toBlob() in FF without a solution. The behavior is the same whether the served i… (read more)

I don't know if this ever worked in FF, since I've been on Chrome a while. I tried canvas.toBlob() in FF without a solution.

The behavior is the same whether the served image is jpg or webp. A Servlet delivers the image data, here in webp:

          response.setHeader("Content-Type", "image/webp");

On page, I use a canvas thus => see '// FIREFOX'

     var canvas = document.createElement( 'canvas' );
     canvas.width = width;
     canvas.height = avail_height;
     var context = canvas.getContext( '2d' );
     context.drawImage( imgsrc, 0, 0, width, avail_height);
     context.lineWidth = 150;
     // FIREFOX: canvas.toDataURL('image/jpeg')=black, png,webp,default=transparent
     img.src = canvas.toDataURL('image/jpeg');
     img.onmousedown = disableDragging; // for FF
     img.style.opacity = "1.0";
     console.log('setImg ok');

Inspecting a black jpeg:

        data:image/jpeg;base64,...

Thanks!

Asked by phobrain 6 months ago

Answered by phobrain 6 months ago

Help me

Am not able to upload files in job application when I click choose files it takes me back to the same link thus not able to complete in my job application am really stres… (read more)

Am not able to upload files in job application when I click choose files it takes me back to the same link thus not able to complete in my job application am really stressed

Asked by maina joseck 2 months ago

  • Solved
  • Archived

Firefox won't load accounts.firefox.com

new install of firefox won't load accounts.firefox.com other browsers on the computer load it fine I've imported bookmarks and passwords and stuff, and since refreshed fi… (read more)

new install of firefox won't load accounts.firefox.com

other browsers on the computer load it fine

I've imported bookmarks and passwords and stuff, and since refreshed firefox but can't find a way to fully restore it to initial settings, even uninstall and reinstall won't do it

error messages from console:

Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://cdn.accounts.firefox.com/styles/62a53a14.main.css. (Reason: CORS request did not succeed). Status code: (null). Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://cdn.accounts.firefox.com/bundle-f3c065c3bfd12957bbfc07df4a7dfa472ec1b92e/head.bundle.js. (Reason: CORS request did not succeed). Status code: (null). None of the “sha512” hashes in the integrity attribute match the content of the subresource. The computed hash is “z4PhNX7vuL3xVChQ1m2AB9Yg5AULVxXcg/SpIdNs6c5H0NE8XYXysP+DGNKHfuwvY7kxvUdBeoGlODJ6+SfaPg==”. accounts.firefox.com Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://cdn.accounts.firefox.com/bundle-f3c065c3bfd12957bbfc07df4a7dfa472ec1b92e/appDependencies.bundle.js. (Reason: CORS request did not succeed). Status code: (null). None of the “sha512” hashes in the integrity attribute match the content of the subresource. The computed hash is “z4PhNX7vuL3xVChQ1m2AB9Yg5AULVxXcg/SpIdNs6c5H0NE8XYXysP+DGNKHfuwvY7kxvUdBeoGlODJ6+SfaPg==”. accounts.firefox.com Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://cdn.accounts.firefox.com/styles/3c59f525.tailwind.out.css. (Reason: CORS request did not succeed). Status code: (null). Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://cdn.accounts.firefox.com/bundle-f3c065c3bfd12957bbfc07df4a7dfa472ec1b92e/app.bundle.en_US.js. (Reason: CORS request did not succeed). Status code: (null). None of the “sha512” hashes in the integrity attribute match the content of the subresource. The computed hash is “z4PhNX7vuL3xVChQ1m2AB9Yg5AULVxXcg/SpIdNs6c5H0NE8XYXysP+DGNKHfuwvY7kxvUdBeoGlODJ6+SfaPg==”. accounts.firefox.com Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://cdn.accounts.firefox.com/bundle-f3c065c3bfd12957bbfc07df4a7dfa472ec1b92e/app.bundle.en_US.js. (Reason: CORS request did not succeed). Status code: (null). None of the “sha512” hashes in the integrity attribute match the content of the subresource. The computed hash is “z4PhNX7vuL3xVChQ1m2AB9Yg5AULVxXcg/SpIdNs6c5H0NE8XYXysP+DGNKHfuwvY7kxvUdBeoGlODJ6+SfaPg==”. accounts.firefox.com InstallTrigger is deprecated and will be removed in the future. accounts.firefox.com onmozfullscreenchange is deprecated. accounts.firefox.com onmozfullscreenerror is deprecated. accounts.firefox.com

Asked by Matty Wright 1 year ago

Answered by Matty Wright 1 year ago

  • Solved
  • Archived

Facebook isn't loading

Facebook simply isn't loading in Firefox anymore - it loads in Edge on my PC just fine and on my Mobile Android Browser . I've tried disabling all extensions, and clearin… (read more)

Facebook simply isn't loading in Firefox anymore - it loads in Edge on my PC just fine and on my Mobile Android Browser .

I've tried disabling all extensions, and clearing cache and cookies, but Facebook still refuses to load and returns the message, attached.

Asked by IanSeale 6 months ago

Answered by IanSeale 6 months ago

  • Solved
  • Archived

mail.proton.me does not load

Hello After last firefox update this page mail.proton.me (specifically: https://mail.proton.me/u/0/inbox) does not load for me. It works in chrome and edge but not firef… (read more)

Hello After last firefox update this page mail.proton.me (specifically: https://mail.proton.me/u/0/inbox) does not load for me.

It works in chrome and edge but not firefox. I cleared my cookies and cache but it did not help. All I get is blank white page and sometimes error message. I attach screen from my F12 menu when I try to load page. In brave for example there is much more activity than in FF.

Asked by Piterk 10 months ago

Answered by Piterk 10 months ago

  • Solved

Netflix not working with Firefox

Netflix stopped working with Firefox saying that an update is required. My Firefox and OS (Win11) are completely up to date. Update required Looks like your browser, oper… (read more)

Netflix stopped working with Firefox saying that an update is required. My Firefox and OS (Win11) are completely up to date.

Update required

Looks like your browser, operating system, or device is not supported. Please make some updates to access Netflix. Learn more about updates and requirements here.

Can't access your account? Contact us.

Asked by ckitrick 5 months ago

Answered by Paul 5 months ago

  • Solved

No longer able to sign into Apple iCloud.com

Hello, I am no longer able to sign into my Apple iCloud account and tools (Mail, Calendar, Notes, etc) through my Firefox browser. The problem started this past Friday,… (read more)

Hello, I am no longer able to sign into my Apple iCloud account and tools (Mail, Calendar, Notes, etc) through my Firefox browser. The problem started this past Friday, and it happening on both my home office and work laptops. When I switch to my Microsoft Edge browser on the same 2 laptops, I am able to sign-in to my iCloud account and tools without any difficulty. So it is not a problem on the Apple iCloud side. I am able to access my iCloud account and tools/apps from my iPhone and my iPad as always. It is only when I try to login from a Firefox browser window that I get a "Failed to Verify Your Identity" error message.

Asked by adrian.biafore 5 months ago

Answered by George Kitsoukakis 5 months ago

  • Solved
  • Archived

Docusign

Using Firefox on Windows 11 I cannot access DocuSign files. I need to send a form to an on-line bank and want to use the DocuSign function. When I click on that option … (read more)

Using Firefox on Windows 11 I cannot access DocuSign files. I need to send a form to an on-line bank and want to use the DocuSign function. When I click on that option on the site all that displays on the screen is DOCUSIGN but the feature doesn't show. I tried turning off security addons such as Privacy Badger and Ghostery but that didn't help. I can get to the feature using Edge but I really don't like using that. Is there a setting that I've missed that may cause the disconnect?

The generic DocuSign site it https://powerforms.docusign.net/. Any other details in the URL I used refer to my bank and the account, so I am not including that information.

Thank you.

Asked by crl4242 8 months ago

Answered by jonzn4SUSE 8 months ago

  • Solved

ChatGPT not working after new browser update

After being prompted to update the browser this morning, and after I updated it, I can no longer use ChatGPT. Chat GPT will open, but it's unresponsive, can't log in, the… (read more)

After being prompted to update the browser this morning, and after I updated it, I can no longer use ChatGPT. Chat GPT will open, but it's unresponsive, can't log in, the arrow button to submit an inquiry doesn't work, and none of the other features of ChatGPT are working

Asked by pankewycz 1 month ago

Answered by Denys 1 month ago

  • Solved
  • Archived

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

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

Asked by moonpupy 11 months ago

Answered by jonzn4SUSE 11 months ago

  • Archived

captcha failure

Recently I have had several experiences with captcha when paying for something with a credit card. I check the box saying I'm not a robot, get a green arrow, but then the… (read more)

Recently I have had several experiences with captcha when paying for something with a credit card. I check the box saying I'm not a robot, get a green arrow, but then the purchase does not go through. Error message says I failed to satisfy the captcha, even though I was never shown the grid of images. Just now I tried the same operation with the same company invoice using Chrome, and it went through successfully by just checking the box I'm not a robot. This is very inconvenient.

Asked by 231kent 1 year ago

Last reply by zippitee 9 months ago

Audible Cloudplayer wont work since current update of Firefox!

Dear Helper, since the newest Firefox update, i got today (16.09.25), the audible cloudplayer doesnt work anymore, meaning it wont load the audiobook! I emptied the cache… (read more)

Dear Helper,

since the newest Firefox update, i got today (16.09.25), the audible cloudplayer doesnt work anymore, meaning it wont load the audiobook! I emptied the cache, but nothing changed. I tried the audible cloudplayer with Windows Edge and it works fine, so it is a Firefox specific problem. I granted all websides access to audio and media automatic replay, nothing changed. The cloudplayer doesnt work! So my question is: What else is interfering in Firefox with the loading of the player? Thank you so much in advance for your help :) Yours sincerely David

Asked by Dk-Doom 5 months ago

Last reply by Denys 1 month ago