Kukhonjiswa imibuzo ethegiwe: Veza yonke imibuzo
  • Okugcinwe kunqolobane

Javascript is enabled, but is not functional.

Hi - Javzscript Enable, though "True", still brings up the error "Enable Javascript". I spent hours on this, but nothing useful was found. Has any one had this problem,… (funda kabanzi)

Hi - Javzscript Enable, though "True", still brings up the error "Enable Javascript". I spent hours on this, but nothing useful was found. Has any one had this problem, and if so, were they able to fix it?

Best regards, Nick.

Asked by mr.nick 10 izinyanga ezidlule

Last reply by jscher2000 - Support Volunteer 5 izinyanga ezidlule

  • Okugcinwe kunqolobane

Passwords

I suffered a catastrophic crash and had to replace my computer, a mac. I replaced it with another mac. Because the older one will not boot up, I could not migrate my fir… (funda kabanzi)

I suffered a catastrophic crash and had to replace my computer, a mac. I replaced it with another mac.

Because the older one will not boot up, I could not migrate my firefox data.

I ended up doing 'lost password' for all my sites.

There are a couple where the lost password thing hasn't worked.

It occurred to me to rename the (new computer's) logins.json file, copy the old computer's logins.json file from my external backup drive, put it in new computer's /user/library/application support/firefox, and then look in preferences, get the two passwords I want, set things back, enter these passwords into firefox again.

This did not work. In fact, now no matter which file is named logins.json, preferences says I have NO passwords stored.

I cannot find anything that tells me how to just decrypt the .json files (at least, not in a step-by-step way that I can use.)

Asked by hedge1 9 izinyanga ezidlule

Last reply by Dropa 9 izinyanga ezidlule

  • Okugcinwe kunqolobane

Firefox bookmarks & Passwords

Hello. Last night i had to reinstall windows and i lost everything. but in firefox i have loged in and synced. its also synced with my safari browser on my phone. is it p… (funda kabanzi)

Hello. Last night i had to reinstall windows and i lost everything. but in firefox i have loged in and synced. its also synced with my safari browser on my phone. is it possible in any way to get my bookmarks and passwords back? because everything is gone and the profile folder only shows dates after i installed firefox again!

Best Regards Kaveh

Asked by ari0a 9 izinyanga ezidlule

Last reply by jscher2000 - Support Volunteer 9 izinyanga ezidlule

  • Okugcinwe kunqolobane

Global Privacy Control

I keep getting a opt-out\opt-in notice from Global Privacy control every couple hours. 1st. I've already opted out. 2nd. I went into about:config and set globalprivacycon… (funda kabanzi)

I keep getting a opt-out\opt-in notice from Global Privacy control every couple hours. 1st. I've already opted out. 2nd. I went into about:config and set globalprivacycontrol to (true). 3rd. When I check the globalprivacycontrol.org website it states(GPC signal detected). See attached photos

What more do I have to do to stop this notice from popping up all the time.

Asked by simpleman2 10 izinyanga ezidlule

Last reply by jscher2000 - Support Volunteer 5 izinyanga ezidlule

  • Okugcinwe kunqolobane

How do I stop that annoying url popping up at the bottom of my screen?

I want to get rid of that url bar that pops up on the left bottom of the screen when you hover over a bookmark, a link on a page, a video... anything that leads to anothe… (funda kabanzi)

I want to get rid of that url bar that pops up on the left bottom of the screen when you hover over a bookmark, a link on a page, a video... anything that leads to another web address. It disappears when you hover over it and changes to the right bottom of the screen. It appears when i'm trying to watch videos on sites when i'm in full screen and refuses to go away. I've tried the chrome folder solution posted here and it doesn't work. I've tried many other solutions online and they don't work either.

https://support.mozilla.org/en-US/questions/1372339

A few of the things that were supposed to be labeled as they were in the solution were not available on my new version of FF but I found the correct folder to post the chrome folder in regardless. The box to open the profile folder was further down and labeled differently than in the instructions posted from a year or more ago here.

I'm using a fresh install of windows 11 and the latest version of Fire Fox 115.0.2 64bit

Thank you in advance.

Asked by Dreamstate 9 izinyanga ezidlule

Last reply by cor-el 9 izinyanga ezidlule

  • Okugcinwe kunqolobane

Bookmarks Menu and folders

how do i change the books marks menu from showing recent bookmarks to showing the traditional bookmark list including folders? tired of having to hunt for my bookmarks. t… (funda kabanzi)

how do i change the books marks menu from showing recent bookmarks to showing the traditional bookmark list including folders? tired of having to hunt for my bookmarks. this setup is the dumbest thing ive seen.

Asked by atucci88 9 izinyanga ezidlule

Last reply by Medhasree Suram 9 izinyanga ezidlule

  • Okugcinwe kunqolobane

recover the saved password

Hi Team I have saved password in FF but unfortunately I have removed the saved password from one device .But it has removed from all my devices . Is there any chance to… (funda kabanzi)

Hi Team

I have saved password in FF but unfortunately I have removed the saved password from one device .But it has removed from all my devices . Is there any chance to restore the data for me .

Asked by chinmoya2u 9 izinyanga ezidlule

Last reply by abdulrazzaqsharif723 9 izinyanga ezidlule

  • Okugcinwe kunqolobane

BUG Drag-dropping inside a document fails with Uncaught DOMException: The operation is insecure

When I start to drag a div to drop it in another div on the same page, it fails with the message: "Uncaught DOMException: The operation is insecure. dragstart_handle… (funda kabanzi)

When I start to drag a div to drop it in another div on the same page, it fails with the message:

"Uncaught DOMException: The operation is insecure.

   dragstart_handler http://127.0.0.1:5000/main.js:7"

This is main.js:

``` function dragstart_handler(event) {

   var t = event.target;
   while (! t.draggable == "true" && t.tagName != "BODY") {
       t = t.parentNode;
   };
   if (! t.draggable) return;
   event.dataTransfer.setData("application/x-moz-node", t);

... ```

All dragging goes inside the same document, so "The operation is insecure" shouldn't happen.

Also I get an empty string when trying to get the draggable data:

``` function drop_handler(event) {

   var t = event.target;
   const parent = t.parentNode;
   if (parent.id == "drag_area") {
       event.preventDefault();
       const data = event.dataTransfer.getData("application/x-moz-node");

Here's how I assign draggables and drop areas:

``` window.addEventListener("DOMContentLoaded", () => {

   const dragArea = document.getElementById("drag_area");
   dragArea.addEventListener("dragstart", dragstart_handler);
   dragArea.addEventListener("dragover", dragover_handler);
   dragArea.addEventListener("dragleave", dragleave_handler);
   dragArea.addEventListener("drop", drop_handler);

}); ```

HTML:

```

Drag this

```

Asked by asq 9 izinyanga ezidlule

Last reply by zeroknight 9 izinyanga ezidlule

  • Okugcinwe kunqolobane

print problems

when I select an email to print the first page is partial, it's not the entire email that needs to be printed. then the other pages are blank how to fix this problem&nbs… (funda kabanzi)

when I select an email to print the first page is partial, it's not the entire email that needs to be printed. then the other pages are blank

how to fix this problem ?

thanks Linda

Asked by Linda 9 izinyanga ezidlule

Last reply by jscher2000 - Support Volunteer 9 izinyanga ezidlule

  • Okugcinwe kunqolobane

Preferences

(menu bar) Firefox > Preferences I see this in hundreds of links for help. But it does NOT exist. Please do NOT tell me to go to menu bar and click on Firefox. It is … (funda kabanzi)

(menu bar) Firefox > Preferences I see this in hundreds of links for help. But it does NOT exist. Please do NOT tell me to go to menu bar and click on Firefox. It is NOT there. It just is NOT there. There is no tab, link, drop down or ANY thing that says Firefox. There is no tab, link, drop down or ANY thing that says Preferences. The menu bar is there. File Edit History Bookmarks Tools Help. But NO Firefox and NO preferences. I want my page to show the |||\ at the top. But I do not want the bookmarks tool bar at the top. I do NOT want Picture in Picture to show at the top. I do not want the bookmark star to show inside the url. Where and how do I fix these things???

Asked by fryque 9 izinyanga ezidlule

Last reply by jscher2000 - Support Volunteer 9 izinyanga ezidlule

  • Okugcinwe kunqolobane

OneNote Web Clipper Extension No Longer Working.

As of the past few days the OneNote Web Clipper Extension has stopped working in Firefox. Is this a known problem? Is there a fix? I've tried refreshing FF and reinstalli… (funda kabanzi)

As of the past few days the OneNote Web Clipper Extension has stopped working in Firefox. Is this a known problem? Is there a fix? I've tried refreshing FF and reinstalling the extension but the problem persists.

Asked by Martin 10 izinyanga ezidlule

Last reply by rafikiphoto 7 izinyanga ezidlule

Bookmark Spacing too much since going from Win7 to Windows 10

I recently upgraded from Window 7 to windows 10. Ever since, the spacing between the bookmarks has significantly increased. I read several post about this and they all … (funda kabanzi)

I recently upgraded from Window 7 to windows 10. Ever since, the spacing between the bookmarks has significantly increased. I read several post about this and they all seem to be looking for something in Firefox. I think it has to do with something in windows 10, not Firefox. Any ideas? I've already done the Density/Compact thing. Slight improvement, but not anything like it was under Window 7.

Asked by Stumann666 1 inyanga edlule

Last reply by cor-el 1 inyanga edlule