Showing questions tagged: Show all questions

Tradingview no longer allows unlimited open tabs to view and tabs aften break and do not refresh normally

I am running Windows 10 (64-bit) Version 22H2 OS build 19045.4355 with the Firefox browser v125.0.3 and since updating to the latest Firefox version I am no longer able t… (read more)

I am running Windows 10 (64-bit) Version 22H2 OS build 19045.4355 with the Firefox browser v125.0.3 and since updating to the latest Firefox version I am no longer able to load more than 17 Tradingview tabs and the Tradingview tabs I do upload take a long to to refresh or to save changes too. I do not have this issue using other browsers.

Asked by heirloomguy 11 minutes ago

podcasts won't play

I can no longer play any podcast since upgrade to 125.0.3 The arrow/button to play any podcast is neutral, is not active. Or, on spotify if finding a podcast on gardeni… (read more)

I can no longer play any podcast since upgrade to 125.0.3 The arrow/button to play any podcast is neutral, is not active. Or, on spotify if finding a podcast on gardening, clicking the play button plays something on a completely different topic.

Asked by nmainferme 1 hour ago

launching firefox in safemode just attaches to existing process instead of launching a new instance in safemode

Howdy, Workflow: I have a firefox instance already running. I want to launch a new firefox in safe-mode to test something without disrupting my existing firefox. Probl… (read more)

Howdy,

Workflow: I have a firefox instance already running. I want to launch a new firefox in safe-mode to test something without disrupting my existing firefox.

Problem: I try to launch a new firefox in safe mode using `firefox --safe-mode`, but firefox just opens a new window NOT in safe mode.

I think it may because firefox in safe-mode requires launching launching from a new instance rather than attaching to existing instance.

`firefox --help` shows a flag I can use:

--new-instance Open new instance, not a new window in running instance. --safe-mode Disables extensions and themes for this session.

So I run `firefox --safe-mode --new-instance`

now I get error popup with message:

"Firefox is already running, but is not responding. To use Firefox, you must first close the existing Firefox process, restart your device, or use a different profile."

Now I think what is the point of the flag "new-instance" if Firefox doesn't support multiple instances?

Regardless, how can I launch firefox in safe-mode without disrupting my existing firefox instance and without relying on creating a profile just for this?

Asked by furkansahin824 1 hour ago

Yahoo Homepage

My yahoo homepage on firefox looks totally different than it did last week. Chrome and edge still look like the home page should but firefox does not. I screen shared wit… (read more)

My yahoo homepage on firefox looks totally different than it did last week. Chrome and edge still look like the home page should but firefox does not. I screen shared with yahoo and they said it was a firefox issue. Anyone know how to make the homepage look like chromes and edge? I added pics from edge and firefox for comparison.

Asked by sntstrohmetz 2 hours ago

How default new page sites are selected?

How default new page sites are selected? Is it possible to propose a new one? I thought that featuring https://www.openstreetmap.org/ may be interesting (it is a Wikiped… (read more)

How default new page sites are selected? Is it possible to propose a new one?

I thought that featuring https://www.openstreetmap.org/ may be interesting (it is a Wikipedia of maps - with open data dataset contributed by various people, that anyone can edit and is already quite useful).

I think that it may be of interest for Firefox users.

Disclaimer: I am significantly active in OSM community

Asked by matkoniecz 11 hours ago

Firefox tabs to closing an article are not working any more

'bold text'bold text FIREFOX NO LONGER WORKS WHEN YOU CLICK ON THE LEFT ARROW TO MOVE TO ANOTHER ARTICLE. I HAVE PAGES & PAGES BEHIND THE NEW ONE IT ALSO HAS A BLUE L… (read more)

'bold text'bold text FIREFOX NO LONGER WORKS WHEN YOU CLICK ON THE LEFT ARROW TO MOVE TO ANOTHER ARTICLE. I HAVE PAGES & PAGES BEHIND THE NEW ONE IT ALSO HAS A BLUE LINE UNDERNEATH THE ICON THIS HAPPENED ONCE BEFORE & I FOUND A WAY TO FIX IT, AFTER WELL OVER AN HOUR WORKING ON IT i CAN'T I WANT TO DELETE IT

Asked by Nancy 22 hours ago

Desktop icons

The file icons on by desktop were always the standard color but now the are blue and white why did this happen. I know I can change each one back individually but how can… (read more)

The file icons on by desktop were always the standard color but now the are blue and white why did this happen. I know I can change each one back individually but how can I change them in mass.

Asked by melankney 1 day ago

Touch Keyboard not working in Firefox

I have windows 10 pro (64), 22H2 OS build 19045.4170, Windows Feature Experience Pack 1000.19054.1000.0 and latest Firefox (125.0.3) installed on A HP Pavilion Notebook 1… (read more)

I have windows 10 pro (64), 22H2 OS build 19045.4170, Windows Feature Experience Pack 1000.19054.1000.0 and latest Firefox (125.0.3) installed on A HP Pavilion Notebook 17 F121DS, Serie 5CD4355YDX. Touch Keyboard (not to be confused with on-screen) opens and closes immediately; sometimes, on the first occurrence, it stays open long enough to be able to click on a text field and then disappears. "On screen keyboard" works fine as does "Touch keyboard" in Edge and Chrome and all other Apps. Since this is a recent occurrence, and a lot of odd changes took place after the last FF update, I have reverted to Firefox 124, after this did not work also did a restore to last Restore Point from April. No change! I have consulted the [1754973] as well as [1750584] , but these did not help me much further. Any suggestions or is there a bug?

Asked by Karl 1 day ago

Can't launch my url in Selenium-controlled Firefox browser process

Receiving this error: Firefox is already running, but is not responding. The old Firefox process must be closed to open a new window. My desktop app redirects user to a … (read more)

Receiving this error: Firefox is already running, but is not responding. The old Firefox process must be closed to open a new window.

My desktop app redirects user to a login screen on Firefox, and I want to automate it using Selenium. My current workflow: 1. Launch Selenium-controlled Firefox browser using GeckoDriver 2. Click on "Login" button on my desktop app. The desktop app launches the login screen on user's OS default browser using the default user profile (in which case I set in profiles.ini to the temp profile copy created by Selenium). 3. (ERROR) Popup on the above error is displayed

Code: import configparser import os

web_driver = selenium_webdriver.Firefox(executable_path='C:\\Users\\mnxl\\.wdm\\drivers\\geckodriver\\win64\\v0.34.0\\geckodriver') profile = web_driver.capabilities['moz:profile']

  1. Path to the Firefox profiles folder

profiles_path = os.path.expanduser(r'~\AppData\Roaming\Mozilla\Firefox')

  1. Path to the profiles.ini file

profiles_ini_path = os.path.join(profiles_path, 'profiles.ini')

  1. Read the profiles.ini file

config = configparser.ConfigParser() config.read(profiles_ini_path)

  1. Find the section for the profile to set as default

for section in config.sections():

   if config.has_option(section, 'Path') and config.get(section, 'Path') == profile:
       # Set this profile as the default
       config.set(section, 'Default', '1')
   else:
       # Set all other profiles as not default
       config.set(section, 'Default', '0')
  1. Write the changes back to the profiles.ini file

with open(profiles_ini_path, 'w') as configfile:

   config.write(configfile)

Asked by Magdeline Ng 1 day ago

Theme

I choose a new theme. After a while, I close Firefox. When I start Firefox again, my chosen theme appears briefly, then the default theme replaces it. Why? FYI: it doesn'… (read more)

I choose a new theme. After a while, I close Firefox. When I start Firefox again, my chosen theme appears briefly, then the default theme replaces it. Why? FYI: it doesn't happen with just one theme.

Asked by Iridium.throne 1 day ago

firefox webpage ie very slow changing to other wepages & gettin worse & slide bar dont go to the top when changing pages

when i amon a webpage& click to go to home screen takes about 10 minutes & i have hi speed inernet & th slide bar on side dont go to top when changing pages g… (read more)

when i amon a webpage& click to go to home screen takes about 10 minutes & i have hi speed inernet & th slide bar on side dont go to top when changing pages getting worse please fix it

Asked by raledj 1 day ago

Hacked?

Hello, I recently find products added to check out from various sites to purchase. I use all my pcs and other devices. They are all password protected. No one uses my dev… (read more)

Hello, I recently find products added to check out from various sites to purchase. I use all my pcs and other devices. They are all password protected. No one uses my devices. I think some one got my account. I changed the password. Can you help me about this topic Kind regards sami

Asked by smu.uludgn 1 day ago

Firefox Not Remembering Address Bar Websites

I'm currently on a very old version of Firefox simply because the new versions, each time I try the latest versions, seem to not have the function the old one has. Rememb… (read more)

I'm currently on a very old version of Firefox simply because the new versions, each time I try the latest versions, seem to not have the function the old one has. Remembering the websites I put into the address bar. The version I am currently using did have a issue with shuffling the order of the sites based on 'use' but setting Firefox to Private mode kept the websites locked in order and did not make them shuffle if one was clicked more often than another. Is this something I can do on the current version because I tried and looked for a way to do this recently but I kept getting 'autofill' results from google when I just want to be in Private mode, have the websites I frequent be the only ones listed when I click the address bar and not have them shuffle or have any other website I'd type into the bar not add itself to the list. If this is or isn't possible let me know.

Asked by Kurai 1 day ago

Double Mozilla on PC, same version, won't uninstall

So for some reason I have two versions of Firefox on my computer (Windows 64 bit), I am logged in and using one of them, and the other is just there. I could log in there… (read more)

So for some reason I have two versions of Firefox on my computer (Windows 64 bit), I am logged in and using one of them, and the other is just there. I could log in there but I don't want to, I just want to get rid of it. Links from Telegram open in it, creating a second Firefox window instead of opening in another tab in the already open Firefox window, which is very inconvenient. The windows list of programs which can be uninstalled only has one Firefox (I've tried deleting and reinstalling, it doesn't help). But when I try to choose a default browser I get 2 icons to choose from which look the same (see screenshot). What the heck? How do I manage this!

Asked by faina.daniel 2 days ago

YouTube on Firefox

I have been using Firefox on my Mac for years with no problems. Recently, however, I have been having trouble running YouTube. I get to the correct page for the video I… (read more)

I have been using Firefox on my Mac for years with no problems. Recently, however, I have been having trouble running YouTube. I get to the correct page for the video I want but the video itself does not show up, just the background for the page. Any idea what I might have done to create this problem?

Asked by Neach 2 days ago