Showing questions tagged:

Firefox Sync wiped all data after reinstalling Windows - didn't delete anything manually

After Windows crashed, I installed a new system and logged into Firefox using my account. But all my history, passwords, bookmarks were erased. I also went to my phone an… (read more)

After Windows crashed, I installed a new system and logged into Firefox using my account. But all my history, passwords, bookmarks were erased. I also went to my phone and everything was gone. I didn't erase anything myself. Is there any way to restore the previous state of the account? Are there any backups on the Firefox Sync server?

Archived 9 191

webcam, microphone not accessible

I have read all your tutorials. I was unable to have an important televisit with my doctor yesterday because nothing I tried worked. I am unable to use webcam for other… (read more)

I have read all your tutorials. I was unable to have an important televisit with my doctor yesterday because nothing I tried worked. I am unable to use webcam for other sites until I resolve this problem. Previously I had no problem with my webcam but recently had to get new pc with windows 11 & needs to configure my pc to address this issue. I have another appt scheduled with another doctor & need to fix this problem asap Thanks

Solved Archived 9 130

Firefox does not play sound despite being attributed to correct device. All other apps OK.

What the title says. Firefox just isn't playing any sound whatsoever. Troubleshooting: Volume mixer indicates that Firefox is using my speakers, along with all other ap… (read more)

What the title says. Firefox just isn't playing any sound whatsoever.

Troubleshooting:

  • Volume mixer indicates that Firefox is using my speakers, along with all other apps. When playing a YouTube video, the green bar is not bouncing. However, all other programs that play sound do so successfully and their green bars are bouncing (see attachment).
  • Other web browsers play sound successfully.
  • Restarting Firefox and my computer did not help.
  • Switching the default sound device and changing back did not help.
  • Changing to headphones made no change.
  • Tabs are not muted.
  • Autoplay settings in about:preferences showed that audio and video were disabled, however changing this setting to allow video and audio, then restarting both Firefox and the computer did not fix the problem. I have no idea how that setting was even changed to begin with. O_o
  • Started Firefox in troubleshooting mode; still no sound.
  • Started Firefox in a different profile; still no sound.
  • Started Firefox in private mode; still no sound.
  • Tried ending the audiodg.exe process in task manager and restarted; still no sound.
  • Double checked media.autoplay.blocking_policy, was set to 0.
  • Double checked media.block-autoplay-until-in-foreground -- changed from true to false, restarted Firefox; still no sound.
  • Disabled hardware acceleration; still no sound.
  • Refreshed Firefox; still no sound.
  • Complete uninstall, including the usage of BCUninstaller to uninstall "leftovers". Reinstalled. Still no sound.

I have Apollo installed on my computer and I've reached out to them before for similar issues, but the dev was insistent that Apollo does not cause sound issues. I'm somewhat sceptical, but they're not being helpful at all so I thought I'd ask here, and disclose usage of Apollo so that all bases are covered.

Thank you for your time.

Archived 8 115

"Tons" of cookies after recent update

OK so, I just updated Firefox to 115.34 Oesr (64-bit) on my Windows 7 Desktop. Before this update, it's been my practice to clear my cookies manually from unknown websit… (read more)

OK so, I just updated Firefox to 115.34 Oesr (64-bit) on my Windows 7 Desktop. Before this update, it's been my practice to clear my cookies manually from unknown websites about 3 times a day, only keeping the "exception" cookies. But, since the update, there have been SOOO many cookies...something like 75 to 100 and EACH time I manually clear the cookies...even just minutes after I clear it and refresh the "Settings" page they appear again. And, the worst of it is that Google won't let me sign into Google websites like Play Store and Google.com search saying that "there has been unusual traffic..." and makes me solve capchas all day long. Other sites too say Unusual traffic like CVS and won't let me sign in either. And now, I'm not using a VPN.

I googled the matter and it was said to be was a known issue with the 115 update and the A.I. said to get rid of the ad blocker as a possible fix but, it didn't work. Have Firefox clear cache and cookies but that didn't work, changing "Tracking Protection" to "Standard". Nothing works. Is there an update fixing this issue? By the way, I have had Firefox set to clear cache and cookies upon closing. But the cookies pile up so quickly again. Thanks for your help

Open 8 1 48

Using canvas/context to scale an image that displays ok before removes the image data, ok in Chome/Safari.

The app sizes two adjacent images to the same height. Maybe there's a better approach? This works, in that I see the original image displayed at the wrong size: //img.… (read more)

The app sizes two adjacent images to the same height. Maybe there's a better approach?

This works, in that I see the original image displayed at the wrong size:

   //img.src = imgsrc.src;

This sizes the image but without the data (black square for toDataURL w/ image/jpeg) in FF, but not Chrome and Safari:

   var canvas = document.createElement( 'canvas' );
   canvas.width = width;
   canvas.height = avail_height;
   var context = canvas.getContext( '2d' );
   // Tried/failed: Fill white background for JPEG export
   //context.fillStyle = '#fff';
   //context.fillRect(0, 0, canvas.width, canvas.height);
   context.drawImage( imgsrc, 0, 0, canvas.width, canvas.height);
   context.lineWidth = 150; // ??
   img.src = canvas.toDataURL('image/jpeg', 0.92);
   img.onmousedown = disableDragging; // for FF
   img.style.opacity = "1.0"

The page is the view.html one gets to via Enter on phobrain.com.

Solved Archived 8 295

Microsoft login repeating

When using any Microsoft 365 product on the browser I keep getting a prompt to "Please sign in" although I am already signed in. I can click the Sign in button and a abou… (read more)

When using any Microsoft 365 product on the browser I keep getting a prompt to "Please sign in" although I am already signed in. I can click the Sign in button and a about:blank page pops up for a split second. Then within a half hour or so, it will pop up again. I deleted my cookies but the problem still persists. Does not happen on other browsers.

Solved Archived 8 365

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!

Solved Archived 7 511

Login problems with Strava.com

The errors I get are kind of all over the place though. I've completely deleted and reinstalled Firefox, and removed all extensions too. It will loop to the login screen … (read more)

The errors I get are kind of all over the place though. I've completely deleted and reinstalled Firefox, and removed all extensions too.

It will loop to the login screen over and over, or I get the message 'An error has happened, try again later'...

I used the browser console and didn't get anything that seemed usable. I use Strava nearly every day so I'm having to use Safari. And this issue is on all of the mac and Windows systems I use. 'Troubleshooting Mode' didn't work either.

Help!

Solved Archived 7 103

Linux / Plasma 6.4/Wayland (amd gpu) After enabling HDR in firefox - all non HDR (youtube) content just shows green sceen

I have HDR working in Proton games and mpv fine (using Plasma 6.4 / Wayland) I enabled HDR in Firefox (gfx.wayland.hdr), and HDR content works in YouTube fine ( looks ama… (read more)

I have HDR working in Proton games and mpv fine (using Plasma 6.4 / Wayland)

I enabled HDR in Firefox (gfx.wayland.hdr), and HDR content works in YouTube fine ( looks amazing!) however.. I have an issue in that all non HDR content doesn’t show any video (I have sound) just a green sceen (see screen shot) including all ads.

Any idea how to work round this ?

I have AMD 7800 GPU .

Cheers

Solved Archived 7 950

No paste as image in Outlook Web Access

When pasting an image from the clipboard in Outlook Web Access in Edge there's right mouse button option to "Paste as Image". This places the image inline. In Firefox t… (read more)

When pasting an image from the clipboard in Outlook Web Access in Edge there's right mouse button option to "Paste as Image". This places the image inline. In Firefox there's no option like this.

Safe mode (troubleshooting mode) doesn't fix this. Ctrl + V or Shift + Ctrl + V doesn't fix it. Shift RMB to get Firefox menu does show Paste and Paste without formatting but it doesn't paste any inline image.

I've attached a screenshot of Edge and Firefox with the Outlook context menu and Firefox context menu.

Firefox version: 140.0.4 (64-bit) Edge version: 138.0.3351.83 (Official build) (64-bit)

Archived 7 217

Syncing

When following the instruction to sync bookmarks on Android phone it leads me to items that are not there. Open Firefox mobile on phone. Ok. Hit the 3 dots drop down. Ok.… (read more)

When following the instruction to sync bookmarks on Android phone it leads me to items that are not there. Open Firefox mobile on phone. Ok. Hit the 3 dots drop down. Ok. Choose sync and save. Not there? I click my email and it shows sync. I click that and it shows the last time I sync my phone. 0 minutes. Ok. It shows a QR code to scan from the Firefox app. It instructs to click ready to scan. That's not there either. If instructions lead you down paths that are not present, the instructions are useless. Anyone else having this experience? Thanks..........

Archived 7 127

Firefox and Chatrooms

I own a website that has chat rooms for each of my advisors. As of 2 days ago they are all having issues. I have them login with Firefox but now asking them to use Googl… (read more)

I own a website that has chat rooms for each of my advisors. As of 2 days ago they are all having issues. I have them login with Firefox but now asking them to use Google Chrome...............low and behold it works

Whats the issue as i believe it started with the latest Firefox update

Thanks so much

Natalie Damsel In Distress :)

Archived 6 75

Images Not Updating in FireFox

Hi everybody, I need a bit of tech help! I have changed some images on my website but Firefox browser still displays the old images! Does anybody know how to correct this… (read more)

Hi everybody, I need a bit of tech help! I have changed some images on my website but Firefox browser still displays the old images! Does anybody know how to correct this? I have the latest version of Firefox. If I use another browser the new images appear! Thanks for your help. Gazza

Solved Archived 6 120

Firefox Issues After Update

I don't know what you're doing but EVERYTIME I do an update lately, something goes wrong. Today after update, my STGs are affected and ALL ARE GONE. I do NOT believe th… (read more)

I don't know what you're doing but EVERYTIME I do an update lately, something goes wrong. Today after update, my STGs are affected and ALL ARE GONE. I do NOT believe this is their fault. And you put this dang auto Startpage when launching window, I did NOT ask for that. I am so pissed, how do I get them all back? I had things I was working on that were very important. What else did you add to FF that I don't know about? I don't want your updates anymore. You screwed me big time. And I don't want the extensions YOU think I should have: Google, eBay, Bing, etc. wasting my space. I'm not the only one either, seen lots of complaints.

HOW DO I GET THOSE TABS BACK??????

Archived 6 174

Unable to Use Microphone in Google Meet Despite Permissions – Works Fine in Chrome

Hello, I'm facing an issue where my microphone does not work in Google Meet when using Firefox, even though I’ve granted all necessary permissions. This problem is specif… (read more)

Hello,

I'm facing an issue where my microphone does not work in Google Meet when using Firefox, even though I’ve granted all necessary permissions. This problem is specific to Firefox, as the microphone works perfectly fine in Google Chrome.

I prefer using Firefox because of its convenient screenshot features, but this microphone issue has caused major inconvenience during important meetings.

Kindly help me resolve this issue.

Thank you.

Archived 6 291

Cannot add saved Credit Cards

I have all options enabled to save addresses and credit cards. When I try to manually add a credit card, hitting the Save button does nothing. When I use a credit card on… (read more)

I have all options enabled to save addresses and credit cards.

When I try to manually add a credit card, hitting the Save button does nothing.

When I use a credit card on a site, Firefox prompts me to save the card, I confirm that I want to save it, yet it isn't saved.

Archived 6 204

session backups inadequate

I keep a lot of tabs open (~60) in any particular session - I find it's faster in this way to get back to a site. About every six months or so, I lose *all* these tabs be… (read more)

I keep a lot of tabs open (~60) in any particular session - I find it's faster in this way to get back to a site.

About every six months or so, I lose *all* these tabs because of Firefox's inadequate session backup system. It only saves two or three total backups, some of which are completely out of date. But the worst scenario is when (1) some site pops up a new window; (2) I mistakenly close my main window before the new window; (3) I open this new saved window once or twice by accident, causing my 60-tab session backup to be overwritten.

Using a third-party session manager (I have tried all the well-known ones) can mitigate this problem, but doesn't really solve it because the re-opened sessions aren't quite in the same format as Firefox sessions and so lose information. In particular, I often lose each tab's icon as well as metadata for Tree Style Tab.

Could Mozilla please consider a more robust session backup system for Firefox? All it would take (I think) is to allow the user to choose the total number of backup sessions and the frequency at which a new session is added. Thank you!

Archived 6 246