Fragen mit folgendem Schlagwort anzeigen: Alle Fragen anzeigen
  • Archiviert

Cannot login to Apple ID

Hi, I'm trying to access my Apple ID (appleid.apple.com). When I select "Sign In" the page hangs and never displays the fields to enter my user name and password. The me… (Lesen Sie mehr)

Hi,

I'm trying to access my Apple ID (appleid.apple.com). When I select "Sign In" the page hangs and never displays the fields to enter my user name and password. The message I get is "This action could not be completed because of an error. Try again or check back later."

Under Settings > General > Network Settings I selected No proxy and I disabled DNS over HTTPS. But neither of these actions made a difference.

Eventually, I had to use Microsoft Edge to access my account.

Any ideas?

Thanks!

Gefragt von dicemandcdc vor 1 Jahr

Letzte Antwort von FredMcD vor 1 Jahr

  • Archiviert

Large video files from Microsoft OneDrive repeatedly fail to download; working in other browsers

Every week, for work, I need to download at least one large video file from Microsoft OneDrive and then upload it to YouTube. (These are MP4s in the range of 200 - 800 MB… (Lesen Sie mehr)

Every week, for work, I need to download at least one large video file from Microsoft OneDrive and then upload it to YouTube. (These are MP4s in the range of 200 - 800 MB.) For the last couple of months, maybe longer, the download keeps failing in Firefox. When I switch to Chrome, the same MP4 downloads with no problem.

Any idea what might be going on? Usually the file starts downloading just fine; I see the bar gradually filling up in the notification area, but then it suddenly stops and says "Failed." If I retry, the same thing just happens again.

I'm not using any kind of download manager (that I'm aware of), just relying on Firefox's default download behavior when I click on the "Download" link on the OneDrive web page (sample URL: https://olucdenver-my.sharepoint.com/personal/YADA_YADA/_layouts/15/onedrive.aspx?id=LONG_QUERY_STRING_HERE).

Thanks in advance for any help you can provide!

Dan

Gefragt von Dan Robinson vor 2 Jahren

Letzte Antwort von FredMcD vor 1 Jahr

  • Archiviert

Places.sqlite gets. corrupted every time Firefox is closed

Hello, Every time I restart Firefox or it crashes or power cuts or anything, place.sqlite file gets corrupted and I have to replace the new file with the .corrupt file. T… (Lesen Sie mehr)

Hello, Every time I restart Firefox or it crashes or power cuts or anything, place.sqlite file gets corrupted and I have to replace the new file with the .corrupt file. This has been happening for over a year now, but my computer is always on and I turn it off maybe once every 4-5 months unless I'm forced to restart by a software or by power cuts or stuff. Lately I have been having issues with my Windows and I have to restart my computer quite often and it is very annoying. This happens whether I close Firefox with the X or using the Exit button or even if I keep it open and restart the computer. My places file is 75MBs. I have the same one since 2014. I'm using Windows 10 and latest Firefox edition. Any ideas?

Gefragt von exclusive01 vor 1 Jahr

Letzte Antwort von FredMcD vor 1 Jahr

  • Archiviert

profile folder

How to delete key3.db in https://kb.mozillazine.org/Profile_folder_-_Firefox#Files ?? I don't know how to delete files pls answer...I want to delete master password.… (Lesen Sie mehr)

How to delete key3.db in https://kb.mozillazine.org/Profile_folder_-_Firefox#Files ?? I don't know how to delete files pls answer...I want to delete master password...

Gefragt von akamandro12345 vor 1 Jahr

Letzte Antwort von FredMcD vor 1 Jahr

  • Archiviert

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

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.

Gefragt von Barret Swart vor 1 Jahr

Letzte Antwort von cor-el vor 1 Jahr

  • Archiviert

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

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?

Gefragt von knvbhk vor 1 Jahr

Letzte Antwort von cor-el vor 1 Jahr

  • Archiviert

Installing FireFox update . . .

You actually have an egregious error in your install procedure/program. 1) you fail to tell folks/warn them close down i) FF when installing the update and/or ii) save an… (Lesen Sie mehr)

You actually have an egregious error in your install procedure/program. 1) you fail to tell folks/warn them close down i) FF when installing the update and/or ii) save and delete all open sites in the FF being upgraded. 2) there is a failure to TELL us reboot FF after the install.

Doing research and writing all day long as I do, I actually hold a number of reference sites open in FF as I work.

My friend who happens to understand all this computer stuff tells me that the open sites on my FF is what impeded the successful install . . . .

The other grumble I have with you-all is that it has taken me too much time to try and find a way to respond to you with the information needed to solve this problem for the FF community . . . .

I am a paying/donator to FF . . . and I must tell you I am beyond disappointed by all this dropped ball on sensible communications practice!

Roger

Gefragt von rboswarva vor 1 Jahr

Letzte Antwort von AliceWyman vor 1 Jahr

  • Archiviert

firefox is not normal wants me to download the browser i have an acct for long time had a virus last night but windows defender caught it and removed it my colors are all gone too along with file view etc on top line

im afraid to download anything. i should not have to download firefox browser, i have been using this acct for years. i tried to update ccleaner last nite and windows def… (Lesen Sie mehr)

im afraid to download anything. i should not have to download firefox browser, i have been using this acct for years. i tried to update ccleaner last nite and windows defender caught a trojan but removed it right away all other places i have been were fine today what happened to my firefox and duckduck go etc

Gefragt von memok vor 2 Jahren

Letzte Antwort von FredMcD vor 2 Jahren

  • Archiviert

Zoom meeting links not opening

This morning I re-installed an update to Zoom (on Linux - ElementaryOS / Ubuntu 18.04). Since installing, I've not been able to follow links from Firefox to Zoom (zoommt… (Lesen Sie mehr)

This morning I re-installed an update to Zoom (on Linux - ElementaryOS / Ubuntu 18.04). Since installing, I've not been able to follow links from Firefox to Zoom (zoommtg links don't open the app). However, they still work from Epiphany.

The slight confounding factor is that I realised that I've been updated to FF 104 overnight, so that might be an issue.

I've been looking at network.protocol-handler.... settings in about:config, based on this article: https://superuser.com/questions/1343020/how-to-configure-firefox-open-zoom-urls-using-zoom-application#1351073

I've also been looking at xdg-settings (based on this article) https://www.reddit.com/r/kde/comments/i83m8i/zoom_desktop_client_isnt_launching_from_browser/ which suggests the problems might be to do with xdg-settings calling /usr/share/applications/zoom.desktop when the available file is /usr/share/applications/Zoom.desktop However, I have not been able to alter the xdg-settings parameter - when I try: $ xdg-settings set default-url-scheme-handler zoommtg zoom.desktop it does not change the setting - it remains as Zoom.desktop

I should mention that the version of FF I'm running is delivered as a snap - but this was not a problem before 104 / my latest Zoom installation. Also, this version of FF has no problem opening up MS Teams meetings or Slack groups. handlers.json includes : ... "slack":{"action":4},"snap":{"action":4},"zoommtg":{"action":4},"msteams":{"action":4}}, .... so I am thinking the problem must lie somewhee else.

Any suggestions would be gratefully received.

thanks Andy

Gefragt von Andy Dearden vor 1 Jahr

Letzte Antwort von jscher2000 - Support Volunteer vor 1 Jahr

  • Archiviert

Why is firefox automatically downloading strange files I've never seen before?

Why is firefox automatically downloading strange files I've never seen before? (MEUIVFJ-.htm and 3tHMwYhc) They look a little untrustworthy. My download dropdown sudde… (Lesen Sie mehr)

Why is firefox automatically downloading strange files I've never seen before? (MEUIVFJ-.htm and 3tHMwYhc) They look a little untrustworthy. My download dropdown suddenly showed me that one had been downloaded, and then a while later the other one was downloaded. Are these actual Mozilla files? Or are they some kind of scam/trojan/spyware? I just realized that two were downloaded last month as well.

Gefragt von dodgewinton vor 1 Jahr

Letzte Antwort von TechHorse vor 1 Jahr

  • Archiviert

Firefox on Windows 10 crashes every time it is closed (last 6 months or so).

In making this post I am following instructions found at https://support.mozilla.org/en-US/kb/troubleshoot-firefox-crashes-closing-or-quitting, which include the statemen… (Lesen Sie mehr)

In making this post I am following instructions found at https://support.mozilla.org/en-US/kb/troubleshoot-firefox-crashes-closing-or-quitting, which include the statement "Fill out the Details section of the next page..." which seems to refer to THIS page, but I see no Details section here, so I'll just put the details where they seem to apply.

Firefox Version 102, installed today, shows the same symptom I've been seeing for several weeks, perhaps months: whenever Firefox is closed, a crash report popup appears on the screen (after a minute or two). I've been submitting these on a regular basis and hoped that Version 102 would contain a fix, but the issue continues.

So today I've created some minimum-to-reproduce examples, in each case using the same setup, but closing Firefox in a different manner:

Setup: Firefox for Windows V 102 installed today. Windows 10 is up to date. I open Firefox in troubleshooting mode, which displays my home page, located on a shared server that I use for a website and other stuff I want to be able to access from anywhere. Nothing exotic, just a list of links. That works.

Then, without doing anything else (for purposes of these tests), I close Firefox via one of the following (with associated report ID):

  • Click on large X in the upper right corner of the window.
   bp-e31ef7d6-8d17-41c8-a204-0e53c0220630e
  • In the window menu, select File > Exit.
  bp-d15f97c8-267f-4550-9d42-69eb70220630
  • On the task bar, RMB on Firefox, then select 'Close window'.
 bp-39756c12-ccb7-4f83-998a-ec8030220630

My system is an HP laptop with AMD Vision A6 processor. My wife uses a Dell all-in-one on the same wired network and does not experience the crash-on-close symptom. This makes me suspect my hardware, but just tested with other browsers:

Chrome - Blocked my home page (never saw that before, but I use Firefox...) until I removed the block from Settings. Closed without crashing. Edge - Updated itself, then gave me the same "Not secure" warning as Chrome, but displayed the home page anyway. Closed without crashing.

In all cases, the link to my home page is specified as http://, not https:// My wife's system is set up the same way.

My question: How can I get Firefox to close gracefully, without spitting out a crash report 1-2 minutes later? Note that I can OPEN Firefox and use it for hours without incident, but if I close it and do something else, when I close THAT, there's the Firefox crash report window underneath.

I just ran the w3.org validator on my home page and I see that a few errors have crept in,. mostly unencoded ampersands. I'll fix those, but if that caused a problem for Firefox, would it wait until much later to crash? And why only on my system, not my wife's?

Suggestions?

Gefragt von Chris Beall vor 1 Jahr

Letzte Antwort von jscher2000 - Support Volunteer vor 1 Jahr

  • Archiviert

EMAIL VERFICIATION CODE ISN'T SENT

EMAIL VERFICIATION CODE ISN'T SENT\ tried a few attemtps I formatted my laptop, and now i downoladed mozilla, logging in... and waiting for verficiation code for mozilla… (Lesen Sie mehr)

EMAIL VERFICIATION CODE ISN'T SENT\ tried a few attemtps

I formatted my laptop, and now i downoladed mozilla, logging in... and waiting for verficiation code for mozilla sync account for years, please help

Gefragt von Lidor Yosef vor 1 Jahr

Letzte Antwort von FredMcD vor 1 Jahr

  • Archiviert

found a bug with firefox 101.0b5 website https://www.express.co.uk/ it does not display the comments for an article. Works with Microsoft Edge

found a bug with firefox 101.0b5 website https://www.express.co.uk/ it does not display the comments for an article. Works with Microsoft Edge … (Lesen Sie mehr)

found a bug with firefox 101.0b5 website https://www.express.co.uk/ it does not display the comments for an article. Works with Microsoft Edge

Gefragt von Ga Mountain Hiker vor 1 Jahr

Letzte Antwort von cor-el vor 1 Jahr

  • Archiviert

Deeplinks don't work properly in Firefox

Hi - I have an affiliate marketing business which uses deeplinks to take my visitors to specific product pages on third party websites. These work fine in Google Chrome … (Lesen Sie mehr)

Hi - I have an affiliate marketing business which uses deeplinks to take my visitors to specific product pages on third party websites. These work fine in Google Chrome but on Firefox the deeplink goes to the website homepage only. Does anyone know what I can do about this? thanks Gina

Gefragt von ginarosemartin vor 1 Jahr

Letzte Antwort von FredMcD vor 1 Jahr

  • Archiviert

Sound and videos are stuttering when clicking other stuff.

The title already says it all. Whenever i have some sound or video running in any tab, clicking on certain things like other videos or animated stuff in the same tab or a… (Lesen Sie mehr)

The title already says it all. Whenever i have some sound or video running in any tab, clicking on certain things like other videos or animated stuff in the same tab or another one causes a small interruption in the sound/video. Clicking a lot of times results in sound and video stuttering. I does not appear when i just click another link.

I already tried updating firefox, reinstall firefox, even downgrading firefox. This problem only appears in firefox and only on this device. I would be very thankfull for some advices, because this is really annoying.

Gefragt von doering71 vor 1 Jahr

Letzte Antwort von FredMcD vor 1 Jahr

  • Archiviert

error 523

In trying to reach at least one Web site (maybe more), https://jabberwocking.com/, I get an error page, Error 523: Origin is unreachable. It also has some tech stuff I do… (Lesen Sie mehr)

In trying to reach at least one Web site (maybe more), https://jabberwocking.com/, I get an error page, Error 523: Origin is unreachable. It also has some tech stuff I don't understand. What can I do?

Gefragt von jhaber3 vor 1 Jahr

Letzte Antwort von cor-el vor 1 Jahr