Commentary No Longer Visable On Multiple Websites

The last Firefox update, 126.0 (64bit), that was installed 2 days ago has caused various website's commentary or forums to not be displayed. For example, Yahoo finance pa… (read more)

The last Firefox update, 126.0 (64bit), that was installed 2 days ago has caused various website's commentary or forums to not be displayed. For example, Yahoo finance page, attempting to read the "community" section of a particular stock such as Walmart (WMT) nothing is displayed. This happens also on news websites that allow commentary. Google Chrome does display commentary but I don't like using Google.

This is not the first time commentary has not being displayed after an update. Happened a couple of times last year.

The desktop pc is running Windows 11, version 23H2.

Thanks, Frank

Asked by Clovis People 10 hours ago

  • حُلّت

Startpage Search Engine

This problem exists ONLY on Firefox. I vary search engines, from DuckDuckGo to Presearch and Startpage depending on the search results I get. For no apparent reason I wi… (read more)

This problem exists ONLY on Firefox. I vary search engines, from DuckDuckGo to Presearch and Startpage depending on the search results I get.

For no apparent reason I will get a "suspended connection" message on Startpage while using the Firefox browser. I have included both the link and a screenshot of the problematic page. The page will open perfectly several times, and then suddenly, in the same session, if I open a new Startpage tab, this message will appear. While the suspended connection message is visible in Firefox / Startpage, I will try Startpage in Edge, Opera, Chrome and Midori, and they all open to the Starpage beautifully.

I am using the Firefox 125.0.3 browser, I have cleared caches and cookies, and run full malware scans, with zero negative results, and yet this problem persists. It is sporadic, and does not occur on a predictable basis. It occurs whether the Mozilla VPN is on or not, and switching from on to off or off to on changes nothing, even after refreshing the page.

I am assuming that this is a Firefox issue, as the problem does not occur on other browsers

I can easily switch browsers and / or search engines, but Firefox in conjuction with Startpage is my preferred combo. I just find it frustrating in that I cannot fix it myself.

So....Ehhhh...what's up doc?

https://www.startpage.com/sp/captcha-block#?bc=US&bi=QuadraNet&be=a2667ecaaf93ae9c091acfff4cebeacc&bds_t=1715638671T77bc1f599823650a2bba749db91bb9c806807a1edc0a34414bf50516dbe0e125&bds_s=dd88ea12048c4efdb6fb4d366c52ae8f&lui=english&cat=web&language=english&t=night&cmd=gen_page

Asked by EmJay Dubbya 3 days ago

Answered by EmJay Dubbya 10 hours ago

Only display fully downloaded files in the download folder

Hello dear community, I have a program that continuously monitors the download folder under Windows 11 for a specific file and retrieves it. I download this file in Fire… (read more)

Hello dear community,

I have a program that continuously monitors the download folder under Windows 11 for a specific file and retrieves it. I download this file in Firefox, but the said program gives an error.

I have noticed that when files are downloaded in FireFox, they already appear in the Downloads folder with the corresponding file extension with 0 bytes and these are then apparently swapped or merged with the .parts file.

The problem is that the mentioned program now tries to retrieve the unfinished file, which then leads to an error.

Does anyone know if it is possible to customize Firefox so that the file only appears in the download folder when the download is fully complete?

Many thanks for your help :D

Asked by Andrijan 2 days ago

Last reply by Andrijan 10 hours ago

Problem due to latest Firefox update

I use the Kindle Cloud Reader (https://read.amazon.com/kindle-library) to access and read ebooks in my Amazon Kindle library. Since the latest Firefox update something i… (read more)

I use the Kindle Cloud Reader (https://read.amazon.com/kindle-library) to access and read ebooks in my Amazon Kindle library. Since the latest Firefox update something is preventing my ebooks from opening correctly. The ebooks open, but only a single page appears and none of the navigation controls load.

Amazon support suggested trying a different browser. I loaded the Edge browser and had no problems opening my ebooks. I prefer to use the Firefox browser so I hope you can fix this issue.

Regards, ddi

Asked by ddi2200 11 hours ago

Can't open Word files on Firefox

I can’t seem to open any Word files in Firefox. Doesn’t matter if it’s a new file or an old one, it just won’t open. What’s weird is that it takes me to a OneDrive page s… (read more)

I can’t seem to open any Word files in Firefox. Doesn’t matter if it’s a new file or an old one, it just won’t open. What’s weird is that it takes me to a OneDrive page saying the file doesn’t exist or isn’t available. But when I switch to Google Chrome, everything works fine.

Asked by tha.supreme227 12 hours ago

unable to receive emails for last 2 days

unable to receive emails for last 2 days, w11 desktop. I get the msg failed to connect to server Sending emails not put in sent folder, can save in local folder. No pro… (read more)

unable to receive emails for last 2 days, w11 desktop. I get the msg failed to connect to server Sending emails not put in sent folder, can save in local folder. No problems before this.

Asked by stuhal1 14 hours ago

Last reply by jonzn4SUSE 12 hours ago

How to move the Application Menu to the Left side of the screen

I have search and have seen screen shots. But not actually how to do it. In firefox the Application Menu "the three lines or the Hamburger." How do you move it to the Lef… (read more)

I have search and have seen screen shots. But not actually how to do it. In firefox the Application Menu "the three lines or the Hamburger." How do you move it to the Left side of the screen instead on the default location on the top right. Also please correct me if this is not possible. And thank you in advance. I am on the latest version and currently using windows 10.

Asked by Wil 19 hours ago

Last reply by Agent virtuel 12 hours ago

Every time I start Firefox a download pop-up appears

So yesterday I downloaded a bunch of files to mod a game. This warning appeared and since then it's been popping up every time I start the browser. I have cleared all coo… (read more)

So yesterday I downloaded a bunch of files to mod a game. This warning appeared and since then it's been popping up every time I start the browser. I have cleared all cookies related to the relevant sites. I have removed the warning about unwanted and uncommon software. I would rather not clear all my cookies and data to resolve this, so looking for other suggestions first. I don't mind digging through files or code to make it happen.

Asked by Safir 13 hours ago

  • حُلّت

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 p… (read more)

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?

Asked by hal.martin 1 day ago

Answered by hal.martin 14 hours ago

  • حُلّت

pages like nytimes.com and onepiecedle.net (wordle clone) break in 126

On nytimes.com some page elements are missing like pictures. the onepiecedle page just displays the background. In Pic1 you can see what the page is supposed to look lik… (read more)

On nytimes.com some page elements are missing like pictures. the onepiecedle page just displays the background.

In Pic1 you can see what the page is supposed to look like, here opened in chrome

In Pic 2 you can see what it looks like in Firefox 126

I tested troubleshoot mode, private window, etp off, private window, hardware accel. on/off, nothing seems to work.

Asked by jan237 1 day ago

Answered by jan237 17 hours ago

  • حُلّت

URL bar popup menu text spaced out (kerning/tracking issue)

Hi All, Is there any reason why the menu item text in the URL popup menu is so spaced out in FF 115 and 125? It's the only menu I've found like that. See attached scre… (read more)

Hi All,

Is there any reason why the menu item text in the URL popup menu is so spaced out in FF 115 and 125?

It's the only menu I've found like that.

See attached screenshots. The one on the left is FF 115, and the one on the right is FF 88 (more normal).

Is there a way to fix this?

And also remove that "Add" menu item at the bottom?

If so, please reply!

Asked by Slouch 3 days ago

Answered by Slouch 17 hours ago

YouTube video issues on FireFox

Hey there. To get straight to the point, whenever I am watching a YouTube video on Firefox in full screen, every so often the screen goes black then slowly fades back in.… (read more)

Hey there. To get straight to the point, whenever I am watching a YouTube video on Firefox in full screen, every so often the screen goes black then slowly fades back in. I have no idea how to fix this issues and it is not my computer that is causing it (doesn't happen on other browsers, my computer was tested for a variety of problems and nothing was wrong, etc). I have also looked through Firefox Reddit help pages and the support articles on the Firefox support website but have found nothing to help. Any suggestions or help would be much appreciated! Thank you :)

Asked by Smokeydeathcap 17 hours ago

  • حُلّت

Spotify webplayer on Firefox is unuseable after updating to latest version

Majority of the songs do not play and I'm given with a pop-up, "Spotify can't play this right now. If you have the file on your computer you can import it." I will play … (read more)

Majority of the songs do not play and I'm given with a pop-up, "Spotify can't play this right now. If you have the file on your computer you can import it."

I will play a song from a playlist and is given that pop-up, it will continue skipping to the next song until it plays, but only for 9-10 seconds until the song mutes, to specify, the dot (when hovered on the progress bar) will still move, indicating that "it's playing".

Some clarifications: 1. I use Spotify Desktop app (windows), Spotify App (android), and Spotify Webplayer on Chrome and Firefox. Everything works just as fine on all of these, except for Spotify Webplayer on Firefox. 2. Skipping to a later timestamp does not unmute the song. 2. I have Spotify Premium 3. I have no VPN 4. I am running Firefox with an ad blocker 5. I am running Chrome with an ad blocker (same ad blocker in Fifefox) 6. I am running Firefox to the latest version (Firefox 119.0.1 (20231106151204))

What I've done so far: 1. Cleared caches and data. 2. Updated my Windows to the latest update available - Win10 v.22H2 3. Signed-out of Spotify for all my devices, then logging-in first on Spotify Desktop (this automatically redirects to Firefox webplayer) 4. Ran Firefox on "Troubleshoot Mode" 5. Un-checked and re-checked "Play DRM content" setting. 6. Disabled and re-enabled the plug-in "Widevine Content Decryption Module by Google Inc". (this plug-in is last udpated on November 17, 4.10.2710.0

I'm including this link from Spotify's Community page.. where two other users, who commented it is only with Firefox (webplayer), are experiencing the same problem as I am. https://community.spotify.com/t5/Desktop-Windows/Spotify-can-t-play-this-right-now-If-you-have-the-file-on-your/m-p/5679914#M123192

Asked by kit 5 months ago

Answered by zeroknight 5 months ago

Latest Update Will Not Download

This is my Mac Monterey. My Windows 10 is in Safe Mode With Networking. The last update will not download. That version is 125.0.3. What's available under Windows upd… (read more)

This is my Mac Monterey. My Windows 10 is in Safe Mode With Networking. The last update will not download. That version is 125.0.3. What's available under Windows updates does not download either. Now I am running my antivirus on my Windows to see if it runs clean. I do not know why I cannot apply these updates.

Asked by tightpurchaser 1 day ago

Last reply by tightpurchaser 20 hours ago