顯示下列標籤的問題: 顯示所有問題

Firefox does not play sound despite being attributed to correct device. All other apps OK.

What the title says. Firefox just isn't playing any sound whatsoever. Troubleshooting: Volume mixer indicates that Firefox is using my speakers, along with all other… (閱讀更多)

What the title says. Firefox just isn't playing any sound whatsoever.

Troubleshooting:

  • Volume mixer indicates that Firefox is using my speakers, along with all other apps. When playing a YouTube video, the green bar is not bouncing. However, all other programs that play sound do so successfully and their green bars are bouncing (see attachment).
  • Other web browsers play sound successfully.
  • Restarting Firefox and my computer did not help.
  • Switching the default sound device and changing back did not help.
  • Changing to headphones made no change.
  • Tabs are not muted.
  • Autoplay settings in about:preferences showed that audio and video were disabled, however changing this setting to allow video and audio, then restarting both Firefox and the computer did not fix the problem. I have no idea how that setting was even changed to begin with. O_o
  • Started Firefox in troubleshooting mode; still no sound.
  • Started Firefox in a different profile; still no sound.
  • Started Firefox in private mode; still no sound.
  • Tried ending the audiodg.exe process in task manager and restarted; still no sound.
  • Double checked media.autoplay.blocking_policy, was set to 0.
  • Double checked media.block-autoplay-until-in-foreground -- changed from true to false, restarted Firefox; still no sound.
  • Disabled hardware acceleration; still no sound.
  • Refreshed Firefox; still no sound.
  • Complete uninstall, including the usage of BCUninstaller to uninstall "leftovers". Reinstalled. Still no sound.

I have Apollo installed on my computer and I've reached out to them before for similar issues, but the dev was insistent that Apollo does not cause sound issues. I'm somewhat sceptical, but they're not being helpful at all so I thought I'd ask here, and disclose usage of Apollo so that all bases are covered.

Thank you for your time.

Umbravita 於 3 天前 詢問

Umbravita 最近回覆於 1 天前

Firefox Addon or Extension for Page Up / Page Down/ Home / End for Mac

Just switched from PC to Mac and miss the Page Up, Page Down, Home and End buttons. Wondering if there's a Firefox addon or extension to add these functions to a Macbook.… (閱讀更多)

Just switched from PC to Mac and miss the Page Up, Page Down, Home and End buttons. Wondering if there's a Firefox addon or extension to add these functions to a Macbook. I've searched but not found anything. I know I can't be alone in wishing for this!

(I am aware of using "Fn" and the arrow keys on a Mac to do page up and page down, but they are opposite sides of the keyboard and require both hands to scroll by page.)

zephmarie 於 5 天前 詢問

zephmarie 最近回覆於 5 天前

Bookmarks missing

I reinstalled windows on my pc after syncing all my browser data (bookmarks etc) everything but some bookmarks, i have 4 folders and 2 of them had all that was in there a… (閱讀更多)

I reinstalled windows on my pc after syncing all my browser data (bookmarks etc) everything but some bookmarks, i have 4 folders and 2 of them had all that was in there and the other 2 where empty is it possible to get them back somehow?

Yin Kuro 於 6 天前 詢問

Yin Kuro 最近回覆於 5 天前

Firefox not letting Weebly website editor load - embedding allergy

Hello! I cannot edit our Weebly-hosted website. Firefox will not load the editor, apparently because of embedding issues. I've tried a new tab, a new window, the priva… (閱讀更多)

Hello! I cannot edit our Weebly-hosted website. Firefox will not load the editor, apparently because of embedding issues.

I've tried a new tab, a new window, the private browser, and another browser, all with the same outcome, which leads me to believe that Firefox and Weebly need to have a discussion to fix this. I've also Weebly to the tracking exceptions, even though I don't think that's the issue here.

If, however, there is something I can do, please let me know.

Thank you for any help - I need to edit our website!

recoordinator 於 3 天前 詢問

recoordinator 最近回覆於 3 天前

In Windows 10 how to I stop the Firefox Icon from showing recent downloads without having to delete everyone

In Windows 10 my Firefox Icon lists above the tasks all recent downloads which I do not want for security reasons. I have been deleting one at a time when shutting down.… (閱讀更多)

In Windows 10 my Firefox Icon lists above the tasks all recent downloads which I do not want for security reasons. I have been deleting one at a time when shutting down. I don't want them there at all. Please help. Thanks

DocGuin Wayne 於 6 天前 詢問

No audio and video not playing in websites

Hi there, I am facing a strange issue in latest version of Firefox after Win10 Fresh Install. The Audio is not working. Audio Drivers are ok. Able to play audio in media … (閱讀更多)

Hi there, I am facing a strange issue in latest version of Firefox after Win10 Fresh Install. The Audio is not working. Audio Drivers are ok. Able to play audio in media player and other browsers but not in firefox. Please help. Tried all settings like sound mixer , FF reinstall, audio drivers update. But same issue. Even video not started playing in youtube etc.

Rahul Chopra 於 6 天前 詢問

.pdf downloading failed after updating the browser.

I have use the following type of code in the google appscript for downloading the html table as .pdf format but after update the Firefox browser the file unable to downlo… (閱讀更多)

I have use the following type of code in the google appscript for downloading the html table as .pdf format but after update the Firefox browser the file unable to download but everything runs properly and the success message is appearing but the file is not downloading. Before, update the browser, the file was downloaded properly, please tell me how to resolve the problem. It's an URGENT. Please take necessary action at an earlier.

function exportToPDF() {

   try {
       const table = document.getElementById("dataTable");
       if (!table || table.classList.contains('hidden')) {
           showAlert("Nothing found to generate PDF!");
           return;
       }
       const originalScrollPosition = {
           body: document.body.scrollTop || document.documentElement.scrollTop
       };
       document.body.scrollTop = 0;
       document.documentElement.scrollTop = 0;
       const tableContainer = document.querySelector(".table-container");
       const cloneContainer = tableContainer.cloneNode(true);
       cloneContainer.style.overflow = "visible";
       cloneContainer.style.maxHeight = "unset";
       cloneContainer.classList.add("no-scrollbar");


       const clone = cloneContainer.querySelector("table");
       clone.style.fontSize = "12px";
       clone.style.borderCollapse = "collapse";
       clone.style.width = "100%";
       clone.querySelectorAll('th').forEach(th => {
           th.style.fontSize = "10.5px";
           th.style.padding = "1px";
           th.style.border = "1px solid black";
       });
       clone.querySelectorAll('td').forEach(td => {
           td.style.fontSize = "10.5px";
           td.style.padding = "1px";
           td.style.border = "1px solid black";
       });


       const now = new Date();
       const dateTime = now.toLocaleString("en-GB", {
           day: "2-digit", month: "2-digit", year: "numeric",
           hour: "2-digit", minute: "2-digit", second: "2-digit",
           hour12: true
       });
       const selectedYearValue = document.getElementById('yearSelect').value;


       const wrapper = document.createElement("div");
       wrapper.style.fontSize = "16px";
       wrapper.style.fontFamily = "Arial, sans-serif";
       wrapper.style.width = "100%";


       const header = document.createElement("div");
       header.style.textAlign = "center";
       header.innerHTML = `
Financial Year wise Report on BEUP || 17th Assembly (2021-2026)
Financial Year: ${selectedYearValue}
               Report as on: ${dateTime}
       `;
       wrapper.appendChild(header);
       wrapper.appendChild(cloneContainer);
       cloneContainer.style.marginTop = "2px";
       cloneContainer.style.paddingTop = "0px";


       const fileName = `MLA_wise_&_F-Y_wise_Report_as_on_${formatDateTimeForFilename()}.pdf`;


       document.body.style.overflow = 'hidden';
       const opt = {
           margin: [5, 5, 5, 5],
           filename: fileName,
           image: { type: 'jpeg', quality: 1 },
           html2canvas: {
               scale: 2,
               useCORS: true,
               scrollY: 0,
               windowHeight: document.documentElement.scrollHeight
           },
           jsPDF: {
               unit: 'mm',
               format: 'a4',
               orientation: 'landscape'
           }
       };
       html2pdf().set(opt).from(wrapper).save().then(() => {
           
           document.body.scrollTop = originalScrollPosition.body;
           document.documentElement.scrollTop = originalScrollPosition.body;
           document.body.style.overflow = ;

           showAlert("PDF file downloaded successfully!", 'success');
       });
   } catch (e) {
       console.error("Error generating PDF:", e);
       document.body.style.overflow = ;

       showAlert("PDF generation failed. Check console for details.", 'error');
   }

}

BEUP NADIA 於 6 天前 詢問

Firefox desktop version

PLEASE help! I am desperatly trying to stop firefox from opening a tab every time after I visited my individualized start page and clicking on it. It is my yahoo and ever… (閱讀更多)

PLEASE help! I am desperatly trying to stop firefox from opening a tab every time after I visited my individualized start page and clicking on it. It is my yahoo and every time I click to check my mails or read an article your browser opens a tab that shows my account settings. It is terribly annoying. Thank you! Ariane

Ariane 於 6 天前 詢問

Options boxes not working on websites

I am using Firefox on Win 11, recently I have noticed a weird problem, on Ebay for example when a listing uses a drop down selection box for sizes, amounts etc none of th… (閱讀更多)

I am using Firefox on Win 11, recently I have noticed a weird problem, on Ebay for example when a listing uses a drop down selection box for sizes, amounts etc none of them work for me, I click on the box and down arrow but nothing. I also went on to the Vodafone site to top up my phone but I was unable to do it as the drop down box to select the amount was empty. I have tried clearing my cache and even reloading Firefox but nothing seems to work, I just tried using Edge as well but its the same, suggesting that its maybe something to do with my settings?

Cantthink01 於 6 天前 詢問

Firefox Sync not restoring tabs on new device

I recently switched to a new laptop and signed in to Firefox Sync. Bookmarks and passwords restored fine, but tabs didn’t reopen. I had important pages saved from sites l… (閱讀更多)

I recently switched to a new laptop and signed in to Firefox Sync. Bookmarks and passwords restored fine, but tabs didn’t reopen. I had important pages saved from sites like medithrivehub.com for product research, and I really need them back.

Is there a way to recover synced tabs that didn’t show up automatically? Any help would be appreciated.

Oliver 於 6 天前 詢問

HP Media Smart and PR_END_OF_FILE_ERROR

Hi, I'm trying to open pages in my old HP Mediasmart. I can access the NAS on my netwark but when I try to open most icon I get PR_END_OF_FILE_ERROR. I have my security … (閱讀更多)

Hi, I'm trying to open pages in my old HP Mediasmart. I can access the NAS on my netwark but when I try to open most icon I get PR_END_OF_FILE_ERROR.

I have my security software paused. Does this mean the NAS can't be used anymore?

I use Windows 10Pro, an Asus modem and I'm connect to the NAS by ethernet.

Of course happy to provide more details on request.

Cheers, John

johnrxx99 於 6 天前 詢問

Firefox keeps crashing regualrly every day

Firefox tabs keep crashing randomly and sometimes the entire thing just crashes and the browser has to be restarted completely. I' have already tried: Updating Firefox Co… (閱讀更多)

Firefox tabs keep crashing randomly and sometimes the entire thing just crashes and the browser has to be restarted completely. I' have already tried: Updating Firefox Completely reinstalling firefox after I removed all App Data of it. Updated all the drivers that were possible to update. Installed newer codecs (H265)

Nothing so far worked to solve this issue.

My system specs: Processor: Intel(R) Core(TM) i9-14900K 3.20 GHz GPU: Gigabyte Geeforce RTX3090 GAMING OC 24GB RAM: 32.0 GB System type: 64-bit operating system, x64-based processor Edition: Windows 10 Pro Version: 22H2 OS build: 19045.5965

Here's my Third partyModule information: {

 "modules": [
   {
     "name": "nvwgf2umx.dll",
     "fileVersion": "32.0.15.7688",
     "typeFlags": 1,
     "signedBy": "NVIDIA Corporation",
     "events": [
       {
         "processType": "browser",
         "processID": 18372,
         "threadID": 1800,
         "loadStatus": 0,
         "loadDurationMS": 2.3749
       },
       {
         "processType": "browser",
         "processID": 18372,
         "threadID": 1800,
         "loadStatus": 0,
         "loadDurationMS": 2.4432
       },
       {
         "processType": "rdd",
         "processID": 25176,
         "threadID": 28176,
         "loadStatus": 0,
         "loadDurationMS": 2.5114
       }
     ]
   },
   {
     "name": "nvgpucomp64.dll",
     "fileVersion": "32.0.15.7688",
     "typeFlags": 1,
     "signedBy": "NVIDIA Corporation",
     "events": [
       {
         "processType": "browser",
         "processID": 18372,
         "threadID": 1800,
         "loadStatus": 0,
         "loadDurationMS": 1.5519
       },
       {
         "processType": "browser",
         "processID": 18372,
         "threadID": 1800,
         "loadStatus": 0,
         "loadDurationMS": 1.4314
       },
       {
         "processType": "rdd",
         "processID": 25176,
         "threadID": 28176,
         "loadStatus": 0,
         "loadDurationMS": 1.931
       }
     ]
   },
   {
     "name": "nvldumdx.dll",
     "fileVersion": "32.0.15.7688",
     "typeFlags": 1,
     "signedBy": "NVIDIA Corporation",
     "events": [
       {
         "processType": "browser",
         "processID": 18372,
         "threadID": 1800,
         "loadStatus": 0,
         "loadDurationMS": 0.6125
       },
       {
         "processType": "browser",
         "processID": 18372,
         "threadID": 1800,
         "loadStatus": 0,
         "loadDurationMS": 0.5962
       },
       {
         "processType": "rdd",
         "processID": 25176,
         "threadID": 28176,
         "loadStatus": 0,
         "loadDurationMS": 0.6459
       }
     ]
   },
   {
     "name": "NvMemMapStoragex.dll",
     "typeFlags": 1,
     "signedBy": "NVIDIA Corporation",
     "events": [
       {
         "processType": "browser",
         "processID": 18372,
         "threadID": 1800,
         "loadStatus": 0,
         "loadDurationMS": 0.5504
       },
       {
         "processType": "browser",
         "processID": 18372,
         "threadID": 1800,
         "loadStatus": 0,
         "loadDurationMS": 0.5178
       },
       {
         "processType": "rdd",
         "processID": 25176,
         "threadID": 28176,
         "loadStatus": 0,
         "loadDurationMS": 0.6211
       }
     ]
   }
 ],
 "blocked": []

}

Eimantas Gučas 於 6 天前 詢問

Master Password

Mozilla is asking for a Master? Password. Well, I don't recall setting one up. But to change to a new password, I have to have the original password. Since I don't have t… (閱讀更多)

Mozilla is asking for a Master? Password. Well, I don't recall setting one up. But to change to a new password, I have to have the original password. Since I don't have that, what can I do to set up a new password?

David 於 5 天前 詢問

Taskbar shows in video fullscreen

When use the built-in button on a video to fullscreen it (Youtube or any other site) then the taskbar will do the animation to go away then instantly come back up. If I u… (閱讀更多)

When use the built-in button on a video to fullscreen it (Youtube or any other site) then the taskbar will do the animation to go away then instantly come back up. If I use f11 I to fullscreen all of firefox the taskbar does not show. Why is this happening with videos? Using other browsers I do not encounter this issue.

Depricate sheeesh 於 5 天前 詢問