Showing questions tagged: Show all questions
  • Archived

EC_ERROR_REVOKED_CERTIFICATE

Hi When I use Firefox to act as a browser to search for topics I get the error message EC_ERROR_REVOKED_CERTIFICATE I am now having to use "Bing" to search This has… (read more)

Hi

When I use Firefox to act as a browser to search for topics I get the error message

EC_ERROR_REVOKED_CERTIFICATE

I am now having to use "Bing" to search

This has been going on for a long time

Thanks Gareth

Asked by Gareth George 1 year ago

Last reply by jscher2000 - Support Volunteer 1 year ago

  • Archived

Firefox has safesearch on everything

Every website has safesearch or the website itself is blocked. It seems to be acting like its got parental controls on. I am the owner of this house, no apartment or work… (read more)

Every website has safesearch or the website itself is blocked. It seems to be acting like its got parental controls on. I am the owner of this house, no apartment or work or public internet connection here its my own private internet. My other browsers aren't giving this problem so its a firefox exclusive issue.

Asked by Rob Vipera 1 year ago

Last reply by TyDraniu 1 year ago

  • Archived

400 bad request

I work at a university. More and more, when ever I need to log into a webpage for work, I am getting a Bad Request Your browser sent a request that this server could … (read more)

I work at a university. More and more, when ever I need to log into a webpage for work, I am getting a

Bad Request

Your browser sent a request that this server could not understand.

Google Chrome works just fine. This is getting REALLY frustrating

Asked by uabforensic 1 year ago

Last reply by cor-el 1 year ago

  • Archived

Pop-ups Still happening

Despite having the Pop-ups box ticked, I continue to get these 4 in a row, from McAfee. I have been running a system clean for 3 days, and still get these pop-ups. I ha… (read more)

Despite having the Pop-ups box ticked, I continue to get these 4 in a row, from McAfee. I have been running a system clean for 3 days, and still get these pop-ups. I have TotalAV, but nothing I do has made a difference.

Asked by Harleyria Linnehan 1 year ago

Last reply by jonzn4SUSE 1 year ago

  • Archived

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

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>

Asked by Georgy Shindarov 1 year ago

Last reply by cor-el 1 year ago

  • Archived

Copying text on some websites some lines get lost

This data some of the lines with underscore gets lost if I try to copy them in Firefox but works in Chrome https://app.arkivdigital.se/register-collections/register-posts… (read more)

This data some of the lines with underscore gets lost if I try to copy them in Firefox but works in Chrome https://app.arkivdigital.se/register-collections/register-posts/r12.p122825682?query=Ulrika%20Eleonora%20%20%201754-11-29%20%C3%84lghult&register_collection=12

FörnamnUlrika Eleonora EfternamnFalström Titel/YrkeFriherrinnan Dödsdatum1754-11-29 DödsförsamlingÄlghult DödslänKronoberg Ålder60 år Könf Källor Källa: Älghult C:2 (1717-1760) Bild 216 / Sida 423 Genväg r12.p122825682

Skapad av Kronobergs Genealogiska Förening

Asked by Per Olof Johansson 1 year ago

Last reply by cor-el 1 year ago