Ceisteanna leis an gclib seo á dtaispeáint: Taispeáin gach ceist

Random empty files appearing in c:\

Starting a couple of weeks ago, I began noticing that occasionally (every 2-3 days usually), a few empty files appear in my c:\ folder (Windows 10, as up-to-date as Windo… (tuilleadh eolais)

Starting a couple of weeks ago, I began noticing that occasionally (every 2-3 days usually), a few empty files appear in my c:\ folder (Windows 10, as up-to-date as Windows ever is). They have names like "wal3A7109C6" (no file extension). Usually 4-5 will be generated at the same time (ie, same timestamp, so within the same second).

When I first noticed them, I (nervously) deleted a batch with no apparent consequences - but I had to activate Administrator privileges to get rid of them. I ran virus scans but have seen nothing unusual.

A few minutes ago, I had Firefox open but minimized to the task bar. I also happened to have c:\ open in a Window I could see. As I tapped to expand the browser, another of the files appeared, and the browser window behaved oddly for a moment, as though about to crash. The last few versions - I'm at 125.0.3 (64 bit) - have been crashing more than I'm accustomed to, but this is the first time I'd considered the browser to be a likely suspect.

Does anyone have any clues/possibilities to offer? It would be much appreciated.

Asked by bantarleton 32 nóiméad ó shin

Double Mozilla on PC, same version, won't uninstall

So for some reason I have two versions of Firefox on my computer (Windows 64 bit), I am logged in and using one of them, and the other is just there. I could log in there… (tuilleadh eolais)

So for some reason I have two versions of Firefox on my computer (Windows 64 bit), I am logged in and using one of them, and the other is just there. I could log in there but I don't want to, I just want to get rid of it. Links from Telegram open in it, creating a second Firefox window instead of opening in another tab in the already open Firefox window, which is very inconvenient. The windows list of programs which can be uninstalled only has one Firefox (I've tried deleting and reinstalling, it doesn't help). But when I try to choose a default browser I get 2 icons to choose from which look the same (see screenshot). What the heck? How do I manage this!

Asked by faina.daniel 54 nóiméad ó shin

WE Transfer icon in ribbon bar at top of Firefox on Mac shows up as blue exclamation point in circle?

Just transferred from old MacBook Pro to new one. Successful migration except: The icon for the WE Transfer service doesn't show up in the narrow black ribbon at the t… (tuilleadh eolais)

Just transferred from old MacBook Pro to new one. Successful migration except: The icon for the WE Transfer service doesn't show up in the narrow black ribbon at the top of the Firefox page - instead there's a blue exclamation point in a blue circle. Clicking the blue circle/exclamation point takes me to the WE Transfer page. What do I need to do to get the actual icon to replace the blue circle/exclamation point? Thanks in advance.

Asked by stevel2 1 uair ó shin

YouTube on Firefox

I have been using Firefox on my Mac for years with no problems. Recently, however, I have been having trouble running YouTube. I get to the correct page for the video I… (tuilleadh eolais)

I have been using Firefox on my Mac for years with no problems. Recently, however, I have been having trouble running YouTube. I get to the correct page for the video I want but the video itself does not show up, just the background for the page. Any idea what I might have done to create this problem?

Asked by Neach 2 uair ó shin

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… (tuilleadh eolais)

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

Asked by Slouch 18 uair ó shin

Last reply by Slouch 3 huaire ó shin

Firefox Facetime Unable to stop Screen Sharing

I have a 2019 Macbook Pro 16" and whenever I share a FireFox window on facetime, I'm unable to stop sharing it until I end the Facetime call. Even then, the sharing scre… (tuilleadh eolais)

I have a 2019 Macbook Pro 16" and whenever I share a FireFox window on facetime, I'm unable to stop sharing it until I end the Facetime call. Even then, the sharing screen notification still appears in the top right in the menu bar and I'm unable to share my screen for future Facetime calls unless I restart my laptop (thus removing the problem). Is this a known issue, and is there a way to fix it other than restarting my laptop?

Video of issue Video of issue

Asked by clayeddy00 5 huaire ó shin

make translate to translate ONLY SELECTED sites

hi the translate fucion in firefox is vry usefull, but i want to NOT TRANSLATE ANYTHING EXCEPT sites i select only i.e. surfing around german site.. .leave it german, bu… (tuilleadh eolais)

hi the translate fucion in firefox is vry usefull, but i want to NOT TRANSLATE ANYTHING EXCEPT sites i select only

i.e. surfing around german site.. .leave it german, but i if i am interest in "german.de/talkshow" select it and translate only this

i see option to translate EVERYTHING and use some exception, but its the opposite of what looking for

thanx christos

Asked by ploufus 7 n-uaire ó shin

Last reply by ploufus 5 huaire ó shin

Can no longer login to webmail on firefox, but I can login using MS Edge.

I can no longer login to my webmail account using firefox, but I CAN login using MS Edge. I obtained a new ISP and set up a new email account. I was able to access the we… (tuilleadh eolais)

I can no longer login to my webmail account using firefox, but I CAN login using MS Edge. I obtained a new ISP and set up a new email account. I was able to access the webmail account for about a month with Firefox. Then a few days a age, it just stopped: When entering valid credentials, the login page just refreshes (without errors) and doesn't continue to the webmail inbox any longer. So I thought I'd try a different browser and I used MS Edge. The valid credentials get me into the webmail inbox using Edge, but no longer works in Firefox. Any ideas what happened?

Asked by rg.powers 1 lá ó shin

Last reply by rg.powers 6 huaire ó shin

Firefox can’t establish a connection to the server at wss://gateway.discord.gg/?encoding=json&v=9&compress=zlib-stream.

I've been trying to connect to discord for a while, left it on for 2 hours and hasnt loaded. when i opened the console log, all it said was "Firefox can’t establish a con… (tuilleadh eolais)

I've been trying to connect to discord for a while, left it on for 2 hours and hasnt loaded. when i opened the console log, all it said was "Firefox can’t establish a connection to the server at wss://gateway.discord.gg/?encoding=json&v=9&compress=zlib-stream" all over. Please help.

Asked by uyhgjigy 2 lá ó shin

Last reply by uyhgjigy 8 n-uaire ó shin

Uninstall firefox

Every time I sign onto Firefox I get the attached message. I think that uninstalling Firefox and reinstalling "may" resolve the problem, but Firefox won't uninstall. I … (tuilleadh eolais)

Every time I sign onto Firefox I get the attached message. I think that uninstalling Firefox and reinstalling "may" resolve the problem, but Firefox won't uninstall. I have tried four different ways and it won't uninstall. Can you help me an uninstall process?

Asked by bogus1 8 n-uaire ó shin

Firefox UI freezes when clicking the addressbar.

I am using Firefox 125 in Windows 11. And this just happens recently. Sometimes, quite frequently, when I click the addressbar wanting to input or select a new address. … (tuilleadh eolais)

I am using Firefox 125 in Windows 11. And this just happens recently.

Sometimes, quite frequently, when I click the addressbar wanting to input or select a new address. The Firefox UI freezes (before the dropdown list of addresses is shown). The video/audio/other effects are still working, and from task manager, it does not cost more CPU/mem than usual. But it does not response to key press or mouse action. All I can do (that I know of) is killing the processes. The problem does not seem related to "current" webpage I am browsing. And I have not installed new addons for a few months.

Any idea what should I look into?

Asked by Magicloud 3 lá ó shin

Last reply by Magicloud 11 uair ó shin

Passkey QR Code

Hi, i am currently at a loss. I have set up Passkeys for my google accounts. Now i have completely reinstalled my current pc and now there is no QR code showing when tr… (tuilleadh eolais)

Hi,

i am currently at a loss.

I have set up Passkeys for my google accounts. Now i have completely reinstalled my current pc and now there is no QR code showing when trying to log in.

I have another laptop where it will start completely normal. I can switch between a hardwarekey and another system (to show qr code)

Can you help me with this? I cant seem to understand why it is working on my laptop but not on my desktop. I just cant switch to log on with another device, now it is not even giving me the option to log on with a hardware key.

I would appreciate help.

Greetings

Asked by Jan-Lukas Schröder 13 uair ó shin

Cannot add Search Engines to Firefox

I am trying to add custom search engines to Firefox. I have tried the steps given in the forum thread https://support.mozilla.org/en-US/questions/1212596. However when … (tuilleadh eolais)

I am trying to add custom search engines to Firefox. I have tried the steps given in the forum thread https://support.mozilla.org/en-US/questions/1212596.

However when I try to go and add the search engine as per the article given above I do not get the option. Please see the attached screen shot for more details. I do not want to add an extension or a plugin, but just manually have the option of adding search engines.

Asked by ixian 17 uair ó shin

Last reply by ixian 16 uair ó shin

New tabe opens to blank page not my home page

New tab opens to blank page and not my home page, which is Google. I have been to setting and went to the drop down box for tab settings but it only gives me an option to… (tuilleadh eolais)

New tab opens to blank page and not my home page, which is Google. I have been to setting and went to the drop down box for tab settings but it only gives me an option to make firefox my home page or a blank page. I want Google to be what appears in my new tab when I click on the little + isgn.

Asked by Matt C 19 uair ó shin

Credit card autofill stopped working.

Recently firefox stopped filling in my credit card information. 1. On a website asking for a credit card click on the credit card number box. 2. Choose the car from the… (tuilleadh eolais)

Recently firefox stopped filling in my credit card information. 1. On a website asking for a credit card click on the credit card number box. 2. Choose the car from the popup. 3. Popup disappears but nothing is filled in on the website form. 4. Use Google Pay or PayPal to purchase.

This used to work.

Firefox version 125.0b9 (64-bit) Ubuntu 22.04 Firefox installed from the Mozilla PPA - ppa:mozillateam/firefox-next

Asked by michael.sez 21 uair ó shin

Staying in Icloud.com mail

To check my icloud email, I log into icloud.com, enter my password, got through a two step authorization process and ask to stay signed in. I successfully access my emai… (tuilleadh eolais)

To check my icloud email, I log into icloud.com, enter my password, got through a two step authorization process and ask to stay signed in. I successfully access my email messages. When opening a message that has a hyperlink, I lose the iclolud connection. The link opens in a new browser window, but when i return to the email I am frequently signed out. Apple support does not know what the issue is; they suggested a different browser. This does not seem to happen with Microsoft Edge - and I don't want to use it.

Thanks for your help David Bartold; dwb0224@icloud.com

Asked by dwb-nena 1 lá ó shin

Got an ugly, suspicious popup window today...

Ok-So this popup window popped up when I returned to Firefox. I don't think it's legit and I am wondering how I go about blocking it permanently. I searched the settings … (tuilleadh eolais)

Ok-So this popup window popped up when I returned to Firefox. I don't think it's legit and I am wondering how I go about blocking it permanently. I searched the settings but didn't see where I could post the URL so that is why I am posting this here.

I copied the URL but I don't want to post it here in case it could do something to someone else's system. But here is the screenshot. Please advise me what I need to do. Thank you! TGIF!

I am on a Mac running Sonoma.

Asked by judytucci 1 lá ó shin

Last reply by judytucci 1 lá ó shin