Zobrazenie otázok označených: Zobraziť všetky otázky

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… (ďalšie informácie)

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?

Otázku položil(a) Neach Pred 1 dňom

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… (ďalšie informácie)

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!

Otázku položil(a) faina.daniel Pred 1 dňom

you tube tv

After the browser update earlier today I cannot log into 'You Tube TV'. The browser keeps asking for my email and password over and over and never signs me in. It keeps t… (ďalšie informácie)

After the browser update earlier today I cannot log into 'You Tube TV'. The browser keeps asking for my email and password over and over and never signs me in. It keeps telling that I am signed out and need to sign in, over and over. I cleared my cache and cookies. I changed my sign in from my yahoo email to my gmail account and it still will not work. If I use the chrome browser it works fine. Please Help.

best regards,

john loomis jr.

Otázku položil(a) jloomisjr2 Pred 30 minútami

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… (ďalšie informácie)

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.

Otázku položil(a) Kurai Pred 1 dňom

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… (ďalšie informácie)

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

Otázku položil(a) smu.uludgn Pred 22 hodinami

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… (ďalšie informácie)

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

Otázku položil(a) raledj Pred 21 hodinami

Instagram page won't load.

Instagram page won't load. Doesn't load in Edge either. The proxy setting is off. It was loading yesterday, then today it won't. No malware detected by Mcafee or Spyhunte… (ďalšie informácie)

Instagram page won't load. Doesn't load in Edge either. The proxy setting is off. It was loading yesterday, then today it won't. No malware detected by Mcafee or Spyhunter. My account is working fine from my phone.

Otázku položil(a) djrutger444 Pred 18 hodinami

403 and 404 errors on firefox started 4.29.24

Starting yesterday firefox, no recent updates etc, gives a 403 error for several large corporate sites and 404 page not found for most paypal payment pages. These sites/p… (ďalšie informácie)

Starting yesterday firefox, no recent updates etc, gives a 403 error for several large corporate sites and 404 page not found for most paypal payment pages. These sites/pages work fine with Chrome. There were no changes by by myself to my firefox installation, not any antivirus changes.

Within the last hour today everything is working properly. What is going on? jn

Otázku položil(a) buy21 Pred 6 dňami

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'… (ďalšie informácie)

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.

Otázku položil(a) Iridium.throne Pred 17 hodinami

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 … (ďalšie informácie)

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)

Otázku položil(a) Magdeline Ng Pred 11 hodinami

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… (ďalšie informácie)

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?

Otázku položil(a) Karl Pred 6 hodinami

As of 5/5/2024 I am unable to login to my outlook.com account from Firefox.

I can login from other web browsers, but not Firefox. What's going on? When I try to login as I have always dine in the past, this is what comes up: https://outlook.liv… (ďalšie informácie)

I can login from other web browsers, but not Firefox. What's going on?

When I try to login as I have always dine in the past, this is what comes up: https://outlook.live.com/mail/0/

But then absolutely nothing happens. Please advise.

Otázku položil(a) cleo.miller Pred 5 hodinami

Help search results don't show list by date

Your help utility needs help. -results don't show date, must open each item. Results seem to not be listed in date order. What a mess to sort through. I can't select a de… (ďalšie informácie)

Your help utility needs help. -results don't show date, must open each item. Results seem to not be listed in date order. What a mess to sort through. I can't select a desired date range, or select by release version number. -your search tool isn't very effective, I keep getting unrelated results. I do better by searching google to find the help I want regarding Firefox.

Otázku položil(a) Davyboy Pred 4 dňami

Audio interface input no longer shows in Google Meet.

My primary/default browser is Firefox on Sonoma 14.4.1, and recently I'm unable to use the inputs of my audio interface for google hangouts. The relevant output is correc… (ďalšie informácie)

My primary/default browser is Firefox on Sonoma 14.4.1, and recently I'm unable to use the inputs of my audio interface for google hangouts. The relevant output is correct, and my system audio would be the same.

Otázku položil(a) Scott Simon Pred 4 dňami

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… (ďalšie informácie)

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.

Otázku položil(a) melankney Pred 3 hodinami

web cam image

Web cam image on web page stopped working after last update. Using win 11. Tried refresh, worked last time but not this time, checked permission security settings. Can ge… (ďalšie informácie)

Web cam image on web page stopped working after last update. Using win 11. Tried refresh, worked last time but not this time, checked permission security settings. Can get the camera image on a tablet but not laptop. (lenovo) Anything I might have missed?

Otázku položil(a) fresch1123 Pred 2 hodinami

Google Images using Firefox

Please help. I have always been able to access Google Images when using my Firefox browser. Now I only get a limited few. For example if I am searching for images of Ceda… (ďalšie informácie)

Please help. I have always been able to access Google Images when using my Firefox browser. Now I only get a limited few. For example if I am searching for images of Cedar Waxwings (a bird) I only see a limited amount of images and the word "Store" keeps showing up. Please tell me how to restore my otherwise satisfying experience of access all IMAGES. Thanks.

Otázku položil(a) Craig Altobello Pred 3 dňami