顯示下列標籤的問題: 顯示所有問題
  • 已解決
  • 被鎖定
  • 封存

Long delays with HAProxy

I have a Plesk (apache) server that is behind HAProxy. When I connect securely to a web site through HAProxy using Firefox, I get long delays. If I use Safari or Chrome, … (閱讀更多)

I have a Plesk (apache) server that is behind HAProxy. When I connect securely to a web site through HAProxy using Firefox, I get long delays. If I use Safari or Chrome, the pages come right up without any delay.

If I connect to the Plesk server directly without HAProxy in the middle, there are no delays.

I do not know what would cause these delays that don't occur with other browsers.

I'm on a Mac: 115.0.2 (64-bit)

SuMo Bot 於 2 年前 詢問

SuMo Bot 於 2 年前 解答

  • 封存

"Window" drop-down menu missing open windows

Firefox "Window" drop-down menu is missing open windows. This has happened for a few upgrades. If I add a new blank window, the drop-down menu will fully populate, thoug… (閱讀更多)

Firefox "Window" drop-down menu is missing open windows. This has happened for a few upgrades. If I add a new blank window, the drop-down menu will fully populate, though if I navigate to any of the other pages, it goes back to being incomplete.

new iPad Pro 於 1 年前 詢問

new iPad Pro 最近回覆於 1 年前

  • 封存

tabs still crashing.

I still have not had any improvement with tab crashes especially on sites containing videos. Lately, every time i go on Facebook and play a video reel, i stop the video a… (閱讀更多)

I still have not had any improvement with tab crashes especially on sites containing videos. Lately, every time i go on Facebook and play a video reel, i stop the video and before i can return to my home page, the tab crashes. This browser has gotten worse rather than improving.

Scot63 於 1 年前 詢問

madcap magician 最近回覆於 1 年前

  • 已解決
  • 封存

LastPass is now disabled with every Firefox restart

For the past few months every restart of Firefox disables LastPass. I did NOT have this problem previously. The version of LastPass is current (no updates found). I can g… (閱讀更多)

For the past few months every restart of Firefox disables LastPass. I did NOT have this problem previously. The version of LastPass is current (no updates found). I can go to Add-ons and the toggle is set to "on" but the icon in the menu bar is black. If I click the toggle off, then back on, LastPass comes on just fine. Why is Firefox disabling something that Add-ons says is loaded? VERY strange. Does NOT happen in Chrome. Thanks for any assistance. PITB!!!

RobertL39 於 1 年前 詢問

zeroknight 於 1 年前 解答

  • 已解決
  • 封存

Double icons on Stop & Reload buttons when using custom icons

When reloading a page, or navigating to a new page, the default Stop icon momentarily appears over my own Reload icon, and the default Reload icon also appears over my St… (閱讀更多)

When reloading a page, or navigating to a new page, the default Stop icon momentarily appears over my own Reload icon, and the default Reload icon also appears over my Stop icon.

Please see attached image and animation.

Any idea if this is a minor bug?

Below is my code to split the Reload button into Reload & Stop buttons, then to add text to the navigation buttons, and finally to add icons to the navigation buttons.

This anomaly happens whether or not I split the Reload & Stop buttons. With just a single Reload button, I'm also seeing the default Reload icon appear over my own.

Thank you.

/* ---------- SPLIT RELOAD BUTTON INTO RELOAD & STOP ------------- */
#reload-button, #stop-button {
   display: inherit !important; 
} 
#reload-button > .toolbarbutton-icon {
  -moz-appearance: none !important; 
}


/* ------------ ADD TEXT LABELS TO NAVIGATION TOOLBAR BUTTONS --------------- */
/* Shows both icon and label for toolbarbuttons */
toolbar .toolbarbutton-1[label]{
  flex-direction: column;
  align-items: center !important;
}
toolbar .toolbarbutton-1[label]:not([disabled]):hover{ background-color: var(--toolbarbutton-hover-background) !important; }
toolbar .toolbarbutton-1[label] > .toolbarbutton-icon,
toolbar .toolbarbutton-1[label] > .toolbarbutton-badge-stack{
  padding: var(--toolbarbutton-inner-padding) !important;
  padding-bottom: 0px !important;
  height: calc(var(--toolbarbutton-inner-padding) + 16px) !important;
  border: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
toolbar .toolbarbutton-1[label] > .toolbarbutton-text {
  display: flex !important;
  min-height: 16px !important;
  padding-top: 3px !important;
  padding-bottom: 6px !important;
  background-color: transparent !important;
  overflow: hidden;
  width: 9ch; /* changes space between buttons */
}
toolbar .toolbarbutton-1[label] > .toolbarbutton-text::before{
  margin-inline: auto;
 }
:root:not([uidensity="compact"]) toolbar .toolbarbutton-1[label] > .toolbarbutton-text{ padding: 2px !important; }


/* ------------ ADD CUSTOM ICONS TO NAVIGATION TOOLBAR BUTTONS ----------- */
#back-button {
   list-style-image: url("image/back.png") !important;
   padding-top: 8px !important;
}
#back-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#forward-button {
   list-style-image: url("image/forward.png") !important;
   padding-top: 8px !important;
}
#forward-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#reload-button {
   list-style-image: url("image/reload.png") !important;
   padding-top: 8px !important;
}
#reload-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#stop-button {
   list-style-image: url("image/stop.png") !important;
   padding-top: 8px !important;
}
#stop-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#print-button {
   list-style-image: url("image/print.png") !important;
   padding-top: 8px !important;
}
#print-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#home-button {
   list-style-image: url("image/home.png") !important;
   padding-top: 8px !important;
}
#home-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}

Slouch 於 1 年前 詢問

Slouch 於 1 年前 解答

  • 已解決
  • 封存

Wifi Repeater suddenly refused access after one month

Firstly, I have a brain injury. I am easily overwhelmed by information and am slow to understand - especially anything to do with I.T. Recently, I began successfully ac… (閱讀更多)

Firstly, I have a brain injury. I am easily overwhelmed by information and am slow to understand - especially anything to do with I.T.

Recently, I began successfully accessing the internet / Firefox via my Wifi Repeater. As of two or three days ago. I keep being asked to "log in to access the Internet", but even after I do it (successfully, as far as my repeater is concerned) I'm no further forward; I keep being asked to log in.

Thanks to my repeater I have a strong signal when in my garden office. But after a month, Firefox has suddenly stopped allowing me to use it. I am back at Square 1, before I purchased the thing.

I need need to work from my office. Please help resume my Repeater's access.

Kind regards,

Sean

seanhindle4 於 2 年前 詢問

seanhindle4 於 2 年前 解答

MEDIA_ERR_SRC_NOT_SUPPORTED

Hi Mozzies When I try to play news videos from my local radio station I get this error. The videos originate from our local TV channel which uses Brightcove hosting. S… (閱讀更多)

Hi Mozzies When I try to play news videos from my local radio station I get this error. The videos originate from our local TV channel which uses Brightcove hosting. Safari and Google Chrome can play the videos. If I go to the source on the TV channel, I can play the video. Hardware MacBook Pro OSX 10.14.6. FireFox version 115.30.0esr (64-bit)

phazir50 於 2 個月前 詢問

phazir50 最近回覆於 2 個月前

  • 已解決

Hung update on my WIn 7 machine

Hello, I am still running an old WIn 7 media center because I have applications I need that are no longer supported elsewhere. Firefox ESR has been working just fine up u… (閱讀更多)

Hello, I am still running an old WIn 7 media center because I have applications I need that are no longer supported elsewhere. Firefox ESR has been working just fine up until the most recent update - which repeatedly fails to install each time I start Firefox. Is there a location where this update resides? If so may I know this location and procedure to eliminate this errant update? Thanks!

Sigpaw 於 1 週前 詢問

Agent virtuel 於 1 週前 解答

open new tab button

Here we go again. Apparently with this latest version 115.28 I no longer have an open new tab button on my tab line. How do I fix this and tell modifiers to stop changing… (閱讀更多)

Here we go again. Apparently with this latest version 115.28 I no longer have an open new tab button on my tab line. How do I fix this and tell modifiers to stop changing things that were working fine.

helpful55 於 4 個月前 詢問

helpful55 最近回覆於 4 個月前

  • 封存

command line firefox "Open all in tabs"

I start Firefox from a batch file (Win7) on the first boot of the day. Manually I choose my "NEWS" bookmarks folder, then slide down to "Open all in tabs". (attached imag… (閱讀更多)

I start Firefox from a batch file (Win7) on the first boot of the day. Manually I choose my "NEWS" bookmarks folder, then slide down to "Open all in tabs". (attached image) (Then I go pour a coffee while the news article tabs open and load data!)

Please and thank you, is there a way to specify this action from the command line? And if so, what is it?

I believe that I could use such a mechanism in other ways, such as opening all tabs in my "Forums" folder of bookmarks, or on Mondays, opening all tabs in my "Weekly" bookmarks folder.

Thank You, Chris

Christopher Greaves 於 1 年前 詢問

cor-el 最近回覆於 1 年前

  • 封存

Start up

How can I check what is being loaded on my computer with my browser Firefox when I start up Firefox. It takes too long for my homepage to load compared to other browsers.… (閱讀更多)

How can I check what is being loaded on my computer with my browser Firefox when I start up Firefox. It takes too long for my homepage to load compared to other browsers. Can someone help so I can determine what is being loaded when I start up my browser Firefox? Thank you.

sciencemagic 於 1 年前 詢問

sciencemagic 最近回覆於 1 年前

ESR for Firefox issue

a web site continues to say mozilla browser need update to correctly access web page. I have downloaded latest update ESR for Firebox (using windows 7 OS) But web site st… (閱讀更多)

a web site continues to say mozilla browser need update to correctly access web page. I have downloaded latest update ESR for Firebox (using windows 7 OS) But web site still says I need update! Is it me or the web site that has the problem?

John T Schaffer 於 1 週前 詢問

James 最近回覆於 1 週前

  • 封存

YOU JUST DISABLED ALL MY ADD-ONS - WHY???

I require some add-ons for accessibility, which you abruptly disabled today due to "could not be verified". Also, all my other add-ons were disabled for the same reason … (閱讀更多)

I require some add-ons for accessibility, which you abruptly disabled today due to "could not be verified". Also, all my other add-ons were disabled for the same reason - see attached. I read "https://support.mozilla.org/en-US/kb/add-ons-cause-issues-are-on-blocklist", which doesn't answer my questions. If you can't explain specifically why you did this, or tell me how to override your blocks, I'll uninstall Firefox from all my platforms!

Will 於 10 個月前 詢問

James 最近回覆於 10 個月前

Difference ESR 115 and 141 with position: fixed

Hi, I have an old PC with Win7 and Firefox 115.30.0esr (64-bit) (latest version from 11 november 25) and this website cultuursmakers.be has problems aka differences with… (閱讀更多)

Hi, I have an old PC with Win7 and Firefox 115.30.0esr (64-bit) (latest version from 11 november 25) and this website cultuursmakers.be has problems aka differences with Firefox 141.0.3 (of my Android tablet) and other browsers such as Chrome. The green heading block overlaps and hide the upper part of the content block. For example, if you select inloggen (log in), then you see that the user name (naam) is not visible and only the box for the password is shown. Work around: Right click on the header and select Inspect. In the Inspector (html column) select the header tag. In the Inspector (css column) uncheck in the '.header.--fixed' selector the line 'position: fixed;' Now the content block shifts down and all content is visible. Can you verify / fix that? Greetings and TIA, Gerard

gerard32 於 2 個月前 詢問

TyDraniu 最近回覆於 2 個月前

  • 封存

TLS Errors When Launching Webinars

In recent attempts to join a few webinars I am now getting more and more "TLS Errors." I have noticed that many of the solutions to this problem involve actions that do n… (閱讀更多)

In recent attempts to join a few webinars I am now getting more and more "TLS Errors." I have noticed that many of the solutions to this problem involve actions that do not solve the problem but create larger issues. Do you have a solution that works safely? I am forced to use Windows 7 unfortunately due to work systems and a long story. I think this is my primary problem but I have to keep using it until the bitter end with this PC.

I appreciate your kind help. Thanks, Clay

claytudor 於 1 年前 詢問

cor-el 最近回覆於 1 年前

  • 封存

Pop-up Window Blocked Notification Message CSS styling

I noticed that after the recent updates, the pop-up notification for blocked pop-ups has changed from yellow to white.. This makes it very difficult to see and I almost m… (閱讀更多)

I noticed that after the recent updates, the pop-up notification for blocked pop-ups has changed from yellow to white.. This makes it very difficult to see and I almost missed it. Is there a way to revert this change using userChrome.css?

I don't understand why this unnecessary change was made. I already have my own userChrome style for the entire Firefox because it was frustrating to constantly change it back after each update.

I would appreciate any information on how to revert this change.

Thanks.

pirios 於 1 年前 詢問

cor-el 最近回覆於 1 年前