Showing questions tagged: Show all questions

unwanted shortcuts on "new tab" in firefox browser

how are shortcuts created on my "new tab" home page in firefox browser. I used to be able to create the shortcuts I wanted, not random shortcuts that I might have visited… (read more)

how are shortcuts created on my "new tab" home page in firefox browser. I used to be able to create the shortcuts I wanted, not random shortcuts that I might have visited once. Now shortcuts appear that I don't want. I know I can remove them by dismissing them but I should not get them in the first place. Please help.

Asked by mdsjsb 8 hours ago

Last reply by cheddar 4 hours ago

Can't open G-mail account on Firefox

I have several g-mail accounts that I used to open on Firefox - until yesterday. Now I'm getting a silly message below: We've detected a problem with your cookie settin… (read more)

I have several g-mail accounts that I used to open on Firefox - until yesterday. Now I'm getting a silly message below:

We've detected a problem with your cookie settings. Enable cookies

Make sure your cookies are enabled. To enable cookies, follow these browser-specific instructions. Clear cache and cookies

If you have cookies enabled but are still having trouble, clear your browser's cache and cookies. Adjust your privacy settings

If clearing your cache and cookies doesn't resolve the problem, try adjusting your browser's privacy settings. If your settings are on high, manually add www.google.com to your list of allowed sites. Learn more

I'm working on ASUS, on Windows 86bit. If I reboot my PC g-mail works again for a couple of hours. I have no problem accessing my g-mail accounts from Chrome.

Any help? Thank you all Marina

Asked by Marina Kimak 16 hours ago

Last reply by jonzn4SUSE 15 hours ago

Keep losing open sessions!

Often, when I go to history and try to restore session..it is greyed out. it occurs randomly, but It ALWAYS occurs after an update. This is so frustrating! It never happe… (read more)

Often, when I go to history and try to restore session..it is greyed out. it occurs randomly, but It ALWAYS occurs after an update. This is so frustrating! It never happened on Edge or Chrome, not once. I know it might seem Karen-like fuming about it, but when you have dozens of important tabs open and they don't restore you too will become a karen. I'm almost about to uninstall Firefox because of it

Asked by rsmirnoff 1 day ago

Last reply by jonzn4SUSE 23 hours ago

Firefox Crashes Even When Not Open/Running

I recently installed Firefox and I keep getting crash notices, even when it is not open/running... I have verified this through the task manager...Nothing named Firefox … (read more)

I recently installed Firefox and I keep getting crash notices, even when it is not open/running...

I have verified this through the task manager...Nothing named Firefox or Mozilla is running...

I don't have this issue with either Brave or Chrome, and I have, and keep updated ESET software, so I KNOW this is a Firefox issue...

Unless this issue can be corrected, I will have no choice but to uninstall it, as I don't need software that crashes even when it is not being used...

Asked by dcbslists 2 weeks ago

Last reply by jonzn4SUSE 23 hours ago

No Video with supported format and MIME type found

I am trying to view uploaded videos in to my work portal and when I try to view the video this is the error message I receive. I am running WIndows 10 on my desktop. My … (read more)

I am trying to view uploaded videos in to my work portal and when I try to view the video this is the error message I receive. I am running WIndows 10 on my desktop. My Windows is up to date and I have cleared all cookies and still not working. Please help. Thank you

Asked by estertravels 1 day ago

Last reply by cor-el 23 hours ago

deleting multiple copies of bookmarks

trying to restore previous settings i have accidentally created multiple copy's of bookmarks and folders. many have more than 10 copy's and i now have over 400 000 bookm… (read more)

trying to restore previous settings i have accidentally created multiple copy's of bookmarks and folders. many have more than 10 copy's and i now have over 400 000 bookmarks. is there any quick way to delete the copys of bookmarks?

Asked by robertpinner 1 day ago

Last reply by cor-el 1 day ago

Error Message error platform version 127.0.1 not compatible with miniversion >= 127.0 miniversion <= 127.0

There was an update posted today. I ran the update this morning. Now Firefox will not open. error platform version 127.0.1 not compatible with miniversion >= 127.0 … (read more)

There was an update posted today. I ran the update this morning. Now Firefox will not open.

error platform version 127.0.1 not compatible with miniversion >= 127.0

                                                                                  miniversion <= 127.0

Running Windows 10 Version 10.0.19045 Build 19045 64 bit Should I remove and reload program?

Asked by Art 5 days ago

Last reply by cor-el 1 day ago

In Firefox, after a reboot, how can I re-open my previous sessions?

In Firefox, after a reboot, how can I re-open my previous sessions? Originally I had quite a lot of open browsers & tabs. Then I needed to do a reboot, and now I've … (read more)

In Firefox, after a reboot, how can I re-open my previous sessions?

Originally I had quite a lot of open browsers & tabs. Then I needed to do a reboot, and now I've lost those previous sessions.

Usually I just open Firefox, and this opens one browser, and then all of my previous browser, and tabs reopen, but this time Firefox crashed, and its popup said it needed to restart, but it would re-open my previous browser and tabs, but it didn't.

After following the usual Firefox help guides, it still wouldn't re-open my previous sessions. Now if I ask it to open my previous sessions, it just opens the recent help guides, and not anything before the crash.

So is there a backup file of my missing sessions that I can roll back to?

Asked by macmac 4 days ago

Last reply by NoahSUMO 1 day ago

can't open Firefox - error message

I can't open Firefox browser. I get an error message, "Error: Platform version '127.0.1 is not compatible with minVersion > = 127.0 maxVersion < = 127.0" I can o… (read more)

I can't open Firefox browser. I get an error message, "Error: Platform version '127.0.1 is not compatible with minVersion > = 127.0 maxVersion < = 127.0"

I can only get Google Chrome.

Please advise

Development: Very specific problem with getting the caret position in a contenteditable div

Hello, I'm a web developer. I'm using the Firefox Developer Edition and currently working on a project that requires caret manipulation. I have this function right here t… (read more)

Hello, I'm a web developer. I'm using the Firefox Developer Edition and currently working on a project that requires caret manipulation. I have this function right here that fetches the caret's client rect: ``` function getCaretRect(): DOMRect | null {

 const sel = window.getSelection()
 if (!sel || sel.rangeCount === 0) return null
 const range = sel.getRangeAt(0)
 const rects = range.getClientRects()
 if (rects.length === 0) return null
 return rects[0]

} ``` Here is where the issue arises. Suppose I have a contenteditable div with two line breaks (no new lines), and the second line is smaller than the first one. If the caret is positioned somewhere that is further than the end of the second line, and I press the down arrow key, then left, for some reason the caret rect I get has all values set to zero, like this: `{ x: 0, y: 0, width: 0, height: 0, top: 0, right: 0, bottom: 0, left: 0 }` I will add an image to explain further.

I don't have this issue on Chromium based browsers, but cross browser support is important for me.

There is one more issue to do with caret manipulation which is how contenteditable divs are handled. On a Chromium based browser, if I have a parent div that's contenteditable, then another div that's not contenteditable (contenteditable="false" explicitly), then two children divs which are both contenteditable (or more), I can navigate through the divs freely using the arrow keys and focus is managed better alongside event handlers. This is not present on Firefox, however.

If this is not the right place to ask for help then please guide me where is more suitable.

Asked by Rayane Benamre 2 days ago

Last reply by cor-el 1 day ago

Separate Themes for Private Browsing

Is there a way to set a separate theme for the private browsing option? I like being able to visually distinguish between the normal browser and the private one, but enab… (read more)

Is there a way to set a separate theme for the private browsing option? I like being able to visually distinguish between the normal browser and the private one, but enabling a theme seems to set the same visuals for both.

If separate themes are not a thing, perhaps they could be added in a later update?

Thanks for all your time and effort.

Asked by Manny 4 days ago

Last reply by Agent virtuel 2 days ago

Google Sign in's

Ive tried everything under the Sun to try to get rid of that Annoying ( Sign in with Google) out of my computer but nothing works ?? Is there a solution ?? I ca… (read more)

Ive tried everything under the Sun to try to get rid of that Annoying ( Sign in with Google) out of my computer but nothing works ?? Is there a solution ?? I cannot open most of my Sites with it there !! Anyone Please HELP !!

Asked by particolor 2 days ago

Last reply by Agent virtuel 2 days ago

No Youtube Network Activity on Firefox only (videos won't finish loading)

I have been having consistent issues with Youtube when played on Firefox. Opening the "Stats for Nerds", I see that I have decent connection speed. However, I get a burst… (read more)

I have been having consistent issues with Youtube when played on Firefox. Opening the "Stats for Nerds", I see that I have decent connection speed. However, I get a burst of network activity, and then it stops. Therefore, i can't watch the video. Refreshing Youtube does not help at all.

Trying on other browsers, I do not have issue. While I sometimes get low network activity, most often than not, I can play Youtube videos fine.

I have done the following:

  • Confirmed that I'm running the latest Firefox version (127.0.0)
  • Cleared Firefox cache
  • Confirmed having issue (sometimes worse as I get no network activity even on refresh) on Firefox Troubleshoot mode

Asked by desmond.wan913 2 days ago

Last reply by TyDraniu 2 days ago

FireFox 127.0.1 (64 bit) crashes on Windows 10

FireFox just updated itself to the latest version (127.0.1 (64 bit)) on my Windows 10 laptop. Now every time I try to close it, instead of closing, it starts a backgroun… (read more)

FireFox just updated itself to the latest version (127.0.1 (64 bit)) on my Windows 10 laptop. Now every time I try to close it, instead of closing, it starts a background process and then crashes after about 25 seconds.

Asked by ActsNowAV 3 days ago

Last reply by jonzn4SUSE 3 days ago

After the last FF update, I can only connect to FF

After the last FF update, I can only connect to FF ... no other website! I did a system restore to an earlier date which seemed to make it worse. Absolutely zero content … (read more)

After the last FF update, I can only connect to FF ... no other website! I did a system restore to an earlier date which seemed to make it worse. Absolutely zero content appears on any website I choose to go to. The tab shows the name of the website, however it doesn't "connect."

Please help me rectify this challenge. Thank you.

Asked by TruthAndLight 3 days ago

Last reply by Paul 3 days ago

Memory usage

Hi Team, Would love to know how in task manager there are 10+ firefox services running with only 4 tabs open and the usage is ridiculous. Closing one tab the next one t… (read more)

Hi Team,

Would love to know how in task manager there are 10+ firefox services running with only 4 tabs open and the usage is ridiculous. Closing one tab the next one that was using roughly 250mb shoots to over 600mb...what are you playing at????

See attached.

Asked by Marius Geldenhuys 4 days ago

Last reply by jonzn4SUSE 3 days ago