顯示下列標籤的問題: 顯示所有問題
  • 封存

Controls in a game, that use the Alt key, aren't working?

On this page with an Atari emulator, I am unable to use its controls that use the Alt key, such as Alt+P to pause. It works with another browser, or with a fresh profil… (閱讀更多)

On this page with an Atari emulator, I am unable to use its controls that use the Alt key, such as Alt+P to pause.

It works with another browser, or with a fresh profile.

I've tried disabling add-ons and trying it again, but it fails even after disabling each of them. It also doesn't even work in troubleshooting mode, and that seems kinda odd?

It may be some modified settings in my Firefox profile? Though if it is, I don't know what settings, nor how to fix it. What sorts of settings are retained even in troubleshooting mode?

Sterrence 於 8 個月前 詢問

jscher2000 - Support Volunteer 最近回覆於 6 個月前

  • 封存

Cannot save or move around bookmarks by drag&drop anymore

I use the bookmark bar very heavily and my workflow was to just "drag" the tab with the mouse to folder in the bookmark bar, which would unfold and I drop the tab/bookmar… (閱讀更多)

I use the bookmark bar very heavily and my workflow was to just "drag" the tab with the mouse to folder in the bookmark bar, which would unfold and I drop the tab/bookmark in the desired sub-folder.

This worked really well for me, and was fast.

Recently, this stopped working. I can still drop a bookmark in one of the main folders in the bookmark bar. But not in any sub-folder, since the main folder closes as soon as I move the mouse inside it. It is also not possible anymore to move the already-saved bookmarks around via drag&drop.

System: Linux (Manjaro Gnome 41.1) Firefox for Arch Linux 94.0.2 (64bit)

jochenstehle 於 1 年前 詢問

jonzn4SUSE 最近回覆於 1 年前

  • 封存

"Security Error: Your session has been invalidated" https website doesn't load

Following website "https://www.hellobank.fr" is unreachable either in normal or private windows. There is another report but it is pretty old for now. https://support.m… (閱讀更多)

Following website "https://www.hellobank.fr" is unreachable either in normal or private windows.

There is another report but it is pretty old for now. https://support.mozilla.org/en-US/questions/1025002

So I just want to understand is there is anything new since this post or do I have to apply a more efficient solution that removing user.js I don't want to take the risk of spoiling up my setup.

Clément 於 1 年前 詢問

jscher2000 - Support Volunteer 最近回覆於 1 年前

  • 封存

I marked "Ask always" for Microsoft excel files, but Firefox always download them

HI! I'm using Firefox 98 on Linux Ubuntu 20.04. after the last update I found several settings changed and I had to reset them, but there is one setting I can't manage. I… (閱讀更多)

HI! I'm using Firefox 98 on Linux Ubuntu 20.04. after the last update I found several settings changed and I had to reset them, but there is one setting I can't manage. In the download preferences I set all the Microsoft Excel entries to "Always ask", but every time that I try to see an Excel file (no download, just open with ...), this is automatically downloaded. I definitively don't want to download it. How can I change this behavior? P.S.: I realized right now that there is the same problem with .docx files and I don't know how many others file types.

luca.dgh 於 1 年前 詢問

jonzn4SUSE 最近回覆於 10 個月前

  • 封存

Plugins & Profile directory

I have tried on windows and on linux, and the same thing happens for both. I don't get the plugins i should have. I want to try and enable java, but its not even appearin… (閱讀更多)

I have tried on windows and on linux, and the same thing happens for both. I don't get the plugins i should have. I want to try and enable java, but its not even appearing in the first place. My profile directory is all messed up as well. I don't have a pluginreg.dat, my extensions.sqlite is an extensions.json. I have been reading all the forums but they mention stuff about the files in the profile, but I don't have those files.

caedenperelliharris 於 1 年前 詢問

FredMcD 最近回覆於 1 年前

  • 封存

How to troubleshoot crashes when no crash report is generated?

I'm having an issue where Firefox (Linux, 96.0.3) will crash after it's been running for a while but no crash report is generated. This is on an older Intel NUC with 2GB … (閱讀更多)

I'm having an issue where Firefox (Linux, 96.0.3) will crash after it's been running for a while but no crash report is generated. This is on an older Intel NUC with 2GB RAM running Clear Linux and intended to be used as a digital sign. No other applications are running. There is only a single tab loading a single page from localhost. No extensions are installed. The page is a simple layout using CSS grid. Javascript is used to create a slider with four slides, to cycle through a series of videos hosted locally, and periodically check for content updates. Below is the JS in it's entirety.

My feeling is that it's a memory issue, possibly to do with the video playlist, but I've been monitoring memory usage via about:performance and the tab with the sign has never used more than about 5MB. I've also been monitoring the system resources via htop and I've never seen it go higher than about 1000MB. How can I track down this issue?

Thanks in advance!


<script>

   const swiper = new Swiper('.swiper', {
       autoplay:{delay:10000},
       loop:true,
       effect: 'fade',
       fadeEffect:{crossFade:true}
   });
   
   let video = document.querySelector('video'),
       source = video.querySelector('source'),
       vids = Object.values(JSON.parse('!getVideos')),
       i = 1; //start at 1 instead of 0 because the first is already playing
       
   video.addEventListener('ended', function(){
       source.src = vids[i++];
       if(i == vids.length) i = 0;
       video.load();
       video.play();
   });
   
   //check for content updates
   let seconds = 60,
       lastUpdate = null;
       
   setInterval(() => {
       let req = new Request('~6'),
           headers = new Headers();
           
       headers.append('cache-control', 'no-store, must-revalidate');
       
       fetch(req, {method:'GET', headers:headers})
           .then(response => response.json())
           .then(data => {
               let updated = JSON.stringify(data)
               if(lastUpdate === null) lastUpdate = updated;
               
               if(lastUpdate !== updated) location.reload();
               
           }).catch(console.error);
   }, (seconds * 1000));

</script>

dwillis840 於 1 年前 詢問

jonzn4SUSE 最近回覆於 1 年前

  • 封存

Can't delete all cookies on restart

I cannot remove all cookies on shutdown. I wish to ignore white list, or any other limitation, and automatically remove ALL cookies so that, on my next start-up, there i… (閱讀更多)

I cannot remove all cookies on shutdown. I wish to ignore white list, or any other limitation, and automatically remove ALL cookies so that, on my next start-up, there is NO memory space taken up with cookies.

If necessary, I will be pleased to have all whitelist contents deleted on each shut-down.

I do want to keep browse history and have past windows open automatically. This question is only about cookies.

I have set up the HISTORY section of Setup to delete all cookies, but no joy.

I am running Firefox 97.0(64-bit) on Ubuntu-Mate 20.04.

Please tell me how I can do this automatically.

firefox1715 於 1 年前 詢問

cor-el 最近回覆於 1 年前

  • 封存

Cannot autofill Credit Card Info

Got sick and tired of having to enter payment card info every time, so I decided to RTFM and follow instructions. I worked my way thru all the instructions on found on t… (閱讀更多)

Got sick and tired of having to enter payment card info every time, so I decided to RTFM and follow instructions. I worked my way thru all the instructions on found on the forum pages, and was entering the information via about:config, and got to the popup where I was asked to confirm, and clicked the button, then clicked it harder, but nothing happened.

My guess is that my Firefox and/or my Leap15.3 installation has left some file permission read-only and Firefox is unable to save this bit of data, but I really don't want to run Firefox as root. I can say more, but I see there are more boxes to fill.

So, I included a screenshot of what I hope will be the useful part of my config file.

The Singer Man 於 1 年前 詢問

jonzn4SUSE 最近回覆於 12 個月前

  • 封存

media playback aborted

What could be causing this to happen on many media files? Version 102.0 in Fedora 36 workstation. This is in a demonstration video about a Travel Trailer shower door inst… (閱讀更多)

What could be causing this to happen on many media files? Version 102.0 in Fedora 36 workstation. This is in a demonstration video about a Travel Trailer shower door installation on this page. Down the page in the reviews section. This happens on other sites also.

https://smile.amazon.com/Retractable-Rolling-Shower-Platinum-Replacement/dp/B07Y5KJYTZ/ref=sr_1_33?crid=14BZ2K3PJ1DJ4&keywords=irvine%2Bshower%2Bdoor&qid=1657297432&sprefix=%2Caps%2C189&sr=8-33&th=1

Thanks for any help in advance. Bob.

1bbrazie 於 8 個月前 詢問

jonzn4SUSE 最近回覆於 8 個月前

  • 封存

How do I stop Firefox from changing http to https?

Yes. "Don’t enable HTTPS-Only Mode" is checked. Yes. In about:config "browser.urlbar.autoFill" is set to false. It STILL does it! This is maddening. I'm trying to go t… (閱讀更多)

Yes. "Don’t enable HTTPS-Only Mode" is checked. Yes. In about:config "browser.urlbar.autoFill" is set to false. It STILL does it! This is maddening. I'm trying to go to an address on my network for my IP cameras. http://192.168.50.65 (for example), and Firefox keeps changing it https! Then of course, it won't connect. How do I stop this? I hate having to start Chrome or Opera to manage these local addresses.

nosoy1 於 7 個月前 詢問

cor-el 最近回覆於 6 個月前

  • 封存

I need Firefox to lie to the website and say that Adobe Acrobat 9 is installed

I am dealing with a government website. All of the government forms are available as PDFs on this website. However if I try to download a form the site looks at the br… (閱讀更多)

I am dealing with a government website. All of the government forms are available as PDFs on this website. However if I try to download a form the site looks at the browser description and does not see Adobe Acrobat installed on my system, so it returns a text document telling me to install Adobe Acrobat release 8 or higher. I cannot install Adobe Acrobat because Adobe does not support Linux. I don't need to install Adobe because Firefox, Chrome, and every other browser on the market has builtin support for PDF. How do I customize Firefox to LIE to the website and say that Adobe Acrobat is installed?

jamescobban 於 1 年前 詢問

cor-el 最近回覆於 1 年前

  • 封存

FTP removal.. why would you do this? Is there a paid version that we can buy?

Hi. Why would you remove FTP? It's not obsolete, I use it for work, and a good one third of my browsing is easily ftp sites such as NetBSD.org, ftp.gnu.org and others. … (閱讀更多)

Hi.

Why would you remove FTP? It's not obsolete, I use it for work, and a good one third of my browsing is easily ftp sites such as NetBSD.org, ftp.gnu.org and others. FTP is still used heavily.

I really really dislike that it's gone. I'd gladly spend 30-40$ a year for a paid version.

I've been using you guys back to Mozilla, Firebird, Netscape and even earlier ..possibly related was NCSA Mosaic. C'mon guys.. which Millenial decided FTP was obsolete and uncool because it was old? It's how most of the Open Source projects and distributions still move data around. :~( This is the first time since I started using Netscape/Mozilla/etc that you've ever done something I don't like. The last thing I want to do is be forced to use Chrome or some other garbage. Please.. bring it back or some sort of external module we can pay for to get browsing back. Please! I beg you. (Trying hard to be really civil and nice here ..truely baffled that it'd be removed).

A.

vk2fvax 於 1 年前 詢問

Rodney 最近回覆於 1 年前

  • 封存

address bar autocompletes to depreciated url; how to stop?

Hello, I recently was forced to change the address of my blog from "universalism.com.au" to "universalism-au.com" (due to silly legal requirements introduced a few month… (閱讀更多)

Hello,

I recently was forced to change the address of my blog from "universalism.com.au" to "universalism-au.com" (due to silly legal requirements introduced a few months back about requiring an ABN if you want to use the .au suffix).

"universalism.com.au" is now a dead link, but when I start typing "uni..." in the address bar, it always autocompletes to this old and depreciated url rather than my new one. I would like to be able to type "uni..." and have it autocomplete to the new address, "universalism-au.com"

I have cleared what seems relevant from my browsing history, but no luck. Is this perhaps being caused by my default search engine (duckduckgo) recommending the wrong address?

I have attached a screenshot if this helps.

tikajr 於 1 年前 詢問

cor-el 最近回覆於 1 年前

  • 封存

Can't pin "Nightly" to Ubuntu taskbar. Can only load from "MOZ" command! Help!

My install of Firefox was somehow corrupted. I was instructed by FF tech support to download the latest "Nightly" build, extract it to my "Downloads" folder, and launch i… (閱讀更多)

My install of Firefox was somehow corrupted. I was instructed by FF tech support to download the latest "Nightly" build, extract it to my "Downloads" folder, and launch it using the following command:

MOZ_ACCELERATED=0 MOZ_WEBRENDER=0 ~/Downloads/firefox/firefox

This opens a working install of "Nightly" (with purple & blue firefox icon), but as soon as I close it, the icon goes away. The program is not recognized as "installed" so it does not appear in a search for installed apps. And if I right-click on its icon while running, "Pin to taskbar" is not an option.

"Nighly" is working (I'm using it to type this) and I even have it Synced to my account, but the ONLY way to launch it is via the Terminal CLI. :(

My broken copy of "Firefox" is still listed as installed, but is unusable.

HELP! TIA

Mugsy 於 1 年前 詢問

Paul 最近回覆於 1 年前

  • 封存

saved logins and passwords wiped, erased, deleted, lost

Very similar to posts in previous years that are archived and largely unanswered or not up-to-date. I opened up my a Firefox session to find out I was logged out of syn… (閱讀更多)

Very similar to posts in previous years that are archived and largely unanswered or not up-to-date.

I opened up my a Firefox session to find out I was logged out of sync and when I logged back in all my passwords where erased.

This has been stable for the last 10 months and Firefox has provided a reliable password archive with nice syncing features. However, this is a deal breaker, since I cannot loose the login credentials randomly.

No updates. No conscious logging out. No disregarding warnings etc.

Anyway to revert or retrieve?

Magnus 於 1 年前 詢問

jonzn4SUSE 最近回覆於 1 年前

  • 封存

How can I get a current version of Firefox that is intended for persons not involved in an enterprise?

Ever since my Firefox application was updated to 96, the application has become unstable. The only way I can load it is be typing Firefox =P on my terminal, and picking … (閱讀更多)

Ever since my Firefox application was updated to 96, the application has become unstable. The only way I can load it is be typing Firefox =P on my terminal, and picking a profile. The usual approach produces a response that "Firefox" can't find my profile. After attempting to fix this for two days, my links, logins, bookmarks, are available sometimes or never.

The 96 version was a big mistake and never should have been installed on my computer, which is no connection to an "enterprise".

How can I recover a stable non-enterprise related version of Firefox?

rholcomb786 於 1 年前 詢問

James 最近回覆於 1 年前