Fragen mit folgendem Schlagwort anzeigen: Alle Fragen anzeigen

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… (Lesen Sie mehr)

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.

Gefragt von djrutger444 vor 1 Tag

Letzte Antwort von cor-el vor 19 Stunden

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… (Lesen Sie mehr)

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?

Gefragt von fresch1123 vor 1 Tag

Letzte Antwort von cor-el vor 20 Stunden

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… (Lesen Sie mehr)

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.

Gefragt von cleo.miller vor 1 Tag

Letzte Antwort von cor-el vor 21 Stunden

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… (Lesen Sie mehr)

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.

Gefragt von jloomisjr2 vor 1 Tag

Letzte Antwort von cor-el vor 1 Tag

  • Gelöst

Yahoo Search Cannot Be Removed

I have read through the user threads and tried everything I could find including malware searching and, of course, setting google as my search preference but no matter wh… (Lesen Sie mehr)

I have read through the user threads and tried everything I could find including malware searching and, of course, setting google as my search preference but no matter what I try the splash page for Firefox (re-installed twice) is Yahoo. Has anyone found a cure for this issue on their Mac - my Mac parameters are in the attached screenshot.

Thanks for any sage wisdom!

Gefragt von eric234 vor 1 Tag

Beantwortet von jscher2000 - Support Volunteer vor 1 Tag

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… (Lesen Sie mehr)

'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

Gefragt von Nancy vor 1 Tag

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… (Lesen Sie mehr)

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.

Gefragt von melankney vor 1 Tag

firefox crashes

I have an insane amount of crashes i have tried everything i think my pc is just damaged either windows or disk or viruses i have no idea?! all my browsers same issue i… (Lesen Sie mehr)

I have an insane amount of crashes i have tried everything i think my pc is just damaged either windows or disk or viruses i have no idea?! all my browsers same issue including firefox

Gefragt von goodkat430 vor 1 Tag

Letzte Antwort von Paul vor 1 Tag

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… (Lesen Sie mehr)

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?

Gefragt von Karl vor 1 Tag

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 … (Lesen Sie mehr)

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)

Gefragt von Magdeline Ng vor 1 Tag

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'… (Lesen Sie mehr)

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.

Gefragt von Iridium.throne vor 1 Tag

Unable to sign in Qobuz from few days ago

I was unable to sign in Qobuz from yesterday. I have been using Firefox ver 115 to play streaming music from Qobuz on my Windows 8.1 PC as its sound quality is better t… (Lesen Sie mehr)

I was unable to sign in Qobuz from yesterday. I have been using Firefox ver 115 to play streaming music from Qobuz on my Windows 8.1 PC as its sound quality is better than other browsers. Yesterday, I found nothing happened after clicked the SIGN IN button on Qobuz's login page, however I had no problem using Google Chorme to login.

So I uninstalled/re-installed Firefox, and tried different older/newer versions, still didn't work.

I tried another PC running Windows 10, with Firefox ver 124.0.2, got the problem.

Please fix the problem ASAP, Firefox team. Thanks.

Its purer sound is the main reason I use firefox, instead of other browsers.

Gefragt von s2222440 vor 4 Tagen

Letzte Antwort von cor-el vor 1 Tag

Login page

I cannot open the login page on my hosts website. My host is https://ventraip.com.au/ based in Melbourne Australia. That means I cannot access the Cpanel so I cannot uplo… (Lesen Sie mehr)

I cannot open the login page on my hosts website. My host is https://ventraip.com.au/ based in Melbourne Australia. That means I cannot access the Cpanel so I cannot upload data on my web site. Other people can open that login page on their computers buy I can't on mine. Where is the problem?

This is the message I get


'Secure Connection Failed

An error occurred during a connection to vip.ventraip.com.au. PR_CONNECT_RESET_ERROR

Error code: PR_CONNECT_RESET_ERROR

   The page you are trying to view cannot be shown because the authenticity of the received data could not be verified.
   Please contact the website owners to inform them of this problem.'

Gefragt von Rug8Int vor 2 Tagen

Letzte Antwort von cor-el vor 1 Tag

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… (Lesen Sie mehr)

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

Gefragt von raledj vor 2 Tagen

  • Gelöst

Would like to change from current version to 124.0.2

I just got a new to me computer and it has Firefox 125.0.3 (64bit) but I was more comfortable with what I had Version 124.0.2 (64 bit). What would be the downside of cha… (Lesen Sie mehr)

I just got a new to me computer and it has Firefox 125.0.3 (64bit) but I was more comfortable with what I had Version 124.0.2 (64 bit). What would be the downside of changing to what I had? I just use it for home use and browsing. How would I go about making that change. I'm not to knowledgeable about computer language and stuff. Thanks, Larry

Gefragt von Larry/Nancy Jones vor 2 Tagen

Beantwortet von Larry/Nancy Jones vor 2 Tagen