Hiển thị các câu hỏi được đánh dấu: Xem tất cả các câu hỏi
  • Đã lưu trữ

Can't login to Firefox account, don't have a two-step authentication app configured for the account, can’t find recovery codes and don’t have a logged-in device

I cannot access my primary Firefox account, don't have a two-step authentication app configured for the account, can't find recovery codes, and don't have a logged-in dev… (xem thêm)

I cannot access my primary Firefox account, don't have a two-step authentication app configured for the account, can't find recovery codes, and don't have a logged-in device. In addition, I subscribe to premium services linked to the affected Firefox account, so I'm now unable to access them as well. To ask this question, I created a new Firefox account.

What should I do now? It seems I'm stuck paying for services I can no longer access. I can't even cancel the premium services since I can't access the affected Firefox account. How can I contact Mozilla Corp?

Được hỏi bởi rtrimble41 2 năm trước

Lần cuối trả lời bởi rtrimble41 2 năm trước

  • Đã lưu trữ

Website opens at bottom page of site

On opening many websites I think they've created a new trick - dropping to the bottom of the page so you have to scoll through all pages to get to the top - is there a wa… (xem thêm)

On opening many websites I think they've created a new trick - dropping to the bottom of the page so you have to scoll through all pages to get to the top - is there a way of preventing this?

Được hỏi bởi shaverdave 2 năm trước

Lần cuối trả lời bởi FredMcD 2 năm trước

  • Đã lưu trữ

Browser out of date

When I try to log into chase.com, I'm told my (FireFox) browser is out of date, but I am running the latest version. What can I do? … (xem thêm)

When I try to log into chase.com, I'm told my (FireFox) browser is out of date, but I am running the latest version. What can I do?

Được hỏi bởi bdoub01 2 năm trước

Lần cuối trả lời bởi jscher2000 - Support Volunteer 2 năm trước

  • Đã lưu trữ

Can't find how to scan QR code when trying to add my Android phone to Firefox

I am trying to add my Android phone as a device to Firefox. I initially invoked the code scanner next to the search bar, but got a message saying that the code had to be … (xem thêm)

I am trying to add my Android phone as a device to Firefox. I initially invoked the code scanner next to the search bar, but got a message saying that the code had to be scanned from within the Firefox app. So I installed the app and followed these instructions entitled "Connect Another Device".

• If you haven't already, install Firefox on your mobile device. • Open Firefox on your mobile device. • Open the menu, tap Settings and select Turn on Sync. • Scan this code:

There is no Turn on Sync option in the Settings menu. I have looked in every menu item that appears even remotely related to syncing with a QR code or adding a device and come up empty.

I found this exact issue in two existing questions, but neither of them had ever been answered, which makes me less than confident that mine will. If there is a Turn on Sync option in Settings, and I just overlooked it, please explain step-by-step where I can find it. If there really is no Turn on Sync option, please provide an alternate method of adding my Android phone.

Thanks.

Được hỏi bởi Daryl 2 năm trước

Lần cuối trả lời bởi cor-el 2 năm trước

  • Đã giải quyết
  • Đã lưu trữ

Missing Content Security Policy enable/disable setting on about:config

Hello, I noticed that a setting on the about:config page was removed: the "security.csp.enable" setting. I was using this setting to disable CSP to be able to load local… (xem thêm)

Hello,

I noticed that a setting on the about:config page was removed: the "security.csp.enable" setting. I was using this setting to disable CSP to be able to load local JS scripts on some non-locally hosted sites, for debugging and development, work related purposes.

Was this setting really removed? Is there a way to disable CSP on Firefox on the latest version?

Thanks! Gabriel.

Được hỏi bởi gabrielmuttiteixeira 2 năm trước

Được trả lời bởi cor-el 2 năm trước

  • Đã lưu trữ

Chromecast

Any way to cast to chromecast with firefox? It's annoying that I have to use Chrome or Edge to cast youtube to my TV. Or use my phone. But it's charging atm. So very an… (xem thêm)

Any way to cast to chromecast with firefox?

It's annoying that I have to use Chrome or Edge to cast youtube to my TV.

Or use my phone. But it's charging atm. So very annoying my favorite browser can't do this simple thing. But all the other browsers can.

Được hỏi bởi Kai André Stensson 2 năm trước

Lần cuối trả lời bởi one.nine.four.four 2 năm trước

  • Đã lưu trữ

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… (xem thêm)

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?

Được hỏi bởi knvbhk 2 năm trước

Lần cuối trả lời bởi cor-el 2 năm trước

  • Đã lưu trữ

email switching makes me nervous

Hi, I've been a Firefox user for many years and don't have the slidest idea of what password I used to setup the account. I read in the Firefox documentation that I coul… (xem thêm)

Hi, I've been a Firefox user for many years and don't have the slidest idea of what password I used to setup the account. I read in the Firefox documentation that I could loose all my information if I change my email but that's exactly what I need to do. I currently use gmail and have switched to Outlook. Two questions, how do I change to Outlook without loosing bookmarks, etc. and can I import my gmail accounts into Outlook. Thank you in advance. PS, I created a Recovery Key

Được hỏi bởi Carlos 2 năm trước

Lần cuối trả lời bởi James 2 năm trước

  • Đã lưu trữ

Access Denied and 403 Responses

When navigating within retailer web sites, some clicks, such as searching for their nearest branch, consistently produce an Access Denied message, such as the following o… (xem thêm)

When navigating within retailer web sites, some clicks, such as searching for their nearest branch, consistently produce an Access Denied message, such as the following one:

Access Denied You don't have permission to access "http://www.argos.co.uk/stores/?" on this server.

Reference #18.d639dd58.1652362340.afeb7586

I get a similar response when trying to open some web sites, such as Sainsburys.co.uk which has just responded with the following 403 message:

403 ERROR The request could not be satisfied. Request blocked. We can't connect to the server for this app or website at this time. There might be too much traffic or a configuration error. Try again later, or contact the app or website owner. If you provide content to customers through CloudFront, you can find steps to troubleshoot and help prevent this error by reviewing the CloudFront documentation.

Generated by cloudfront (CloudFront) Request ID: 0n5le1zhQCuf0_pKJpVKjuKasKFKRNYhMr3zpIde_UuAx0dBE1hhlw==

Are such searches controlled via Firefox? If so, do I need to change a Firefox setting to overcome the problem?

Được hỏi bởi a.mcpherson832 2 năm trước

Lần cuối trả lời bởi a.mcpherson832 2 năm trước

  • Đã lưu trữ

Previous windows not opening at Startup

Hi there, "Open previous windows and tabs" is checked but it's not working. I had to go to history and opened it. It's happening for the last several weeks. Pls, let m… (xem thêm)

Hi there,

"Open previous windows and tabs" is checked but it's not working. I had to go to history and opened it. It's happening for the last several weeks.

Pls, let me know what to do. MD

Được hỏi bởi asiuzzaman 2 năm trước

Lần cuối trả lời bởi FredMcD 2 năm trước

  • Đã lưu trữ

Right side of screen not working while using Firefox

The right side of screen, scroll and keys (close, minimize, etc..) on menu bar not working, any fix? When I move the entire screen leftwards, then the scroll and keys wor… (xem thêm)

The right side of screen, scroll and keys (close, minimize, etc..) on menu bar not working, any fix? When I move the entire screen leftwards, then the scroll and keys work...

Được hỏi bởi AAAFUN 2 năm trước

Lần cuối trả lời bởi AAAFUN 2 năm trước

  • Đã lưu trữ

Block on certain websites

I can't access certain websites when I attempt to leave feedback. I'm told to remove blocking. I clicked on the shield and turned off Enhanced Tracking Protection on th… (xem thêm)

I can't access certain websites when I attempt to leave feedback. I'm told to remove blocking. I clicked on the shield and turned off Enhanced Tracking Protection on those sites. I also added the sites to the Exceptions list in Privacy & Security (Manage Exceptions). My Browser Privacy Settings are: Custom Choose which trackers and scripts to block. ✓Cookies: Cross-site Tracking Cookies ✓Tracking content: Only in Private Windows ✓Cryptominers ✓Fingerprinters

But I still can't access the sites.

Which settings do I need to change so I don't get blocked by the websites?

Được hỏi bởi Denise 2 năm trước

Lần cuối trả lời bởi Denise 2 năm trước

  • Đã giải quyết
  • Đã lưu trữ

Windows 11, Firefox v 100.0, Change Scrollbar Width

I went into about:config and changed the following values in order to widen the scrollbar: css. scrollbar-width was true changed to false… (xem thêm)

I went into about:config and changed the following values in order to widen the scrollbar:

css. scrollbar-width was true changed to false idget.non-native-theme.scrollbar.size.override was 0 changed to 100 widget.non-native-theme.enabled was true changed to false

Changing these values didn't widen my scrollbar. Without getting into coding, is there another way to make the scrollbar wider? (I changed them all back to the original settings when they didn't work.)

Được hỏi bởi Denise 2 năm trước

Được trả lời bởi cor-el 2 năm trước

  • Đã lưu trữ

cannot play video content from either tubitv.com or netflix.com

I get the message "Oops. Your browser is no longer support..." from tubitv.com and the error message "We are having troubling playing Netfix. Please make sure you are us… (xem thêm)

I get the message "Oops. Your browser is no longer support..." from tubitv.com and the error message "We are having troubling playing Netfix. Please make sure you are using the latest....Error Code: F7701-1003" from NetFlix.

Is this an issue with Firefox?

It seems to work fine with Edge. I have not tried with any other browsers.

Thanks

Được hỏi bởi dlbjunk 2 năm trước

Lần cuối trả lời bởi d.l.briggs 2 năm trước

  • Đã giải quyết
  • Đã lưu trữ

YouTube 4K video playback performance issue on Windows 11

I had been using Firefox browser for awhile, but because of playback performance issue, I have to using another browser just for video playing, especially for 4K video. … (xem thêm)

I had been using Firefox browser for awhile, but because of playback performance issue, I have to using another browser just for video playing, especially for 4K video.

Compared to Edge, Firefox seems taking more resources to playback the YouTube video and more heat. When look at the Task Manager, the Video Processing is 0%, and GPU is running significantly more resources on '3D'.

Được hỏi bởi mingsun123 2 năm trước

Được trả lời bởi mingsun123 2 năm trước

  • Đã lưu trữ

PASSWORD MANGER

I have sent several emails and get no reply, how am I suposed to fix check or see my saved passwords if they all look like this...3b4a3f36-7056-4eee-bcb3-2b0838fa07e1 … (xem thêm)

I have sent several emails and get no reply, how am I suposed to fix check or see my saved passwords if they all look like this...3b4a3f36-7056-4eee-bcb3-2b0838fa07e1

Được hỏi bởi The Boss 2 năm trước

Lần cuối trả lời bởi cor-el 2 năm trước

  • Đã giải quyết
  • Đã lưu trữ

On certain domain, firefox stop loading the page for a while

This bug occurs very randomly, but it seems there have few things in common. - Occurring on domain level, one domain at once. For example, if Youtube.com stuck, any sub … (xem thêm)

This bug occurs very randomly, but it seems there have few things in common.

- Occurring on domain level, one domain at once. For example, if Youtube.com stuck, any sub address including each video page is not loaded. Other website and whole browser works fine. - Other program on same PC is not affected, too. - Which page is stop loading is completely random. It might be happen only on a popular, feature-rich site like amazon, google, but not sure. - The timing is also random. Maybe after waking PC up from sleep, but not sure. Frequency of occurrence is once every 1~5 days. - The workaround without restarting browser is 1.)switching to other container tabs(strangely), 2.)opening website on private window. Disabling all the addon manually didn't help.

Since it's randomness, I didn't have any logs about this issue.

Được hỏi bởi bleepblopp 2 năm trước

Được trả lời bởi cor-el 2 năm trước