Showing questions tagged: Show all questions

Session Lost due to Firefox Crash

Hi, my session with a lot of open tabs has been lost due to a crash. In the profile folder, the recovery and previous files in the sessionstore-backups have been deleted.… (read more)

Hi, my session with a lot of open tabs has been lost due to a crash. In the profile folder, the recovery and previous files in the sessionstore-backups have been deleted. I tried to recover them using shadow explorer, but these files are corrupted, so I've had no success reading them. Is there a way to fix the corrupted files? Alternatively, because I've had sync enabled for open tabs, is there a log for past open tab synchronizations? If this was stored on the cloud, it may be possible to retrieve that table and restore the list of open tabs that way?

Asked by Darkmight11 2 months ago

Last reply by jscher2000 - Support Volunteer 1 day ago

  • Solved

Can no longer access my local server nor router via Firefox

I can no longer access my local TrueNAS server nor router via Firefox. My current version is 133.0.3. Safari has no trouble. Firefox gives no warning, no Advanced button… (read more)

I can no longer access my local TrueNAS server nor router via Firefox. My current version is 133.0.3. Safari has no trouble. Firefox gives no warning, no Advanced button, no option to bypass security. All I get is: "Unable to connect An error occurred during a connection to 192.168.0.102.

   The site could be temporarily unavailable or too busy. Try again in a few moments.
   If you are unable to load any pages, check your computer’s network connection.
   If your computer or network is protected by a firewall or proxy, make sure that Firefox is permitted to access the web."

I have tried so many settings, troubleshootings, workarounds, I can't begin to list them. It happens in troubleshooting mode. I have created SSL certificates on the server many different ways to no avail. I'm thinking I will have to abandon Firefox with it's obscure, no-way-through security. But I wanted to ask for help first. Please help.

Asked by sites1 2 months ago

Answered by sites1 2 weeks ago

Firefox hangs when merchant page transfers to Paypal

Paypal hangs when transferred from vendor site to complete purchase. Relaunching Firefox in troubleshooting mode resolves issue. Also works with Safari. What's wrong, wha… (read more)

Paypal hangs when transferred from vendor site to complete purchase. Relaunching Firefox in troubleshooting mode resolves issue. Also works with Safari. What's wrong, what needs to be changed?

Asked by jon857 3 months ago

Last reply by wwwoolf 2 weeks ago

Lost all tabs and history after a crash

We apparently lost power sometime during the night. When I turned on the monitor and opened FF, I got the error message that it had crashed. As my subject line says, I lo… (read more)

We apparently lost power sometime during the night. When I turned on the monitor and opened FF, I got the error message that it had crashed. As my subject line says, I lost all my tabs, the pinned ones (probably about 10) as well as the open ones (probably between 10 and 15). I also lost all my history. I can't use the 'Restore Previous Session' because it doesn't give me that option.

I've restarted Firefox and also rebooted my computer...still nothing happens. It's up to date, version 133.0. But I have no history beyond this morning. Is there any way I can recover those tabs or history?

And in my FF Settings, there's a link at the top that says "Your browser is being managed by your organization". I don't have or belong to an organization. When I click on the link it takes me to another page that says it's "Active" and there's a huge list of "Documentation" that apparently involves a lot of code. Can you please explain what all that means? Thanks so much for any help!

Asked by Honey Wesley 3 months ago

Last reply by jonzn4SUSE 2 weeks ago

printing

I am trying to print a slogan directly from computer to printer, but it refuses to print the slogan I need. Now I have a message on the printer saying "the login URL has… (read more)

I am trying to print a slogan directly from computer to printer, but it refuses to print the slogan I need. Now I have a message on the printer saying "the login URL has expired. Please try again. How/where do I enter the login URL? And why won't it print the slogan?

Asked by PaulaD 3 weeks ago

Inline JavaScript to hide bookmarks sidebar upon opening new browser instance

Does anybody know which options to use on the command-line start of Firefox such that the only thing displayed is the area within which an HTML page would be presented? … (read more)

Does anybody know which options to use on the command-line start of Firefox such that the only thing displayed is the area within which an HTML page would be presented?

I want to have it start with everything else turned off or hidden, namely

   memu bar
   page tabs bar
   address bar along all add-on buttons
   bookmarks sidebar

The "-kiosk" option is not appropriate for my needs.

-kiosk doesn't hide the sidebar (Bookmarks or not) if that sidebar was visible during last session before exit ... so ... no, "-kiosk" is not a proper implementation of a "page-only" display mode.

"-private-window" gives no benefit, display-wise, over and above what the "-new-window" option provides.

Everything I've read (even on the Mozilla support site) seems to point to creating a special profile for just that mode, and then to modify the "userChrome.css" file with custom properties to ensure the desired "off" setting for the GUI elements. That seems a rather "small-minded" view, ignoring the potential for huge market of self-contained hard-coded applications that would need only use the Firefox rendering engine, and nothing else!

One comment on Reddit indicated that the functionality was there ("-app" option working with XULrunner), but discontinued!


As a test, I did close all my browsers, leaving the bookmark sidebar visible before closing. I then entered:

firefox -kiosk -safe-mode -private-window ${URL}

I still get the bookmark-sidebar visible, with everything else "hidden" or "disabled", because visible sidebar is my default mode for normal browsing.

Is there no command-line startup switch to force that sidebar to "hide", equivalent to clicking on the "X" on the top-right corner?

OR ...

Is there any programmatic way to tell that to hide using JavaScript in the HTML page that is loaded? Everything I seem to locate refer to in-page Elements only, not Browser Elements. :frowning:

But "kiosk"(fullscreen-mode) is not the mode I want, because I want users to be able to have the simplified browser-based HTML App co-exist on the desktop with other windows, like a normal App.



    • Basic HTML test page** *(myHtmlGame.html)* **:**

``` <meta charset="UTF-8"> <title>myHtmlGame.html</title> <link href="myHtmlGame_bookmarks.css" rel="stylesheet" type="text/css"> <script src="myHtmlGame_bookmarks.js" type="text/javascript"> </script>

Box A
Box B
Box C
Box D
Box E
<script> {what to I place here } </script> ```



    • Basic Javascript file** (*myHtmlGame_bookmarks.js*) **:**

```

// REF: https://stackoverflow.com/questions/1690002/how-can-i-prevent-firefox-showing-my-extensions-sidebar-on-startup var current = this;

var quitObserver = {

  QueryInterface: function(aIID) {
     if (aIID.equals(Components.interfaces.nsIObserver) || aIID.equals(Components.interfaces.nsISupports)) {
        return this;
     }
     throw Components.results.NS_NOINTERFACE;
  },
  observe: function(aSubject,aTopic,aData ) {
     var mainWindow = current._windowMediator.getMostRecentWindow("navigator:browser");
     var sidebar  = mainWindow.document.getElementById("sidebar");
     if (sidebar.contentWindow.location.href == "chrome://daisy/content/sidebar.xul") {
        mainWindow.toggleSidebar('openDaisySidebar', false);
     }
  }

};

setTimeout(function() {

  var mainWindow = current._windowMediator.getMostRecentWindow("navigator:browser");
  var observerService = Components.classes["@mozilla.org/observer-service;1"].getService(Components.interfaces.nsIObserverService);
  observerService.addObserver(quitObserver,"quit-application-granted",false);

},2000); ```


I've tried using this alternative content for the JavaScript file, but that also failed (using '*hideSidebarBookmarks()*' call in the in-line script segment):

``` function hideSidebarBookmarks() { const sidebar = document.getElementById("CustomizableUI.AREA_BOOKMARKS") ; sidebar.hide() ; } ```

I even tried replacing the word "document" with "browser" in the above, still with no success. :-(



    • Startup command :**

``` firefox -new-window ./myHtmlGame.html & ```



    • Basic CSS file** *(myHtmlGame_bookmarks.css)* **:**

``` html { font-size: 14px ; font-family: "Liberation Sans", "Aileron", "Archivo", FreeSerif, serif ; line-height: 1.2em ; }

body { display: block ; background-color: #1F1F1F ; color: #FF0000 ;

margin-top: 0 ; margin-right: 0 ; margin-bottom: 0 ; margin-left: 0 ; }

/*

************************************************************************
*/

.game-grid { display: grid ; grid-template-columns: 300px 300px 60px ; grid-template-rows: 40px 300px 150px ; }

.game-item-1 { grid-column: 1 / span 3 ; grid-row: 1 / span 1 ; border: 1px solid #8FCF8F ; background-color: #1F1F1F ; }

.game-item-2 { grid-column: 3 / span 1 ; grid-row: 2 / span 2 ; border: 1px solid #8FCF8F ; background-color: #1F1F1F ; }

.game-item-3 { grid-column: 1 / span 2 ; grid-row: 2 / span 1 ; border: 1px solid #8FCF8F ; background-color: #1F1F1F ; }

.game-item-4 { grid-column: 1 / span 1 ; grid-row: 3 / span 1 ; /* box-sizing: border-box ; */ border: 1px solid #8FCF8F ; background-color: #1F1F1F ;

padding-left: 3 em ;

display: block ; color: #FFCF4F ;

word-wrap: break-word ; /* overflow-y: scroll ; overflow-y: auto ; */ overflow-anchor: none ; scrollbar-color: grey-black ; scrollbar-width: thin ; scroll-padding-bottom: 20px ;

/* In case you need to kick off effect immediately, this plus JS */ /* height: 100.001vh ; */ }


.game-item-5 { grid-column: 2 / span 1 ; grid-row: 3 / span 1 ; border: 1px solid #8FCF8F ; background-color: #1F1F1F ; }

div { padding-top: 1 em ; padding-right: 0 ; padding-bottom: 1 em ; padding-left: 0 ; }

```

The above will display per the attached image.

Asked by EricM 3 weeks ago

Last reply by EricM 3 weeks ago

AVC video playback is periodically malfunctioning on Firefox 133.0.3 after updating Intel Graphics driver to 32.0.101.6129

My GPU is the integrated GPU on the Intel U7-155H CPU. When some AVC videos are played, the browser reacts extremely slow and the video image is glitched and at a really … (read more)

My GPU is the integrated GPU on the Intel U7-155H CPU. When some AVC videos are played, the browser reacts extremely slow and the video image is glitched and at a really low rate of frame, and the video decoding engine seemed to be 100% occupied as shown in the task manager (normal video playback never occupied so much of it). Seems like AV1 encoded video never triggered the problem. The problem doesn't always happen, but at a rather high frequency. This never happened before I updated the Intel graphics driver from 32.0.101.5972 to 32.0.101.6129. The problem seemed not to happen on other browsers such as Microsoft Edge.

Asked by rjys365 2 months ago

Last reply by sstvytac 3 weeks ago

google, and only google, has started appearing with a scroll bar in the middle and bottom of screen when in use

Hello, earlier in the day I pressed a keyboard shortcut on accident when picking up my keyboard and has changed google results quite dramatically. I grabbed my keyboard … (read more)

Hello, earlier in the day I pressed a keyboard shortcut on accident when picking up my keyboard and has changed google results quite dramatically. I grabbed my keyboard and had a menu pop up on the left side and after i closed it noticed my google results had a scroll bar now. The results page only presents itself on the left half of the screen and a scroll bar has appeared on both the right side, cutting off text, and bottom of the page. These scroll bars only move a tiny bit and are quite unnecessary, but makes scrolling a pain as I have to be sure I am outside the new scroll bar area as they take precedent from the main scroll bar. I have googled Firefox's keyboard shortcuts and haven't found the one i need to fix this. Before I'm asked, no I do not have crazy zoom on and no zooming in does not fix this problem.

Asked by Gnarkilly 3 months ago

Last reply by JLEES 4 weeks ago

"Please enter primary password" multiple times per day or per hour

For the last several weeks, Firefox has been prompting me to "Please enter primary password" multiple times per day or even per hour. If I do so, the dialog box goes away… (read more)

For the last several weeks, Firefox has been prompting me to "Please enter primary password" multiple times per day or even per hour. If I do so, the dialog box goes away, only to come back again later. I'm finding this very frustrating.

Firefox does always prompt for this when I start it, as it has for many years.

I tried the recommended solution for a similar problem presented here but it didn't help.

This started some time after I updated from 130.0.1 to 133.0, but I have no idea whether the update is the cause.

Can anyone recommend what I can do to solve this or at least to investigate it further?

Asked by dhg 2 months ago

Last reply by KT 4 weeks ago

Browser fail

I frequently have to clear history to persuade my browser to connect to selected sites. This deletes my preferred sites "keys" (e.g. bank, ins., etc.) Why does this hap… (read more)

I frequently have to clear history to persuade my browser to connect to selected sites. This deletes my preferred sites "keys" (e.g. bank, ins., etc.) Why does this happen? I use a macbook air with an M2 chip.

Asked by andycornell 1 month ago

  • Solved

Completely inaccessible window

My computer died about three days ago, and firefox had three windows open. When I rebooted the computer again, firefox automatically started up, and the flyout panel thin… (read more)

My computer died about three days ago, and firefox had three windows open. When I rebooted the computer again, firefox automatically started up, and the flyout panel thing that shows up when you right click on an app claimed that all three windows returned. However, only two of them were actually accessible, and clicking on the app to move between them and the F3 window confirmed this. Clicking on the third window accomplishes nothing, reveals nothing, and just moves the little checkmark around in that flyout panel. Closing the other two windows before restarting firefox does not open a new window because it thinks one is already there, but I cannot in any way see or access it outside of its label in the flyout panel. Even hitting "Show All Windows" just shows the window I am typing this in. What am I supposed to do here?

Asked by hype11419 3 months ago

Answered by hype11419 3 months ago

Firefox Browser click-and-drag window move prompts unwanted window auto-resize

Regarding Firefox Browser 133.0.3 (aarch64) running on a MacBook Pro, macOS 15.0.1 (24A348): Click-and-drag movement of open windows to a different point on screen, typi… (read more)

Regarding Firefox Browser 133.0.3 (aarch64) running on a MacBook Pro, macOS 15.0.1 (24A348):

Click-and-drag movement of open windows to a different point on screen, typically toward upper left, periodically results in an automatically activated resizing of the window (to occupy more of the screen). The change is not to a full-screen mode, just larger—filling in open desktop space created by the window move.

Please advise, what control can be reset to stop this unhelpful, and uninvited (now default) browser operation?

Note, (1) we have searched Support posts and articles without finding an answer. And (2), the bug or glitch being queried is a serious enough aggravation in our daily work, that we will consider abandoning Firefox as a default browser if we do not find an easy, permanent solution.

Asked by r9dgp2xnqq 1 month ago

MISSING BOOKMARKS ICON

When my Firefox crashed today, I chose to restore it rather than troubleshoot. When it was done, my bookmarks icon had disappeared. Yet when I go to the individual websit… (read more)

When my Firefox crashed today, I chose to restore it rather than troubleshoot. When it was done, my bookmarks icon had disappeared. Yet when I go to the individual websites, I can see that each one is still bookmarked. How can I restore the icon that used to be in the toolbar at top? Thank you for any help you can give. I have been using Firefox for many years now and this is the first time I encountered this problem.

Asked by QueenBoo 2 months ago

Last reply by N.Aumond 1 month ago

Firefox freezing up when trying to save images using save image as feature

When saving images from websites using the save image as feature, Firefox will freeze up and not register any mouse click or anything instead making a ding noise every ti… (read more)

When saving images from websites using the save image as feature, Firefox will freeze up and not register any mouse click or anything instead making a ding noise every time is register a mouse click. This will continue for like 30 seconds before it becomes normal then it will repeat this for every image. How can I solve this?

Asked by Burak 2 months ago

Last reply by aodgizmo 1 month ago

  • Solved

Mozilla Extended Support Browser

Like probably a Lot of you I don't support the unethical So-called "Forced-obsolescence" and am not planning to "upgrade" Microsoft every 18 months or so for the next 90 … (read more)

Like probably a Lot of you I don't support the unethical So-called "Forced-obsolescence" and am not planning to "upgrade" Microsoft every 18 months or so for the next 90 years on each on Every single family Computer and give in to their Scare tactics for financial, environmental and Ethical reasons.

I am currently running Firefox "Extended Support," or ESR, I think it's called. Was wondering, If I ever **DO** decide to upgrade our bloatware Spyware operating system(s), basically if they break enough Apps like Apple Likes to do to force an upgrade, how difficult or easy would it be to Migrate from ESR to the latest regular version of Mozilla/Firefox...with all my Settings, etc. still in place?

Asked by LiveWire 2 months ago

Answered by LiveWire 2 months ago