Εμφάνιση ερωτήσεων με ετικέτες: Εμφάνιση όλων των ερωτήσεων
  • Αρχειοθετήθηκε

change primary email address on profile

Instructions on changing primary email address not helpful-prompted to access Accounts but profile displayed would not let me edit my primary email address. When attempte… (διαβάστε περισσότερα)

Instructions on changing primary email address not helpful-prompted to access Accounts but profile displayed would not let me edit my primary email address. When attempted to add secondary address was notified that code was sent to my old email address was was compromised & deleted by security of my carrier Want to add new email address & add secondary email account. Assistance greatly appreciated

Ερώτηση από JAYeskewicz 2 έτη πριν

Τελευταία απάντηση από FredMcD 2 έτη πριν

  • Αρχειοθετήθηκε

Hi there from South Africa. I need the Verification Email sent to me please

Evening from Johannesburg. Please can someone advise as to when i will receive the verification email? I have tried numerous times and i am yet to get one email to action… (διαβάστε περισσότερα)

Evening from Johannesburg. Please can someone advise as to when i will receive the verification email? I have tried numerous times and i am yet to get one email to action this. First attempt was 05th May. Another, today. I am still waiting and have checked all folders in the said email to use by yourselves.

Ερώτηση από Barret Swart 2 έτη πριν

Τελευταία απάντηση από cor-el 2 έτη πριν

  • Αρχειοθετήθηκε

I cannot manage to get FireFox screen to show the 4/5 options in the upper LH corner, to help me get FireFox as my search engine>>>.

I have been successfully using FireFox for many years, recently we downsized into a Condo,now 81 years young. I have FireFox as my default browser choice, but it only lis… (διαβάστε περισσότερα)

I have been successfully using FireFox for many years, recently we downsized into a Condo,now 81 years young. I have FireFox as my default browser choice, but it only lists Google on the search bar, when I type in my search in the box under the Firefox name it immediately jumps up to the top of the page Google browser.

How do I get back my screen to use FireFox as my search engine ?? I have tried to change it but will only give me two options Google or Google ?? Is it possible to go back to the screen and try and start again??

Many thanks to anyone who will give me info as to how to rectify my problem, be gentle with me as I am efficient in using the computer but less so trying to solve my problems. Robin

Ερώτηση από Robin S 2 έτη πριν

Τελευταία απάντηση από FredMcD 2 έτη πριν

  • Αρχειοθετήθηκε

Problem with a GIS website

Until the most recent update of Firefox, I was able to access atrribute data of a GIS map feature on the GIS Open Data, State of Michigan website: https://gis-michigan.o… (διαβάστε περισσότερα)

Until the most recent update of Firefox, I was able to access atrribute data of a GIS map feature on the GIS Open Data, State of Michigan website:

https://gis-michigan.opendata.arcgis.com/datasets/2020-voting-precincts/explore?location=44.909859%2C-86.310800%2C6.97

Now, I can not click on any feature. I can do this, however, using Chrome. What is the issue, here?

Ερώτηση από FireFoxFan1 2 έτη πριν

Τελευταία απάντηση από FireFoxFan1 2 έτη πριν

  • Αρχειοθετήθηκε

Why my code work fine on chrome but not firefox?

Here is my code: <html> <head> <meta charset="utf-8"> <style> .fullCard, .lowerHalfCard, .upperHalfCard, .fullCard-after, .l… (διαβάστε περισσότερα)

Here is my code:

<html>
 <head>
  <meta charset="utf-8">
  <style>
   .fullCard,
   .lowerHalfCard,
   .upperHalfCard,
   .fullCard-after,
   .lowerHalfCard-after,
   .upperHalfCard-after {
     background-color: inherit;
     border-radius: 10px;
     height: 100%;
     width: 100%;
     position: absolute;
     
     align-items: center;
     display: flex;
     justify-content: center;
     vertical-align:middle;
   }
  
   .fullCard-after::after,
   .upperHalfCard-after::after{
     content: "";
     display: block;
     position: absolute;
     height: 4px;
     background-color: inherit;
     width: 100%;
     top: calc(50% - 2px);
   }
   .lowerHalfCard-after::after{
     content: "";
     display: block;
     position: absolute;
     height: 4px;
     background-color: inherit;
     width: 100%;
     top: calc(50% - 2px);
   }
   .lowerHalfCard,
   .lowerHalfCard-after{
    clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0% 100%);
   }
   .upperHalfCard,
   .upperHalfCard-after{
     clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 0% 50%);
   }

   .splitFlap {
     background-color:black;
     box-sizing: border-box;
     border-radius: 10px;    
     width: 100px;
     height: 150px;
     position: relative;    
   }

   .rotate0to90 {
     animation-name: r0to90;
   }

   .rotate90to0 {
     animation-name: r90to0;
   }

   .rotate0to_90 {
     animation-name: r0to_90;
   }

   .rotate_90to0 {
     animation-name: r_90to0;
   }

   .rotate0to90,
   .rotate90to0,
   .rotate0to_90,
   .rotate_90to0 {
     animation-duration: 0.3s;
     animation-fill-mode: forwards;
   }

   @keyframes r0to90 {
     from {
    transform:rotateX(0deg);
     }

     to {
    transform: rotateX(90deg);
     }
   }

   @keyframes r90to0 {
     from {
    transform: rotateX(90deg);
     }

     to {
    transform: rotateX(0deg);
     }
   }

   @keyframes r0to_90 {
     from {
    transform: rotateX(0deg);
     }

     to {
    transform: rotateX(-90deg);
     }
   }

   @keyframes r_90to0 {
     from {
    transform: rotateX(-90deg);
     }

     to {
    transform: rotateX(0deg);
     }
   }

   .transform0to_90 {
     transform: rotateX(-90deg);
   }

   .transform0to90 {
     transform: rotateX(90deg);
   }
   .hide{
    display:none
   }
   .zIndex2 {
     z-index: 2;
   }

   .zIndex4 {
     z-index: 4;
   }

   .zIndex10 {
     z-index: 10;
   }
   .blue{
      background-color: blue
   }
   .green{
      background-color: green
   }
   .red{
      background-color: red
   }
   .orange{
     background-color: orange
   }
  </style>
  <script>
   let baseDiv,lowerDiv,middleDiv,upperDiv;
   document.addEventListener("DOMContentLoaded",()=>{
    baseDiv=document.getElementById("base");
    lowerDiv=document.getElementById("lower");
    middleDiv=document.getElementById("middle");
    upperDiv=document.getElementById("upper");
   });
   let backward=()=>{
       middleDiv.innerHTML=baseDiv.innerHTML;
    lowerDiv.classList.add("rotate0to90");
    middleDiv.className="upperHalfCard-after transform0to_90 zIndex4";
   }
   let forward=()=>{
    middleDiv.innerHTML=baseDiv.innerHTML;
    upperDiv.classList.add("rotate0to_90");
    middleDiv.className="lowerHalfCard-after transform0to90 zIndex4";
   }
   
   let upperHandler=()=>{
    middleDiv.classList.add("rotate90to0");
    upperDiv.classList.replace("zIndex4","zIndex2");    
   }
   let lowerHandler=()=>{
    lowerDiv.classList.replace("zIndex4","zIndex2");
    middleDiv.classList.add("rotate_90to0");    
   }
   let middleHandler=()=>{
    upperDiv.innerHTML=baseDiv.innerHTML;
    lowerDiv.innerHTML=baseDiv.innerHTML;
    middleDiv.className="hide";
    upperDiv.className="upperHalfCard-after zIndex4";
    lowerDiv.className="lowerHalfCard-after zIndex2";
   }
  </script>
 </head>
 <body>
  <div class="splitFlap">
   <div 
    id="base" 
    class="fullCard-after zIndex2">
    <img src="img/1_100.png">
   </div>
   <div 
    class="upperHalfCard-after zIndex4"
    id="upper"
    onAnimationEnd="upperHandler()">
    <img src="img/0_100.png">
   </div>
   <div 
    id="middle"
    class="hide"
    onAnimationEnd="middleHandler()">
   </div>
   <div
    class="lowerHalfCard-after zIndex2" 
    id="lower"
    onAnimationEnd="lowerHandler()">
    <img src="img/0_100.png">
   </div>
  </div>
  <p>
   <button onClick="forward()">
     +
   </button>
   <button onClick="backward()">
    -
   </button>
   <button onClick="setHinge()">Set Hinge</button>
  </p>
 </body>
</html> 

I am creating a split-flap. It works fine in Chrome, but in firefox, during the second rotation period, it is not smooth as in chrome. How can I fix it?

Ερώτηση από knvbhk 2 έτη πριν

Τελευταία απάντηση από cor-el 2 έτη πριν

  • Αρχειοθετήθηκε

Ctrl+R

I'm uploading changed webpages to the internet on a daily basis, using Firefox. I'm Using Firefox version 100.0 now and I have discoverd a problem with version 100.0 . Fr… (διαβάστε περισσότερα)

I'm uploading changed webpages to the internet on a daily basis, using Firefox. I'm Using Firefox version 100.0 now and I have discoverd a problem with version 100.0 . From Firefox version 99.01 and downwards, this problem never existed before. The refresh button in Firefox 100.0 ( Ctrl+R ) no longer works good anymore! Sometimes it works good, the other time it's not working correct anymore, you will not see the latest uploaded webpage on the internet. The only solution to this problem is bij closing Firefox and restarting it. Only then you will see the latest uploaded webpage on the internet. Please have a serious look at this annoying problem in version 100.0. This problem can only be discoverd by people who are uploading new webpages to the internet, not bij the regular internet-users/visitors.

Ερώτηση από webmaster101 2 έτη πριν

Τελευταία απάντηση από cor-el 2 έτη πριν

  • Αρχειοθετήθηκε

Firefox suddenly breaking a banking site

Hi: I've used Firefox for years without trouble and I've even given money! However, I think the last update has prevented my banking site from operating correctly. In Bil… (διαβάστε περισσότερα)

Hi: I've used Firefox for years without trouble and I've even given money! However, I think the last update has prevented my banking site from operating correctly. In Bill payment you choose who you want to pay and fill in the amount. This still works. I move to the month, day, year boxes. If I click, say, on the month box I get a dropdown but selecting the month nothing happens. Ditto with day and year. The day box shows 1 and the year shows 202 and nothing changes when using the drop downs. Can't manually fill in the boxes. At first I thought it was my bank but they said there were no reported problems - they would! So tried Brave and Edge. Both worked perfectly. Tried it on my laptop rather than desktop and same problem using Firefox showed up. I hadn't fiddled with any Firefox settings. What to do? Thanks Donald

Ερώτηση από donald.wyllie 2 έτη πριν

Τελευταία απάντηση από donald.wyllie 2 έτη πριν

  • Αρχειοθετήθηκε

Firefox site call is redirected to scam site

Following site is immediately hijacked to a scam site asking for login apparently to access private info. It happens with Firefox (only) whenever security setups are set … (διαβάστε περισσότερα)

Following site is immediately hijacked to a scam site asking for login apparently to access private info. It happens with Firefox (only) whenever security setups are set "not to track", "not to prompt for passwords", "not to prompt for credit cards" "no history" "reset of cookies at logout" etc.. then the site below: http://thaimassage-herborn.de/ is redirected to SCAM SITE: https://xb7.serverdomain.org/admin/index.php appearing as "Adminpanel" asking for Login etc..

At the same time following site is partially blocked on the news banner pictures, with a white sheet over them, whenever down scroll is hit. https://www.tgrthaber.com.tr/

Only by resetting firefox deals with the issues. But ofcourse with the reason, above security settings removed.

Virusscanner was not able to detect this hijacking or the reason behind.

Is this a firefox software issue? Is there a way to resolve this? Thank you already for any support or suggestions to resolve.

Ερώτηση από taskin.sakarya 2 έτη πριν

Τελευταία απάντηση από taskin.sakarya 2 έτη πριν

  • Επιλύθηκε
  • Αρχειοθετήθηκε

Suspicious domain mozilla-api[.]com

Can someone confirm if mozilla-api[.]com is an official Mozilla domain? It was registered 7 months ago with Namecheap registrar. I am unable to find any overlap with of… (διαβάστε περισσότερα)

Can someone confirm if mozilla-api[.]com is an official Mozilla domain? It was registered 7 months ago with Namecheap registrar. I am unable to find any overlap with official Mozilla infrastructure and I suspect this is a malicious domain.

Ερώτηση από Work Lappy 2 έτη πριν

Απάντηση από Work Lappy 2 έτη πριν

  • Επιλύθηκε
  • Αρχειοθετήθηκε

Completely broken profiles

Hello team, I'm not sure what happened, but I was not able to open Firefox after restarting my PC. I currently run Windows 11 on a fully upgraded rig. Up until today, I… (διαβάστε περισσότερα)

Hello team,

I'm not sure what happened, but I was not able to open Firefox after restarting my PC. I currently run Windows 11 on a fully upgraded rig.

Up until today, I have been trouble free. Error 1: "Firefox is already running, but is not responding. The old Firefox process must be closed to open a new window."

I tried several options - and have been googling/trying several steps for a couple of hours (after each step, I restarted the PC):

1. Uninstalled and then Reinstalled a fresh copy of Mozilla 2. Attempted to use Command Lines to open Firefox https://wiki.mozilla.org/Firefox/CommandLineOptions 3. Opened Profile Manager and attempted to create a new profile - when I did this the new profile would not display in the Profile Manager, but it would display in the Profiles folder under Appdata [I tried this multiple times] 4. Deleted the profiles.ini file

After deleting the .ini file Error 2: "Your Firefox profile cannot be loaded. It may be missing or inaccessible." 1. Uninstalled and then Reinstalled a fresh copy of Mozilla 2. Opened Profile Manager and attempted to create a new profile. After following the Profile Wizard, another error pops up: "An unexpected error has prevented your changes from being saved."

I am completely stumped. I hope you can help, Sean

Ερώτηση από sean.oneill.29 2 έτη πριν

Απάντηση από cor-el 2 έτη πριν

  • Επιλύθηκε
  • Αρχειοθετήθηκε

I can't delete my Firefox account

A while ago I made a Firefox account with my Yahoo email address as the primary email, and my Outlook email address as the secondary email. Eventually I realized that I d… (διαβάστε περισσότερα)

A while ago I made a Firefox account with my Yahoo email address as the primary email, and my Outlook email address as the secondary email. Eventually I realized that I didn't need my Yahoo email account anymore, so I deleted it, forgetting that it was being used as the primary email for my Firefox account. Now I can't remove my Outlook email from my Firefox account without verifying my Yahoo email account, and I can't even delete the Firefox account since it was made under the Yahoo email account as a primary email address.

Now I can't use my Outlook email address to create a new Firefox account either.

Ερώτηση από vivek95148 2 έτη πριν

Απάντηση από vivek95148 2 έτη πριν

  • Επιλύθηκε
  • Αρχειοθετήθηκε

Account Access

Can someone please assist with a support email or chat function, this support page is overcomplicated and ends in a loop.

Thanks

Ερώτηση από mjcstudios 2 έτη πριν

Απάντηση από mjcstudios 2 έτη πριν

  • Αρχειοθετήθηκε

Firefox 111.0 freezes on start up

I just updated to FF 111.0. After restarting FF comes up but then nothing. After a bit of I got the option to force close it. I tried opening a Private Browser and that w… (διαβάστε περισσότερα)

I just updated to FF 111.0. After restarting FF comes up but then nothing. After a bit of I got the option to force close it. I tried opening a Private Browser and that worked fine so I figured it was one of my add-ons. However after closing the Private Browser and trying opening normally again it worked just fine. Disable all of my add-ons and for the same issue.

Renamed my AppData/Roaming/Mozilla folder and starting as normal worked fine. What a giant pain in the <bleep> trying to set everything back up.

Performed some more science and noticed this. After setting my Mozilla folder back, starting FF, and looking at the TaskManager, There would be 3 processes, one of those after a bit of time would show in red as Not Responding (or words to that effect). Clicking the window a few times to get the force close dialog again. Trying to open FF again, it opened just fine.

So I'm tempted to blame something in the update that is causing this. Yes, I could just start with a fresh Mozilla folder and reinstall all of my add-ons and blah blah blah, but whose to say that after setting everything back up the way I had it the problem won't come back.

I have thought about rolling back to FF 110.0.1, and suppressing the update check.

OS: Windows 10 64-bit Firefox: 111.0 64-bit

Ερώτηση από wolf68k 1 έτος πριν

Τελευταία απάντηση από wolf68k 1 έτος πριν

  • Αρχειοθετήθηκε

High CPU usage while typing in URL (address) bar

Hello. Typing anything in URL (address) bar causes my CPU spike to 15-20% shown in Windows Task Manager, and up to 80% shown in Firefox Task Manager. I have 8 core / 16 … (διαβάστε περισσότερα)

Hello.

Typing anything in URL (address) bar causes my CPU spike to 15-20% shown in Windows Task Manager, and up to 80% shown in Firefox Task Manager. I have 8 core / 16 threads CPU running at 4.0 GHz, so typing text in browser taking 15-20% of that is rather bizarre to me. OS: Windows 10 What I tried: - disabling Firefox Accessibility Service - hardware acceleration on/off - troubleshooting mode

Don't have same issue in other browsers (Chrome, Opera) Any ideas what else that might be?

Ερώτηση από FF_Gnome 1 έτος πριν

Τελευταία απάντηση από FF_Gnome 1 έτος πριν

  • Αρχειοθετήθηκε

Cannot install add-ons error: "Add-on could not be installed because Firefox could not modify the needed file"

I've run into a troublesome error with Firefox for probably eight months now, so I have not been using the browser. Whenever I attempt to install ANY add-on from the Fire… (διαβάστε περισσότερα)

I've run into a troublesome error with Firefox for probably eight months now, so I have not been using the browser. Whenever I attempt to install ANY add-on from the Firefox add-ons page, I get the message "[Add-on name] could not be installed because Firefox could not modify the needed file". Furthermore, attempting to download the add-on file manually (should it be available on a github page or the like) leads to the same message or a notification that the download failed.

As a matter of fact, downloading almost any kind of file on Firefox inevitably fails. The exact notification is shown in the upper-right corner of the browser window, where downloads are shown, and beneath the file in question is an indicator that says "Failed". Everything from .png to .zip to .exe appears in the downloads queue for a second, then fails.

I have tried every solution the Firefox add-on troubleshooting page has suggested, including solutions suggested in other threads, such as deleting/creating new profiles. I have also attempted to completely reinstall Firefox on multiple occasions, as well as the refresh Firefox option.

To recount, the following troubleshoot solutions did not work:

--Everything on the Firefox add-on troubleshooting page --Restart Firefox --Refresh Firefox --Create new Firefox profile and attempt to install add-ons from there --Delete and renew the extensions* files from the profile root folder --Modifying the xpinstall.signatures.required in about:config (true or false, doesn't matter) --Modifying the extensions.alwaysUnpack in about:config (again, true or false, doesn't matter) --Double-checking allow list and permissions on local firewall and antivirus software (the app is protected, add-ons are allowed) --Disabling antivirus software --Running Firefox as Administrator --Reinstall Firefox --Restarting PC

If I want to download a file or add an extension, I need to switch to a different browser such as a chromium-based one or Microsoft Edge to download the file. In the case of add-ons, I switch browsers, download the file, and select the "install add-on from file" option under "manage extensions" in about:addons.

One final thing. It seems that sometimes streaming sites won't work on Firefox (even with ad-blocker disabled or the site allowed through the ad-blocker), and sometimes video won't properly load either. These things work fine on other browsers.

I really like Firefox as a browser and enjoy the privacy it provides built-in. I didn't have any of these issues up until last year and I was forced to switch over. I would really appreciate any help with this.

Ερώτηση από BecauseLogic 1 έτος πριν

Τελευταία απάντηση από BecauseLogic 1 έτος πριν

  • Επιλύθηκε
  • Αρχειοθετήθηκε

Blocking of Dragon Professional Web Extension

Today, my daughter received a notification that the Dragon Professional Web Extension has been disabled (see attached image). This was done because the extension supposed… (διαβάστε περισσότερα)

Today, my daughter received a notification that the Dragon Professional Web Extension has been disabled (see attached image). This was done because the extension supposedly executes remote code and collects user data.

My daughter, a mathematics professor, has very limited use of her hands. She is dependent upon Dragon to do her job. This is not something she just likes - she has a disability and she NEEDS it. Disabling this extension will make her job significantly more difficult, and there are capabilities that the extension provides that she may not be able to duplicate with workarounds.

PLEASE, make the extension useable again. This is an accessibility issue for disabled people - it's not just a fun addition to the browser. If necessary, add some sort of acknowledgement checkbox so that she can acknowledge that she is taking some risks in using it.

One other thing. Disabling this extension with no advance warning was a disservice to all disabled people who depend on it. Had this occurred in the middle of a semester, the effect could have been catastrophic. As it is, she may need to spend the rest of the summer trying to figure out how to do her job without it. You have really, really done an extreme disservice here.

Ερώτηση από jkrm 1 έτος πριν

Απάντηση από TyDraniu 1 έτος πριν

  • Αρχειοθετήθηκε

Firefox Hangs Upon Launch, Cannot Connect to any Websites (Mac Sonoma)

On Mac OS 14.4 Firefox hangs on launch and crashes, requiring "Force Quit" when I try to Refresh or Troubleshoot. Uninstalled and reinstalled multiple times, and restarte… (διαβάστε περισσότερα)

On Mac OS 14.4 Firefox hangs on launch and crashes, requiring "Force Quit" when I try to Refresh or Troubleshoot. Uninstalled and reinstalled multiple times, and restarted computer several times. Have spent several hours trying multiple community suggestions to now avail.

I am not a programmer, but am able to follow instructions. I clearly need someone to hold my hand and walk me through the solution. (I even checked out the Kaspersky suggestion, but cannot install it because Firefox cannot connect to the Internet.)

I have downloaded and saved "Raw Data.docx" and "Application Basics tex.docx" from one of the crash reports.

P.S. On this question form Firefox guessed that my operation system was Mac OS x 10_15_7, but it is 14.4

Julian

Ερώτηση από julian.donahue 9 μήνες πριν

Τελευταία απάντηση από julian.donahue 7 μήνες πριν

  • Αρχειοθετήθηκε

newest firefox update causes all tabs to crash all the time now

is there any way i can roll back the most recent firefox update? i updated firefox on june 12th and ever since than, i can not use firefox or open any tabs due to it cont… (διαβάστε περισσότερα)

is there any way i can roll back the most recent firefox update? i updated firefox on june 12th and ever since than, i can not use firefox or open any tabs due to it continuously crashing over and over with no recovery. it is so bad that i had to go to microsoft edge just to report this problem, because i can not get firefox to open anything beyong my homepage without crashing the tabs. please email me at gnralee01@yahoo.com this is infuriating and i have to now use microsoft edge for my browsing because i can not use firefox until you fix this. i have uninstalled and reinstalled firefox 3 seperate times and i still get the same results. firefox worked great prior to the june 12th update.

Ερώτηση από gnralee011 7 μήνες πριν

Τελευταία απάντηση από cor-el 7 μήνες πριν