OpenSprinkler Forums OpenSprinkler Unified Firmware web page blank Re: Re: web page blank

#28022

Samer
Keymaster

This is a browser issue. First off, requestNotifier.js is not my code that is a FireFox plugin. Second, the HTML encoding is not true, I do declare but it has to be injected via Javascript so FireFox is complaining before the page finishes loading. Third, the reason your page isn’t loading is due to: SecurityError: The operation is insecure. home.js:159.

The code on this line of Javascript is this:

sites = JSON.parse(localStorage.getItem("sites"))

This tells me you likely have malformed data inside your “sites” configuration. The easiest way to fix this, since you have knowledge of the console, is to issue the following command inside the console:

localStorage.removeItem("sites")

Please let me know if this helps.

Thanks!