Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IE8: "The system cannot find the path specified" error when acessing window.localStorage

I have some javascript code which accesses window.localStorage, and it's working fine on most machines, but in one of them (IE8 compat view, Windows 7 64) I get the error "The system cannot find the path specified" whenever I try to read window.localStorage. I've tried to find some discussions about it at SO and Google (no cigar) and didn't find any suspicious setting at the browser's options. Has anyone encountered this error, and a solution for it? I could put a try/catch around window.localStorage but I'd rather understand what is going on.

like image 311
rodbv Avatar asked Oct 25 '22 01:10

rodbv


1 Answers

Take a look at Which browsers support html5 offline storage.

According to that list IE8's supported. If it's only on one pc where you have the problem then check if there are plugins for that browser that might interfere.

like image 55
Kris van der Mast Avatar answered Nov 28 '22 02:11

Kris van der Mast