Primaey email hacked

Please someone help me with this. My primary email has been breeched and because I was honest with the service --instead of just saying I need help resetting my password.… (read more)

Please someone help me with this. My primary email has been breeched and because I was honest with the service --instead of just saying I need help resetting my password. Thay are asking me to send them a copy of my drivers' license and a photo "selfie" of myself to recover my account.

This is where I draw the line -- all invasions of privacy we have learned to live with but not this -- I could give them the transaction ID from my last Payment from Paypal period -- but that was not good enough. If I was being deceitfull I could easily provide the crdentials they ask for and it could all be fake; so I told them to get lost as I was paying for the Premium service anyway. I can contintue to use that as my ID but sonner or later someone is going to want to send me a code there and I can't retrieve it. Tonight they did not ask so I was able to get in here.

Everybody has a place to change your password but few have a place to change your sign-in ID. If I can get back into Firefox with a new ID and set 2 step validation I shouls be okay as faras the average user gors. The other option that I know of is to stary a new Firefox account. I alread have a lot of people and business's that I have to get my new email to.

Thanks To Anyone with any ideas.

Sincerely Paul

Asked by Paul Ellis 34 minutes ago

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 … (read more)

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 1 hour ago

Last reply by ixian 57 minutes ago

Firefox extremely slow to load pages or connect to Web sites after startup - Follow-Up

I see my original question is now archived at https://support.mozilla.org/en-US/questions/1380948#question-reply I never closed it because I didn't know if my last proc… (read more)

I see my original question is now archived at https://support.mozilla.org/en-US/questions/1380948#question-reply I never closed it because I didn't know if my last process could really fix the issue. It didn't, not always. Over the years, there have been times when the issue would still pop up, but not as often as before (2022 and earlier).

I have a feeling that during an issue, FF is having difficulty setting up shop after starting up. Consequently, it is spending more time before it could become prepared to connect to the Net. I've come up with another "solution," which is deleting (or moving out) xulstore.json in the profile folder after exiting or before starting FF. You can create a batch command or script to execute the process.

So far, FF is connecting immediately after startup.

Asked by mobilesuit 2 weeks ago

Last reply by mobilesuit 1 hour ago

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… (read more)

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 2 hours ago

I am unable to sync my Meta Quest 2 FireFox bookmarks and data with my PC Firefox browser

I am unable to sync my Meta Quest 2 FireFox bookmarks and data with my PC Firefox browser I press "sync" on VR but nothing happens. I am signed in under the same account … (read more)

I am unable to sync my Meta Quest 2 FireFox bookmarks and data with my PC Firefox browser I press "sync" on VR but nothing happens. I am signed in under the same account for both devices

Asked by XX77 3 hours ago

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… (read more)

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 3 hours ago

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… (read more)

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 5 hours ago

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… (read more)

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 11 hours ago

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 … (read more)

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 13 hours ago

Last reply by judytucci 12 hours ago

Weird fonts Wing Dings??

I keep hitting sites where menus and selection boxes turn into unreadable Wing Dings? On W11 and cleared and rest the font cache in Windows and still repeatedly seeing th… (read more)

I keep hitting sites where menus and selection boxes turn into unreadable Wing Dings? On W11 and cleared and rest the font cache in Windows and still repeatedly seeing the issue?

Asked by Doug Sooley 1 day ago

Last reply by Doug Sooley 13 hours ago

WebGL creation failed after reinstalling lbgl1* libegl*

I am using the apt version of firefox v125.0.2 (64-bit). I do not have a dedicated GPU - I use my intel core's internal gpu only Intel Corporation HD Graphics 620 (rev 02… (read more)

I am using the apt version of firefox v125.0.2 (64-bit). I do not have a dedicated GPU - I use my intel core's internal gpu only Intel Corporation HD Graphics 620 (rev 02).

I used to play this game named narrow.one, which before I reinstalled the mentioned libraries, was working fine except for crashing a few times. I thought these libraries were causing some issue, so I tried reinstalling them.

I reinstalled the libraries using: `sudo apt install --reinstall --fix-missing libgl1* libegl*`

After installation, I start getting that error. So, I tried reinstalling firefox (using the same command), and then restarting the laptop - but of no use. Chrome seems to be running WebGL, including the game.

In firefox, on the https://get.webgl.org/ page, I see Hmm. While your browser seems to support WebGL, it is disabled or unavailable. If possible, please ensure that you are running the latest drivers for your video card.

After that, I also tried reinstalling `libopengl0` and `libglu1-mesa` and `intel-microcode`, but of no use. Running although, `sudo intel_gpu_top` and then chrome, it seems that the GPU is in use by chrome as well.

I then go to about:support. It shows me the images I have attached. Reading the logs, there several `blocklisted` values in `Decision Log` section. I suspect that's the cause of this issue, but then I don't know how can I un-blocklist the blocklisted things, and even after that, why does Chrome runs webgl if these are blocklisted?

Running `glxinfo -B`, I get the following: `name of display: :0 display: :0 screen: 0 direct rendering: Yes Extended renderer info (GLX_MESA_query_renderer):

   Vendor: Intel (0x8086)
   Device: Mesa Intel(R) HD Graphics 620 (KBL GT2) (0x5916)
   Version: 23.2.1
   Accelerated: yes
   Video memory: 7697MB
   Unified memory: yes
   Preferred profile: core (0x1)
   Max core profile version: 4.6
   Max compat profile version: 4.6
   Max GLES1 profile version: 1.1
   Max GLES[23] profile version: 3.2

OpenGL vendor string: Intel OpenGL renderer string: Mesa Intel(R) HD Graphics 620 (KBL GT2) OpenGL core profile version string: 4.6 (Core Profile) Mesa 23.2.1-1ubuntu3.1 OpenGL core profile shading language version string: 4.60 OpenGL core profile context flags: (none) OpenGL core profile profile mask: core profile

OpenGL version string: 4.6 (Compatibility Profile) Mesa 23.2.1-1ubuntu3.1 OpenGL shading language version string: 4.60 OpenGL context flags: (none) OpenGL profile mask: compatibility profile

OpenGL ES profile version string: OpenGL ES 3.2 Mesa 23.2.1-1ubuntu3.1 OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.20`

I do not know much about OpenGL, but reading the above stuff, I suppose my GPU is in use and also has a compatible driver (although I am not sure).

Also, running `glxdemo`, `glxheads`, and `glxgears` seems to be rendering stuff.

Should I reinstall firefox after purging it first? Please help.

Thanks!

Asked by Lakshay Rohila 1 week ago

Last reply by Lakshay Rohila 13 hours ago

youtube.com is too slow

OS version : Windows 10 Pro 21H2 Browser version : Firefox Developer Edition 126.0 Beta 8 (20240501022718) Platform : windows, Web EVERYTHING especia… (read more)


OS version : Windows 10 Pro 21H2 Browser version : Firefox Developer Edition 126.0 Beta 8 (20240501022718) Platform : windows, Web


EVERYTHING especially

 * The time to receive the first HTTP response when connecting
 * the time to call up the various css elements that make up the screen
 * the time to call up the img elements on the screen
is too slow.

tooooooooo slow. I waited 36.6s until http response for every new URL open! Of course, I am using a lot of Firefox extensions, but there were no serious problems outside of YouTube, and the same problem occurred after removing the extension, and i also confirmed that the problem caused by web extensions on waterfall(on firefox profiler) was minor.

I can't even guess the cause of the problem, so unfortunately there seems to be no additional information that I can give you. I'll keep following up as long as I can. I will attach some pictures that might help you solve the problem. and you can also approach to my full-recorded firefox profiler data

Asked by potatokth 14 hours ago

Memory Leak help

Need help figuring out why Firefox has a memory leak after an extended use of Firefox browsing. Don't know if its the result of an extension having this issue, or if its … (read more)

Need help figuring out why Firefox has a memory leak after an extended use of Firefox browsing. Don't know if its the result of an extension having this issue, or if its a Firefox bug. I have also provided my troubleshooting information, and a link to my memory usage is listed below for download: https://1drv.ms/u/s!ArspaZQCMwZ-iLU_CckOfLkl9DlETQ?e=MuIqsO Thanks in advance!

Asked by PrimisRulz 2 days ago

Last reply by PrimisRulz 14 hours ago

Boldfaced "S" does not print

When I view my bank statement in Firefox, everything appears fine, but when I print the statement, all occurrences of boldfce "S" on the printout are blank. This problem… (read more)

When I view my bank statement in Firefox, everything appears fine, but when I print the statement, all occurrences of boldfce "S" on the printout are blank. This problem does not occur with Google. Running macOS Catalina, all maintenance applied, Firefox is at 125.0.3.

Asked by TheOld Crab 2 days ago

Last reply by TheOld Crab 15 hours ago

websites won't load on Firefox

I have used Firefox for many, many years and have always loved it. Recently, it stopped loading some websites. I have read and tried everything I have read and still ca… (read more)

I have used Firefox for many, many years and have always loved it. Recently, it stopped loading some websites. I have read and tried everything I have read and still can't fix the problem. I have to switch to Edge to load the sites. I am tearing my hair out trying to get this fixed, but I will have to use other browsers if this doesn't get cleared up. Some sites load and most don't, but there is no rhyme nor reason to what it loads and what it doesn't. I do not have a great deal of tech know-how and cannot seem to fix this according to my research. I get no "error" messages except that the page can't load. Please help. I would hate to have to learn another browser.

Asked by Susan 15 hours ago

Google Images using Firefox

Please help. I have always been able to access Google Images when using my Firefox browser. Now I only get a limited few. For example if I am searching for images of Ceda… (read more)

Please help. I have always been able to access Google Images when using my Firefox browser. Now I only get a limited few. For example if I am searching for images of Cedar Waxwings (a bird) I only see a limited amount of images and the word "Store" keeps showing up. Please tell me how to restore my otherwise satisfying experience of access all IMAGES. Thanks.

Asked by Craig Altobello 15 hours ago

Firefox takes ~5 minutes to startup (even the Profile Manager and in every possible modes)

Firefox takes about 5 minutes to load every it launches, before working smoothly like it should. This problem occured first time yesterday morning, and I have no idea wha… (read more)

Firefox takes about 5 minutes to load every it launches, before working smoothly like it should. This problem occured first time yesterday morning, and I have no idea what could have caused it.

It happens :

  • when I launch firefox normally (whatever the profile)
  • when I launch it from the terminal (it provides no output at all)
  • when I tell it to launch the Profile Manager (5 minutes to see the Profile Manager appear, then 5 more minutes to launch firefox using the selected profile)

It does not happen :

  • when I click "New Window" inside an existing firefox process
  • when I call `firefox --help` from the terminal

Here's what I've tried :

  • First, I've seen pretty much every article from Mozilla Support, Reddit or SuperUser (writing this question is kind of my last resort)
  • I've tried removing and then reinstalling Firefox from Flatpak, from the Fedora repos (using `sudo dnf install firefox`) and using the manual install via the archive (v125)
  • I've tried downgrading firefox (when using the package manager install) from v125 to v124
  • I've also tried the Firefox Developer Edition, same problem here
  • I've tried using the "Refresh Firefox" feature and restarting in Troubleshoot Mode (both are also affected by the slow startup, which makes them particularly painful to execute)
  • I've tried manually deleting the `~/.mozilla/` folder (= manually deleting my profiles)

When firefox launches, it does not freezes my OS and does not seem to use many system ressources : CPU usage is normal, RAM as well, and it does not seem to read many things from the disk as well (I've seen some threads where this was the issue).

And here is something interesting that I discovered :

  • loading (including refreshing) `about:profiles` is also slow and this time freezes firefox (OS reports it as not responding, I can't switch tabs and I can't see my mouse). Other about pages seem to work fine (although I did not try them all)

Thanks !

PS : Even if I think it has nothing to do with the issue, I prefer to mention it here : I was messing with virtual machines yesterday when the issue occured for the first time. My disk got full at some point and I don't know but it might have messed with firefox. At this stage, I had not deleted any files that could relate somehow to Firefox, that's why I doubt it would have caused anything harmful to Firefox. (instead, I mounted an empty partition from my disk to get some space)

Asked by Martin Heywang 17 hours ago

Last reply by Martin Heywang 16 hours ago

Cant use Tineye- used to work great until yesterday

Thru Firefox, I use Tineye to find related photos - I use it all the time, it's been great - I always use a VPN and have never had problems until now (as of yesterday). N… (read more)

Thru Firefox, I use Tineye to find related photos - I use it all the time, it's been great - I always use a VPN and have never had problems until now (as of yesterday). Now it won't search, a verify you're human window comes up, and I have to keep clicking squares, which I do - but then it says to allow cookies and start over. Well I don't want to allow cookies (I assume it's one of the options I have thru Firefox to block cookies), and I can't find where to allow cookies even if I did (I went to Firefox preferences etc) and I don't want to disable my VPN. Maybe I should mention that I just added or started a Mozilla account, as I have had immense trouble with my aol emails, and am trying to move everything over to a gmail account. My sign in to Firefox was the aol email, and I had to (try, I thought I did it) add another account, which I think I did successfully. So it was right after that, that all this started. Help please! Thank you!

Asked by PocketDan 1 day ago

Last reply by PocketDan 18 hours ago

Homepage

I downloaded the new update this morning and I cannot separate my categories any longer on my home page. I keep them in categories on the 4 separate rows and then separa… (read more)

I downloaded the new update this morning and I cannot separate my categories any longer on my home page. I keep them in categories on the 4 separate rows and then separate them by skipping a square. I cannot do that any longer and do not like the jumble of the homepage now. How can I keep the blank spaces that are located at the bottom of the rows to separate my categories?

Asked by ch 4 days ago

Last reply by ch 20 hours ago