Skip to content Skip to sidebar Skip to footer

Firefox Securityerror: "the Operation Is Insecure."

I am using Backbone.LocalStorage plugin with backbone app. It is working fine in chrome and safari however, it is giving me below error in firefox. DOMException [SecurityError: 'T

Solution 1:

Make sure Firefox has cookies enabled. The setting can be found under Menu/Options/Privacy/History

In the dropdown, select either 'Remember History' or if You prefer use custom settings for history, but select option Accept cookies from sites

Hope it helps.

Solution 2:

This happens when we try to access a resource (CSS...) that is located on a different domain. To deal with this error we can use this:

try {
                     //your critical access to ressources !//rules = document.styleSheets[i].cssRules;
                        } catch(e) {
                   if(e.name !== "SecurityError") {
                       throw e;
                       }

Solution 3:

Make sure your domains are same. verify Same Origin Policy which means same domain, subdomain, protocol (http vs https) and same port.

What is Same Origin Policy?How does pushState protect against potential content forgeries?

Solution 4:

I had similar issue with one script, I dig into error and found it required SSL websockets, so I started SSL and again checked, and It worked. Try enabling HTTPS and access website as https://127.0.0.1/ It may solve error.

Post a Comment for "Firefox Securityerror: "the Operation Is Insecure.""