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ữ

Unable to login

Dear sir I'm unable to log from 7-08-2024 and OTP is also not getting to login today I'm trying to login it shows locked Kindly do the needful Thank you Anisha … (xem thêm)

Dear sir

I'm unable to log from 7-08-2024 and OTP is also not getting to login today I'm trying to login it shows locked

Kindly do the needful Thank you Anisha

Được hỏi bởi panisha516 9 tháng trước

Lần cuối trả lời bởi jonzn4SUSE 9 tháng trước

  • Đã lưu trữ

the error message indicates that the platform version 125.0.1 is not compatible with Firefox version 129.0.

I have done reinstalled Firefox i also tried to download version 129.0 but neither solved my problem pls help me as soon as possible pls i am having a delay on working in… (xem thêm)

I have done reinstalled Firefox i also tried to download version 129.0 but neither solved my problem pls help me as soon as possible pls i am having a delay on working in my project I have tried all my best pls help

Được hỏi bởi zayed 9 tháng trước

Lần cuối trả lời bởi cor-el 9 tháng trước

  • Đã lưu trữ

images missing on many websites after page 1

I have been a Foxfire user for many years, but lately a number of issues are making me go to Chrome more and more often. Images are missing on many pages after page 1. … (xem thêm)

I have been a Foxfire user for many years, but lately a number of issues are making me go to Chrome more and more often. Images are missing on many pages after page 1. Pages with images are very slow to load, even though the images are not being displayed. Some commercial websites won't allow me to access them at all (Eddie Bauer is an example,) often displaying an "Access denied" message.

Also, I am forced to log in almost every time I access sites (Yahoo mail and Amazon are examples that I access daily.) With 2-factor ID, this is a big issue because my phone is usually at the other end of the house.

These things don't happen with Chrome. Is there a way to fix them in Firefox?

Được hỏi bởi let98007 10 tháng trước

Lần cuối trả lời bởi jonzn4SUSE 10 tháng trước

  • Đã lưu trữ

Something is wrong

Hello I am having troubles accessing the browser. I get to do endless security check every time I open Firefox for anything. I have to undergo several puzzles "I am not… (xem thêm)

Hello

I am having troubles accessing the browser. I get to do endless security check every time I open Firefox for anything. I have to undergo several puzzles "I am not a robot" before any page opens and this happens every time I go on the web. even if I did this a Mn ago am being asked again and not only one puzzle to resolve but sometimes up to 10 in a row. This is so time consuming that I am now considering leaving Firefox to work on other browsers although I always had Firefox as my default browser. Thank you

Được hỏi bởi Joyce Hadife 8 tháng trước

Lần cuối trả lời bởi cor-el 8 tháng trước

  • Đã lưu trữ

Why is it asking for progress from the script that will apply it works fine on chrome and no progress is visible on firefox

Why is it asking for progress from the script that will apply it works fine on chrome and no progress is visible on firefox <div class="ossn-videos-add-button"> … (xem thêm)

Why is it asking for progress from the script that will apply it works fine on chrome and no progress is visible on firefox

<div class="ossn-videos-add-button">
  <input type="file" name="ossnvideo[]" multiple class="hidden" id="add" accept="video/mp4" />
  <input type="hidden" id="mytext" name="mytext">
  <button type="button" id="ossn-videos-add-button-inner" class="btn btn-default"><i class="fa fa-copy"></i> <?php echo ossn_print('video:select'); ?></button>
  <div class="images"><i class="fa fa-video"></i> <span class="count">0</span></div>
</div>

<input type="submit" class="ossn-hidden" id="ossn-videos-submit" />

<img id="thumbnail" />
<div class="progress">
  <div class="progress-bar" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width: 0%;">
    0%
  </div>
</div>

<script>
  var input = document.getElementById('add');
  var submitButton = document.getElementById('ossn-videos-submit');
  var img = document.getElementById('thumbnail');
  var progressBar = document.querySelector('.progress-bar');

  input.addEventListener('change', function (event) {
    var file = this.files[0];
    var url = URL.createObjectURL(file);

    if (file.type === 'video/mp4') {
      createThumbnail(url, img, file);
    } else {
      // Unsupported file type
      img.src = '';
      progressBar.style.width = '0%';
      progressBar.setAttribute('aria-valuenow', '0');
      progressBar.textContent = '0%';
    }
  });

  submitButton.addEventListener('click', function () {
    // Create a new FormData object
    var formData = new FormData();
    formData.append('ossnvideo[]', input.files[0]);
    formData.append('thumbnail', img.src); // Add the thumbnail to the form data

    // Create a new XMLHttpRequest object
    var xhr = new XMLHttpRequest();

    // Set up the progress event listener
    xhr.upload.addEventListener('progress', function (event) {
      if (event.lengthComputable) {
        var percentComplete = (event.loaded / event.total) * 100;
        progressBar.style.width = percentComplete + '%';
        progressBar.setAttribute('aria-valuenow', Math.round(percentComplete));
        progressBar.textContent = Math.round(percentComplete) + '%';
      }
    });

    // Set up the load event listener
    xhr.addEventListener('load', function () {
      if (xhr.status === 200) {
        console.log('File uploaded successfully');
      } else {
        console.error('Error uploading file');
      }
    });

    // Open the request and send the form data
    xhr.open('POST', 'your-upload-script.php', true);
    xhr.send(formData);
  });

  function createThumbnail(videoUrl, targetImg, file) {
    var video = document.createElement('video');
    video.preload = 'metadata';
    video.src = videoUrl;

    video.addEventListener('loadedmetadata', function () {
      var canvas = document.createElement('canvas');
      canvas.width = 150;
      canvas.height = 280;
      var context = canvas.getContext('2d');

      // Set the video's current time to the middle of the video
      video.currentTime = video.duration / 2;

      video.addEventListener('canplaythrough', function () {
        context.drawImage(video, 0, 0, canvas.width, canvas.height);
        targetImg.src = canvas.toDataURL('image/png', 0.8);
        document.getElementById("mytext").value = targetImg.src;
      });
    });
  }
</script>

Được hỏi bởi Georgy Shindarov 10 tháng trước

Lần cuối trả lời bởi cor-el 10 tháng trước

  • Đã lưu trữ

Firefox is failing to open site following insert of Username and Password

Recently Firefox has stopped opening the Australian Super Member Login page following the insert of Username and Password from Roboform (My Password Manager). I do not ha… (xem thêm)

Recently Firefox has stopped opening the Australian Super Member Login page following the insert of Username and Password from Roboform (My Password Manager). I do not have the same issue on Chrome or Edge. I have reinstalled Firefox hoping that this might solve the issue. Nothing changed.

I have looked in Settings

Được hỏi bởi Lot 10 tháng trước

Lần cuối trả lời bởi Lot 10 tháng trước

  • Đã lưu trữ

Send command

My send command has disappeared. After i have written an email, there use to be a SEND command top left corner..now suddenly this has disappeared.. How can I get it bac… (xem thêm)

My send command has disappeared. After i have written an email, there use to be a SEND command top left corner..now suddenly this has disappeared.. How can I get it back ????

Được hỏi bởi Yourantiaman 10 tháng trước

Lần cuối trả lời bởi jonzn4SUSE 10 tháng trước

  • Đã lưu trữ

Searching from the address bar is not working

It worked fine until an hour ago. I have tried restarting twice. Each time it works once then stops working. I have tried the about:config route and it didn't work. (It… (xem thêm)

It worked fine until an hour ago. I have tried restarting twice. Each time it works once then stops working. I have tried the about:config route and it didn't work. (It says "true"). Hope it can be fixed! If not I'll be going back to Chrome.

Được hỏi bởi MsQuisch 9 tháng trước

Lần cuối trả lời bởi cor-el 9 tháng trước

  • Đã lưu trữ

Firefox doesn't reach many websites

Firefox doesn't reach many websites. Most notably my banks. It times out. It says the website is not available. I've tried updating the website URL. I've cleared cookies… (xem thêm)

Firefox doesn't reach many websites. Most notably my banks. It times out. It says the website is not available. I've tried updating the website URL. I've cleared cookies. I've been able reach these websites with Microsoft Edge. I downloaded an updated version of Firefox. What can I do?

Được hỏi bởi ppastiva101 9 tháng trước

Lần cuối trả lời bởi jonzn4SUSE 9 tháng trước

  • Đã lưu trữ

problem downloading pdfs, follow up-I figured out what to do

(sorry, don't know how to find or edit original question) It occurred to me to try reloading firefox, there was an update, & I can download pdf's again. So ignore pre… (xem thêm)

(sorry, don't know how to find or edit original question) It occurred to me to try reloading firefox, there was an update, & I can download pdf's again. So ignore previous question.

Được hỏi bởi susan.tuohy 9 tháng trước

Lần cuối trả lời bởi jonzn4SUSE 9 tháng trước

  • Đã lưu trữ

sky broadband broke firefox

recently switched to sky broadband, now half my web comics and other sites get 401d. some stupid interaction with their webshield rubbish seems to be the cause as it pops… (xem thêm)

recently switched to sky broadband, now half my web comics and other sites get 401d. some stupid interaction with their webshield rubbish seems to be the cause as it pops up occasionally. thing is, edge and brave have no such issue, and the trouble shooting guide for firefox not loading pages doesnt resolve the issue. restore firefox has partial effect until next time i restart my computer. but resetting my addons every time i sit down would be rediculous.

im guessing there is something in the dragons nest i need to toggle. im rather comfortable with how i use the tab sidebar and speed dial pins to be very eagre to switch browser.

Được hỏi bởi Jason White 9 tháng trước

Lần cuối trả lời bởi jscher2000 - Support Volunteer 9 tháng trước

  • Đã lưu trữ

Missing Elements on Website

Hi, This a a problem with the interface of a website, its missing a lot of the sections of text and stuff. The first attachment is what it looks like on firefox, and the… (xem thêm)

Hi,

This a a problem with the interface of a website, its missing a lot of the sections of text and stuff. The first attachment is what it looks like on firefox, and the following one is on safari. I've tried disabling the security limitations on the site to no avail. I'm on Mac.

Best, Jonathan

Được hỏi bởi jonathanbai42 9 tháng trước

Lần cuối trả lời bởi cor-el 9 tháng trước