Friday 29 November 2019

javascript - Error: The quota has been exceeded. on Safari IOS 10

I'm getting this error on my iPhone's safari, when doing localStorage.setItem('user',some string here):





Error: The quota has been exceeded.
setItem@[native code]




It is not private mode! What other circumstances can make localStorage not work?

No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...