Showing questions tagged: Show all questions
  • Archived

adress bar doesn't work

The address bar is driving me crazy tbh. I want to search for something from it and it works most of the times but doesn't some other times, and I don't know why. I did t… (read more)

The address bar is driving me crazy tbh. I want to search for something from it and it works most of the times but doesn't some other times, and I don't know why. I did try to refresh firefox after you click the helper software to uninstall it, but it still doesn't work all the times, and I also tried this (https://support.mozilla.org/en-US/questions/1337970), yet it still doesn't. I might try to uninstall and install it again but is there anything else I can do if it still doesn't work?

Asked by Hossam Abd-Elghafar 1 year ago

Last reply by Hossam Abd-Elghafar 1 year ago

  • Archived

Search algorithm

Would you please send me an email address so I can copy and paste what I placed in the search box and what your algorithm displayed to me and for whatever reason the algo… (read more)

Would you please send me an email address so I can copy and paste what I placed in the search box and what your algorithm displayed to me and for whatever reason the algorithm displays anything but the question being asked it’s baffled me is behoove me it’s really piss me off. I really don’t understand it. I can’t believe it’s taking me this. to get to this place to contact you I know y’all get a bunch of bullshit stuff but you’ll never get it for me. I am intelligent and I want answers. I’m not here to give crap to anybody ever please please please I need your help. I am a ham radio operator KB5TTE is my callsign. You can look me up and you know me and where I live. too much two months trying to get to this place it’s unhinging and seems to be totally unnecessary there or be a better way for someone to push through by your algorithm. That doesn’t seem to work quite bright, right right stupid text to speech to text my bad piece. love dove. I hope you help me.

Asked by Zylio 1 year ago

Last reply by Paul 1 year ago

  • Archived

I'm at my wits end with Firefox!

t's been a nightmare. My Firefox keeps crashing, and it's driving me crazy! I can be in the middle of something important, like researching for a project or catching up o… (read more)

t's been a nightmare. My Firefox keeps crashing, and it's driving me crazy! I can be in the middle of something important, like researching for a project or catching up on my https://dpforboys.com/ favorite shows, and suddenly, bam, it's closed. No error message, just gone.

I've tried everything I can think of:

Reinstalled Firefox multiple times Cleared cache and cookies Disabled extensions one by one Updated my graphics drivers Checked for malware Nothing seems to work. It's like Firefox has a mind of its own, and it's determined to make my life difficult. I'm starting to think it's a hardware issue, but I'm not sure.

I need help! Any suggestions would be greatly appreciated.

Asked by Wasim Abbas 1 year ago

Last reply by cor-el 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

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

Google search is intermittently working in Windows 10

When I type something in Google search I have two issue. #1 it moves the search up to the browser address bar which is utterly annoying. I've tried finding ways to disa… (read more)

When I type something in Google search I have two issue. #1 it moves the search up to the browser address bar which is utterly annoying. I've tried finding ways to disable that and use Google the original way which I think most people prefer. But #2, more annoying than this is that starting in July 2024 the searches started randomly not working. You hit enter... nothing happens. I'll clear all the browser cache and history (everything selected) and it will work once or twice, then nothing. At first I thought maybe the enter key on my keyboard was going bad since it was seemingly a little intermittent, but no, it's not the keyboard... it's Firefox.

I also tried a full delete and reinstall of Firefox but that doesn't work either.

I also tried shutting off my free version of AVG, which I've had for quite awhile, and that didn't help either.

I have no idea what else to try and absolutely no idea what else could be causing this. I just know I use Google A LOT and have never liked other search engines.

So with that said, I think my days of using Firefox have come to an end. If someone doesn't post a legitimate fix to this by the end of the month (Aug 2024), I'm just going to delete and use Chrome. I don't feel I have any other choice at this point. This has simply become way too frustrating. And from what I've found, no one else has been able to resolve this either.

Asked by Richard Jerkins 1 year ago

Last reply by TyDraniu 1 year ago

  • Archived

After few recent updates, I can no longer login to my credit card's account page

After several recent Firefox updates, I can no longer login to my credit card's account page. As a result, I am now using Microsoft Edge Version 127.0.2651.86. Here is th… (read more)

After several recent Firefox updates, I can no longer login to my credit card's account page. As a result, I am now using Microsoft Edge Version 127.0.2651.86.

Here is the web address for Barclay Card: https://cards.barclaycardus.com/

I have attached the screenshot of the FF problem on my Windows 10 64bit laptop comp. As you can see, the login section is blocked, with a message "Firefox Can't Open This Page".

Thanks in advance for your help. Richard P.

Asked by sun4earth 1 year ago

Last reply by NoahSUMO 1 year ago

  • Archived

YouTube does not play high quality videos on Firefox browser

I play a youtube video in firefox browser but it doesn't have any high quality video options. If I copy the link and paste it into the Chrom browser, it immediately has a… (read more)

I play a youtube video in firefox browser but it doesn't have any high quality video options. If I copy the link and paste it into the Chrom browser, it immediately has all the options.

Asked by k13vb2qt3 1 year ago

Last reply by TyDraniu 1 year ago

  • Archived

Red marks on the browser.

Hi guys, I am trying to use Mozilla, but whenever I opened it on my desktop, I saw red marks on every words. This is irritating me, is there any solution for this issue? … (read more)

Hi guys, I am trying to use Mozilla, but whenever I opened it on my desktop, I saw red marks on every words. This is irritating me, is there any solution for this issue? I tried deleted my browser too. Thanks.

Asked by amelia.hansley1 1 year ago

Last reply by cor-el 1 year ago

  • Archived

Ad Blocking Message

Hi! I am getting messages that I am blocking ads for many of my internet requests. I had never received these before but all of a sudden I started to get them. I have tr… (read more)

Hi!

I am getting messages that I am blocking ads for many of my internet requests. I had never received these before but all of a sudden I started to get them. I have tried a number of things but nothing works.

I am running Windows 11 and do not have any Ad blockers.

Asked by George Martin 1 year ago

Last reply by arleta05 1 year ago