顯示下列標籤的問題: 顯示所有問題
  • 已解決

Dead keys not working only in a specific profile

Today I noticed that typing characters with accents like á, ã, â, etc. doesn't seem to work at all from firefox, they all end up ignoring the dead key and just typing the… (閱讀更多)

Today I noticed that typing characters with accents like á, ã, â, etc. doesn't seem to work at all from firefox, they all end up ignoring the dead key and just typing the letter itself. It can render them just fine and I can paste them from another app normally too, but actually typing them is impossible from firefox.

After trying to troubleshoot, I eventually found out a few things: - iBus is not at fault, since it works in every other app and I even restarted it, but the problem persists - This only happens in my main profile, newly created profiles don't have that problem - The problem still happens on troubleshoot mode (as long as it is my main profile) - Compose key also doesn't work (I don't want to use compose key anyway, because my keyboard has specialized dead keys, but I at least tried it)

I suspect the problem lies in a setting on about:config that's different from newly created profiles, but I have no idea which and Ctrl+F searching this site doesn't show any relevant configuration that might be the culprit.

Kazuma 於 1 天前 詢問

Kazuma 於 1 小時前 解答

  • 已解決

Firefox Sync And Windows System Restore -- Backup Files Saved?

Full scenario: Computer had some issues, so I set up Windows Backup/Restore to a point just before resetting it, saving that data to an external drive. Then, I reset Wind… (閱讀更多)

Full scenario: Computer had some issues, so I set up Windows Backup/Restore to a point just before resetting it, saving that data to an external drive. Then, I reset Windows, choosing the option that lets you keep your files (most of them it looks like) while it reinstalls everything else.

I knew it'd wipe Firefox and I'd need to reinstall it, but when I synced my account, it didn't have logs. The logs are archives of various chats on a website I used to talk to friends. I know those used to be accessible through Firefox's directory under Program Files by checking the data saved for that website (something I had to do once before to remove corrupted logs), but that data obviously wouldn't be there now.

I should've considered this beforehand but I had no idea that data for different websites might not be included in a sync. It does have files for Firefox but I decided not to touch them, since I'd already synced and I didn't know if reverting to that Backup might break Firefox somehow. Or worse, cause me to lose MORE data.

Question now is, what's the chance those might be in that backup I saved? More specifically, data stored about websites I visited.

Always Tired (Jensen Draws) 於 20 小時前 詢問

Always Tired (Jensen Draws) 於 11 小時前 解答

  • 已解決

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… (閱讀更多)

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

EmJay Dubbya 於 3 天前 詢問

EmJay Dubbya 於 12 小時前 解答

  • 已解決

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… (閱讀更多)

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?

hal.martin 於 1 天前 詢問

hal.martin 於 17 小時前 解答

  • 已解決

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… (閱讀更多)

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.

jan237 於 1 天前 詢問

jan237 於 20 小時前 解答

  • 已解決

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… (閱讀更多)

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!

Slouch 於 3 天前 詢問

Slouch 於 20 小時前 解答

  • 已解決
  • 被鎖定

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 … (閱讀更多)

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

kit 於 5 個月前 詢問

zeroknight 於 5 個月前 解答

  • 已解決

PDF Editor options are unusable (grayed out)

I'm trying to use the built-in PDF Editor features after finding out about it but every PDF file I open with Firefox has the options grayed out (as shown in the screensho… (閱讀更多)

I'm trying to use the built-in PDF Editor features after finding out about it but every PDF file I open with Firefox has the options grayed out (as shown in the screenshot). What should I do to re-enable the features?

RxF 於 1 天前 詢問

RxF 於 1 天前 解答

  • 已解決

How do I hide the top menu bar in Fullscreen view in Mac OS 14.4.1 on MacBook Air?

When I'm in full screen mode, The Apple, "Firefox" "File" "Edit" "View" "History" "Bookmarks" "Tools" etc menu bar shows up at the top and won't disappear. On my iMac Pro… (閱讀更多)

When I'm in full screen mode, The Apple, "Firefox" "File" "Edit" "View" "History" "Bookmarks" "Tools" etc menu bar shows up at the top and won't disappear. On my iMac Pro, it doesn't show up. i.e. Off.

I can't figure out what is the setting to make sure it does not appear. I went digging everywhere and can't figure it out. If you could tell me what config, etc I'm missing I'd appreciate it.

Screen shot attached to show which menu bar I mean.

My firefox is up to date: 126.0 (64-bit)

Kim Yoonmi 김윤미 於 1 天前 詢問

cor-el 於 1 天前 解答

  • 已解決

The + sign to open new tab is missing after latest update

How do I get the + sign back on my tabs? After latest update I can only close tabs instead of opening new tab, and I am talking about after opening several tabs. When I h… (閱讀更多)

How do I get the + sign back on my tabs? After latest update I can only close tabs instead of opening new tab, and I am talking about after opening several tabs. When I have seven tab open, I have to do ctrl+t to open new tab instead of just clicking on the + sign that use to be at end of tabs. Yes, I do use custom settings. This happened before but I was able to fix by going to tabs under about:config, but it seems the setting is no longer there.

ninershark 於 1 天前 詢問

cor-el 於 1 天前 解答

  • 已解決

disable "search with" drop down

using firefox 115.10.0esr (64-bit) I want to disable this redundant dropdown there is a post here from 6 years, but dont dolve my problem, I dont want to disable or sepa… (閱讀更多)

using firefox 115.10.0esr (64-bit)

I want to disable this redundant dropdown there is a post here from 6 years, but dont dolve my problem, I dont want to disable or separate the seach and the url bar, i just want to get ridoof this redundant information, just for curiosity, if i disable search or separate the bars, i still get the anoing dropdown but with "Visit" instead of "Seach with"

Alex F Ferreira 於 2 天前 詢問

cor-el 於 2 天前 解答

  • 已解決

The new apostrophe quicksearch-function is a problem for me

Hello There seems to be a new function that opens a quick search window when I press the apostrophe key. This function is active on many websites, and I am using Firefo… (閱讀更多)

Hello

There seems to be a new function that opens a quick search window when I press the apostrophe key. This function is active on many websites, and I am using Firefox 125.0.3 on a Macbook Air.

This new function makes it very difficult for me to practice touch typing in Firefox, and I would like to turn this function of.

Best regards Max Andersson

Max Andersson 於 1 天前 詢問

TyDraniu 於 1 天前 解答

  • 已解決

Login for disqus.com not showing up.

There is a problem logging into Disqus. (disqus.com and disquscdn.com) This is affecting Linux and Windows installations. Page I'm having problems at www.lawyersgunsmon… (閱讀更多)

There is a problem logging into Disqus. (disqus.com and disquscdn.com)

This is affecting Linux and Windows installations.

Page I'm having problems at www.lawyersgunsmoneyblog.com

I have used the troubleshooting mode and caches have been cleared and all extension disabled with no luck.

Other browsers are functional. The log in doesn't appear at all:

Owlbear1 於 4 個月前 詢問

zeroknight 於 4 個月前 解答

  • 已解決

Google Sheets Cells Turn Black

This randomly happened over the past few months but last couple days it's bad. The Google Sheets cells I have open on Firefox turn black. You can scroll and they will com… (閱讀更多)

This randomly happened over the past few months but last couple days it's bad. The Google Sheets cells I have open on Firefox turn black. You can scroll and they will come back but just briefly and back to black. Very annoying as these are shared sheets for my business with other employees. It's not happening in Vivaldi Browser or Edge. I hate Chrome so not even trying it there but guessing it's fine. Seems to just be Firefox all of a sudden. See pic. Help please as I have no clue what's causing this.

Keith Robinson 於 2 天前 詢問

Keith Robinson 於 1 天前 解答

  • 已解決

Mozilla Firefox NIGHTLY 127.0a1

Hi, Why is it so much updates all the time with Mozilla Firefox NIGHTLY Browser for the 127.0a1 version that was released 15th of April 2024? I don't even see the benefi… (閱讀更多)

Hi,

Why is it so much updates all the time with Mozilla Firefox NIGHTLY Browser for the 127.0a1 version that was released 15th of April 2024? I don't even see the benefits of the updates or any information and what the content is in them. by clicking on "What new" doesn't show anything other than this from 15th of April.

https://www.mozilla.org/en-US/firefox/127.0a1/releasenotes/?utm_source=firefox-browser&utm_medium=firefox-desktop&utm_campaign=about-dialog

Regards, MrCitizenUnknown

MrCitizenUnknown 於 2 天前 詢問

NoahSUMO 於 2 天前 解答

  • 已解決

How can I enable seeing *all* tabs from other devices in Firefox View?

Hello All! I have recently tried to use Firefox View button in order to quickly open pages that I have opened on my Android device, however I found that only some (rando… (閱讀更多)

Hello All!

I have recently tried to use Firefox View button in order to quickly open pages that I have opened on my Android device, however I found that only some (random) portion of the tabs appear in the Firefox View under [tabs from other devices/my android device].

Is there any way I can change that behaviour? This is renedring the Firefox View kind of pointless, as I still have to open my phone to check whether there was maybe one more important page that I wanted to check out, that was not listed in the Firefox View on my PC. At that point, I could very well just see what were I at, on the android device, and just google stuff again. The mixed approch (some opened via Firefox View and some manually) is more time consuming than either of the approaches alone, so I would really appreciate help, as Firefox View seemed to be a time-saver - I believe I have something set erroneously somwhere. Thanks!

I am on firefox 125.0.3. 64-bit.

gawroon7 於 1 天前 詢問

jonzn4SUSE 於 1 天前 解答

  • 已解決

Sync cookies exception list

Hi, This has been brought up before, but not with this exact question (not that I could find, at least). I understand that cookies cannot be synced across devices, but … (閱讀更多)

Hi,

This has been brought up before, but not with this exact question (not that I could find, at least).

I understand that cookies cannot be synced across devices, but this is not what I am asking for. Is there a way to make firefox sync the list of exceptions? Meaning, only the specified website URL and its status, not the cookies from these sites.

pompan2 於 5 天前 詢問

cor-el 於 5 天前 解答

  • 已解決

Translate

How can I find or add the translate icon to the toolbar. I did a screenshot but can't see how to insert it. My tool bar has only a toggle reader icon and a favorites icon… (閱讀更多)

How can I find or add the translate icon to the toolbar. I did a screenshot but can't see how to insert it. My tool bar has only a toggle reader icon and a favorites icon after the url in the address bar. translate does seem to work automatically on the first page of website, but then does not work on other tabs of the same website. screen shot added

forestshopkeeper 於 2 天前 詢問

cor-el 於 2 天前 解答

  • 已解決

Setting Startpage as search engine

What's the best way to set up Startpage private search in Firefox? Should I manually change the settings or install the extension? Also, it seems like Firefox could impro… (閱讀更多)

What's the best way to set up Startpage private search in Firefox? Should I manually change the settings or install the extension? Also, it seems like Firefox could improve the process for us.

gregcane90 於 3 天前 詢問

jscher2000 - Support Volunteer 於 3 天前 解答