Fragen mit folgendem Schlagwort anzeigen: Alle Fragen anzeigen
  • Gelöst
  • Archiviert

Need help to locate backed up Firefox profile to restore after Windows and Firefox re-install

Prior to getting some desktop PC upgrades that required a new install of Windows 11 and a new install of Firefox, I backed up my entire PC (yea!). Now that I have re-ins… (Lesen Sie mehr)

Prior to getting some desktop PC upgrades that required a new install of Windows 11 and a new install of Firefox, I backed up my entire PC (yea!).

Now that I have re-installed Firefox, I see that I have none of my saved bookmarks and so I want to restore the Firefox profile - all of it or at least the bookmarks.

I have tried following the Firefox instructions for this, but am apparently not doing it right.

I can't seem to locate the bookmarks file, for starters, in my backed up files. I find the profile but I don't find anything like places.sqlite.

Can someone help me so that I am locating the right (and complete) files, copying them correctly, and then switching to the new/old profile correctly?

Thanks in advance.

Gefragt von eastevens1956 vor 2 Jahren

Beantwortet von jscher2000 - Support Volunteer vor 2 Jahren

  • Gelöst
  • Gesperrt
  • Archiviert

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, … (Lesen Sie mehr)

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)

Gefragt von SuMo Bot vor 2 Jahren

Beantwortet von SuMo Bot vor 2 Jahren

  • Gelöst
  • Archiviert

program help

Hopefully you can help. I know this may be a Microsoft issue or question but I'm having trouble in finding a reasonable way to contact them for help. My question is, my … (Lesen Sie mehr)

Hopefully you can help. I know this may be a Microsoft issue or question but I'm having trouble in finding a reasonable way to contact them for help. My question is, my computer runs slow, and so I thought I would clean up my files by using the Microsoft disk clean up procedure. I did so. But, my specific question is what is a good number to have when the it says a given number of disk space can be cleaned up? For example, I believe when I first tried to clean the disk it said 5.1 GB of disk space could be cleaned. When I ran the disk clean process and it completed it then said 66 KB of disk space could be cleaned. So how much disk space did I gain or get cleaned up? And, if I can only clean up 66 KB of disk space is that indicative of not really needing to clean the disk any farther? Hopefully some one can help. While this may be a Microsoft issue, I believe the Firefox contributors have enough computer knowledge to help answer my question. At least that is my hope. Thank you.

Gefragt von sciencemagic vor 2 Jahren

Beantwortet von Paul vor 2 Jahren

  • Gelöst
  • Archiviert

Firefox browser

Hi when saving bookmarks with the key Control+ Shift + D this saves all bookmarks but doesn't save pinned bookmarks, what keys save all bookmarks including the pins? Tha… (Lesen Sie mehr)

Hi when saving bookmarks with the key Control+ Shift + D this saves all bookmarks but doesn't save pinned bookmarks, what keys save all bookmarks including the pins? Thanks

Gefragt von Mangekyo Sharringan vor 1 Jahr

Beantwortet von TechHorse vor 1 Jahr

  • Gelöst
  • Archiviert

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… (Lesen Sie mehr)

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;
}

Gefragt von Slouch vor 1 Jahr

Beantwortet von Slouch vor 1 Jahr

  • Gelöst
  • Archiviert

how can I remove adblocker

I installed one of the ad blockers, I can't remember which one. It's given me so much trouble that I thought to disable or delete it. I deleted the little icon ( a stop… (Lesen Sie mehr)

I installed one of the ad blockers, I can't remember which one. It's given me so much trouble that I thought to disable or delete it. I deleted the little icon ( a stop sign) that shows up on the far right of one of the menu bars (don't know the name of that bar but here it's the second one down). But websites still complain that I have an ad blocker. I've gone to 'add-ons and themes' but I can't find it. BTW, what's the difference between an add-on, a plug-in and an extension? Which one of those are ad blockers? How can I see and then delete whichever blocker I still have? Without the icon I can't even disable it for individual sites.

Gefragt von rayandrews vor 1 Jahr

Beantwortet von rayandrews vor 1 Jahr

  • Gelöst
  • Archiviert

bug returning from hibernation: open firefox is ignored

In case anyone's interested, under Debian 12, when I resume from hibernation, if I have Firefox running as well as Tbird, if I click on a link in an email, the existing i… (Lesen Sie mehr)

In case anyone's interested, under Debian 12, when I resume from hibernation, if I have Firefox running as well as Tbird, if I click on a link in an email, the existing instance of Firefox is ignored and a new instance is opened. The first instance is in fact frozen -- it looks as it should but trying to change tabs or open a new tab is inactive. Seems I have to kill the open instance of FF, then if I click on a link in an email, FF pops up as it should with a new tab for the link, but the existing tabs are all there and all functional. It feels like a bug -- Tbird seems not to know that FF is already running.

Gefragt von rayandrews vor 1 Jahr

Beantwortet von zeroknight vor 1 Jahr

  • Gelöst
  • Archiviert

"this page is slowing down firefox"

How can I turn this message off? Some sites I visit give me that message, it shows up when I'm typing a reply to something which pushes the page lower and fouls up my ab… (Lesen Sie mehr)

How can I turn this message off? Some sites I visit give me that message, it shows up when I'm typing a reply to something which pushes the page lower and fouls up my ability to keep typing, then if goes away, comes back, goes away ... I just want to kill the message entirely. I'm not worried about speed, there's nothing to fix, I just want the message gone.

Gefragt von rayandrews vor 1 Jahr

Beantwortet von cor-el vor 1 Jahr

  • Gelöst
  • Archiviert

Firefox themes

Saved themes in Firefox color not visible in add-ons manager. Does not fix itself in safe mode. One of the saved themes is a default preset I liked, the other is a preset… (Lesen Sie mehr)

Saved themes in Firefox color not visible in add-ons manager. Does not fix itself in safe mode. One of the saved themes is a default preset I liked, the other is a preset I made myself, using all options except advanced colors.

Gefragt von Lord_Voidwrath vor 1 Jahr

Beantwortet von Lord_Voidwrath vor 1 Jahr

  • Gelöst
  • Gesperrt
  • Archiviert

The Back Button doesn't work on Youtube.

I noticed that someone else had this question, but instead of answering it, it just got archived. When browsing Youtube, the browser Back Button doesn't work. For examp… (Lesen Sie mehr)

I noticed that someone else had this question, but instead of answering it, it just got archived.

When browsing Youtube, the browser Back Button doesn't work. For example, if I start on the Youtube main page, then click on a video, it will show the video. But then, when I click the browser's "Back" navigation buttion, it does not take me back to the main page. The URL in the address bar will be the main page, but it will continue to display the video I just watched instead.

This only seems to happen on Youtube. It's been a problem for a while - possibly as much as 2 years or even more. And it doesn't happen every single time. However, it has been happening a lot more frequently lately.

It's almost as if Firefox just doesn't want to refresh.

I've tried clearing the cache. The problem persists. I've dried disabling all add-ons. It still happens. I've tried running it in troubleshooting mode. Still a problem.

I've tried to duplicate this in Microsoft Edge; it doesn't seem to happen there.

Gefragt von r.thomas.wright vor 2 Jahren

Beantwortet von r.thomas.wright vor 2 Jahren

  • Gelöst
  • Archiviert

a site does not display properly

A friend has passed away and I cannot access her obituary page. I could for a couple of days but I can't any more. Is this a problem with the FF latest upgrade? The pag… (Lesen Sie mehr)

A friend has passed away and I cannot access her obituary page. I could for a couple of days but I can't any more. Is this a problem with the FF latest upgrade? The page is [link removed by moderator]

I do not want her obituary page made public on a forum in case it causes inappropriate comments.

I have just discovered the page works ok on Chrome so I will use that for now, but I am reporting the problem to try and help you. I am using latest version of Firefox.

I have added a screen snip of the part-loaded page.

I just followed the button below about extra troubleshooting information and lost all the information I had typed into this box, which irritates me as well.

Have a look please and let me know, thanks.

Oldjon

Gefragt von Oldjon vor 1 Jahr

Beantwortet von cor-el vor 1 Jahr

  • Gelöst
  • Gesperrt
  • Archiviert

Firefox searching instead of dns resolving internal websites

I have multiple internal websites, which all follow the pattern of [site.one.two] which resolves fine using the internal DNS server i have configured by going to https://… (Lesen Sie mehr)

I have multiple internal websites, which all follow the pattern of [site.one.two] which resolves fine using the internal DNS server i have configured by going to https://site.one.two and through other programs via site.one.two, and all the [one.two] suffixes are blacklisted from being resolved with DoH in firefox, but it still forces a web-search, even with searching from address bar being turned off, instead of resolving through my local DNS server (local server resolves local domain suffixes, anything else gets resolved through cloudflare DNS). I haven't found a fix in any other forums, and there are enough unique internal addresses that manually adding each and [every site.one.two] as an exception would be something i would like to avoid. Is there any way to tell firefox to resolve through DNS first for addresses or domain suffixes?

Gefragt von sydmackintosh vor 2 Jahren

Beantwortet von jscher2000 - Support Volunteer vor 2 Jahren

  • Gelöst
  • Archiviert

checkboxes missing from webform

Hello! I have a Mailchimp signup form here: https://utexas.us4.list-manage.com/subscribe?u=91ef16fd009c97ce473909aa7&id=1d94de45cb The form should display with check… (Lesen Sie mehr)

Hello! I have a Mailchimp signup form here: https://utexas.us4.list-manage.com/subscribe?u=91ef16fd009c97ce473909aa7&id=1d94de45cb

The form should display with checkboxes that allow multi-select. It used to work that way in Firefox, but currently it only highlights the selection and doesn't allow more than one option to be selected. It works correctly in Chrome and Edge, however. Is there a way to get this working again? Thanks in advance for any advice!

Gefragt von christa16 vor 1 Jahr

Beantwortet von cor-el vor 1 Jahr