Kukhonjiswa imibuzo ethegiwe:

Playstation Can't Connect to the server

I am having issues signing in to the playstation store using firefox. It works on edge (although I have the same issue in ungoogled chromium). I have tried refreshing but… (funda kabanzi)

I am having issues signing in to the playstation store using firefox. It works on edge (although I have the same issue in ungoogled chromium). I have tried refreshing but that didn't work. I uninstalled it and deleted all mozilla folders in appdata, then tried again without signing in to my mozilla account on a fresh install but i'm still having the issue. It might be a windows configuration issue because I don't see why this would work on edge but not on firefox. I've tried disabling all cookie and tracking protection features but I still have the same issue.

Kusonjululiwe Okugcinwe kunqolobane 2 498

the auto populate feature imputs the wrong location for me..i live in new orleans and it always fills in atlanta

when i visit sites like home depot, lowe's or southwest airlines the auto populate feature thinks I live in atlanta, but i live in new orleans...how can I correct this … (funda kabanzi)

when i visit sites like home depot, lowe's or southwest airlines the auto populate feature thinks I live in atlanta, but i live in new orleans...how can I correct this

Kusonjululiwe Okugcinwe kunqolobane 3 171

Mobile bookmarks no longer appear in the Bookmarks menu in version 129

I just noticed after an update today that the Mobile menu entry (with bookmarks from my mobile Firefox instances) no longer appears in the browser's Bookmarks menu. I can… (funda kabanzi)

I just noticed after an update today that the Mobile menu entry (with bookmarks from my mobile Firefox instances) no longer appears in the browser's Bookmarks menu. I can access them from the bookmark manager, but this change seems extraordinarily stupid and arbitrary and is a definite step backwards.

Kusonjululiwe Okugcinwe kunqolobane 8 371

Not all the extensions are showing on the toolbar...

Hey guys, Can you please tell me how to get my extensions to appear on the toolbar? As you can see from the image (titled "forFirefox03"), only one is shown. The images (… (funda kabanzi)

Hey guys,

Can you please tell me how to get my extensions to appear on the toolbar? As you can see from the image (titled "forFirefox03"), only one is shown.

The images (titled "forFirefox01" and "forFirefox02") show all the extensions that I would like to have on the toolbar.

I've included the "About Firefox" (titled "forFirefox04") to show you which browser version I have.

I don't know if I need to show you the title names, but I'm used to Microsoft Answers, where I can put the images between the text, and here, I can't, so I'm assuming I have to show you them as names and images.

Kusonjululiwe Okugcinwe kunqolobane 9 216

Add 2nd Gmail to Firefox Bookmark

How do I add an existing 2nd email account to the Firefox Bookmarks. It keeps reverting to the my family account when I try to add a link to open an existing second emai… (funda kabanzi)

How do I add an existing 2nd email account to the Firefox Bookmarks. It keeps reverting to the my family account when I try to add a link to open an existing second email address

Kusonjululiwe Okugcinwe kunqolobane 2 280

Unable to play video

Yesterday I was able to see www.wowpresentsplus.com videos without a problem, but today I'm getting the next error: Unable to play video. Please try again in a supported… (funda kabanzi)

Yesterday I was able to see www.wowpresentsplus.com videos without a problem, but today I'm getting the next error:

Unable to play video. Please try again in a supported browser.

I have the latest version of firefox. I've cleared the cache and so on. Any idea on how to solve this?

Kusonjululiwe Okugcinwe kunqolobane 3 744

Blue Square at the tip of the mousecursor

I noticed today that there's a small blue cube appears at the tip of the mousecursor inside a firefox window , I guess it's some keyboard shortcut I accidentally activate… (funda kabanzi)

I noticed today that there's a small blue cube appears at the tip of the mousecursor inside a firefox window , I guess it's some keyboard shortcut I accidentally activated but can't find any info on where to disable

Kusonjululiwe Okugcinwe kunqolobane 5 252

Firefox Keeps Crashing on Startup After the Latest Update

Hi everyone, I recently updated Firefox to the latest version, and ever since, it crashes immediately on startup. I haven’t installed any new extensions or made any signi… (funda kabanzi)

Hi everyone,

I recently updated Firefox to the latest version, and ever since, it crashes immediately on startup. I haven’t installed any new extensions or made any significant changes to my system. I’ve tried restarting my computer and reinstalling Firefox, but the issue persists.

Is anyone else experiencing this problem? Are there any known solutions to fix this crash issue? I really rely on Firefox for my daily browsing, so any help would be greatly appreciated!

Thanks in advance.

Kusonjululiwe Okugcinwe kunqolobane 1 81

I uninstalled Kaspersky and now I can't access gmail in firefox

I uninstalled Kaspersky, but when I try to access gmail through firefox, it shows that it is still trying to connect through some kaspersky address, ff.kis.v2.scr.kaspers… (funda kabanzi)

I uninstalled Kaspersky, but when I try to access gmail through firefox, it shows that it is still trying to connect through some kaspersky address, ff.kis.v2.scr.kaspersky-labs.com, and it never loads. Kaspersky is no longer listed under my extensions, and I am not sure how to get this resolved so that I can access gmail again. Please help!

Kusonjululiwe Okugcinwe kunqolobane 4 198

Live video channels not streaming on Hulu

I have Hulu live tv streaming and the video is not streaming. I get a black screen when I select a channel or an item from the library. This also happens when I try to st… (funda kabanzi)

I have Hulu live tv streaming and the video is not streaming. I get a black screen when I select a channel or an item from the library. This also happens when I try to stream local tv stations' 24 hr streaming sites. Other streaming services (Disney+, ESPN+, Netflix... etc) stream just fine. Hulu works perfectly in Microsoft Edge but I truly prefer not to use it. I've been using Firefox for years. This has happened after the latest update of Firefox. The update before this latest I experienced a similar problem and using the trouble shoot mode narrowed it down to a problem with Adblocker Ultimate extension. I deleted the extension and reinstalled it and the problem corrected. I did the same this time and no success. I have cleared the cache and reset Firefox and still the problem exists. TIAF any help.

Kusonjululiwe Okugcinwe kunqolobane 3 478

macOS disable Firefox default browser prompt non-interactively

I am trying to configure Firefox on macOS to not prompt the user to make it the default browser. I am using the following script to create the profile and set the user pr… (funda kabanzi)

I am trying to configure Firefox on macOS to not prompt the user to make it the default browser.

I am using the following script to create the profile and set the user preferences after installing Firefox by copying `Firefox.app` from the downloaded DMG: ```

  1. !/bin/sh

open -a Firefox.app --args -CreateProfile default sleep 1

write_userpref() { USER=$(whoami) PROFILE=$(ls -1 "/Users/${USER}/Library/Application Support/Firefox/Profiles/" | grep -E "\.default$") cat << EOF > "/Users/${USER}/Library/Application Support/Firefox/Profiles/${PROFILE}/user.js" // mandatory comment? user_pref("app.update.auto", false); user_pref("app.update.disable_button.showUpdateHistory", false); user_pref("app.update.enabled", false); user_pref("breakpad.reportURL", ""); user_pref("browser.newtabpage.activity-stream.feeds.topsites", false); user_pref("browser.newtabpage.activity-stream.feeds.section.topstories", false); user_pref("browser.tabs.crashReporting.sendReport", false); user_pref("browser.discovery.enabled", false); user_pref("browser.defaultbrowser.notificationbar", false); user_pref("browser.shell.checkDefaultBrowser", false); user_pref("browser.shell.didSkipDefaultBrowserCheckOnFirstRun", false); user_pref("browser.shell.skipDefaultBrowserCheckOnFirstRun", true); user_pref("browser.newtabpage.enabled", false); user_pref("experiments.enabled", false); user_pref("extensions.pocket.enabled", false); user_pref("toolkit.telemetry.enabled", false); user_pref("update_notifications.enabled", false); EOF }

write_userpref

open -a Firefox.app --args -new-tab -P default "about:blank" sleep 3 osascript -e 'quit app "Firefox"' sleep 2

open -a Firefox.app --args -P default about:blank ```

Here's the behaviour I'm seeing:

  1. Firefox starts to an `about:blank` tab, however there is a second "Firefox Privacy Notice" tab
  2. AppleScript quits Firefox
  3. Firefox starts to an `about:blank` tab, however it is now prompting me to make it the default browser

I do not want Firefox to prompt the user to become the default browser.

My ideal scenario is that Firefox starts without the "Firefox Privacy Notice" tab and without prompting me to make it the default browser. From the observed behaviour, this doesn't seem possible.

Can anyone tell me how I can accomplish this without user interaction or MDM?

Kusonjululiwe Okugcinwe kunqolobane 2 315

CloudFlare broken loop

let's keep it as brief as possible.. i have no idea what the hell the degraders of cloudflare are doing, for the past YEARS all sites that required cloudflare worked just… (funda kabanzi)

let's keep it as brief as possible.. i have no idea what the hell the degraders of cloudflare are doing, for the past YEARS all sites that required cloudflare worked just fine, and now i lost access to multiple sites on firefox because of the cursed "are you human: captcha loop" i'm looking for extensions, i'm seeking github codes that i don't even know how to execute. the loop keeps demanding me to change the browser to a chromium.. isn't this supposed to be treated as a targeted cyber crime? from google against mozilla? how do i fix the captcha endless loop?

Kusonjululiwe Okugcinwe kunqolobane 7 1016

Videos on YouTube restricted to 360p

Every time I try to change the resolution of YouTube videos, it only provides 360p as an option, with a "Missing options?" message that redirects me to Google help page t… (funda kabanzi)

Every time I try to change the resolution of YouTube videos, it only provides 360p as an option, with a "Missing options?" message that redirects me to Google help page that just says my browser might be out of date (I'm on most recent Firefox and Windows 10 updates). The quality is still stuck in 360p when I reboot Firefox in Troubleshooting mode, and there are no quality issues when I use a browser like Edge. What should I be checking to resolve the issue?

Kusonjululiwe Okugcinwe kunqolobane 2 1682

network.http.rcwn.enabled Policy Configuration

Is there anyway to configure network.http.rcwn.enabled to false via the policy located in the ''C:\Program Files\Mozilla Firefox\distribution'' folder? … (funda kabanzi)

Is there anyway to configure network.http.rcwn.enabled to false via the policy located in the ''C:\Program Files\Mozilla Firefox\distribution'' folder?

Ikhiyiwe Okugcinwe kunqolobane 7 207

Edit bookmark box won't scroll or show me all my folders/subfolders

Edit bookmark box won't scroll or show me all my folders/subfolders: When are you going to fix this problem: https://support.mozilla.org/en-US/questions/968861 This used … (funda kabanzi)

Edit bookmark box won't scroll or show me all my folders/subfolders: When are you going to fix this problem: https://support.mozilla.org/en-US/questions/968861

This used to work fine. I don't want to mess with userChrome.css to get it to work. It should just work like it used to.

Thanks very much...

Kusonjululiwe Okugcinwe kunqolobane 2 245

Firefox URL address bar suggestions window shifted upwards, covering the URL bar and bookmarks

Hello, Since a couple of weeks I'm facing a strange issue on my Firefox installed on my desktop (arch linux) where the suggestions window that appears when clicking the U… (funda kabanzi)

Hello, Since a couple of weeks I'm facing a strange issue on my Firefox installed on my desktop (arch linux) where the suggestions window that appears when clicking the URL address bar, is shifted upwards and covers the address bar itself and the majority of the bookmarks. Has anyone experienced a similar issue and is able to point me towards some troubleshooting steps? Thanks!

Kusonjululiwe Okugcinwe kunqolobane 2 162