Does localStorage.setItem() enabled on free account

I use localStorage.setItem() to store user data for long period, Yesterday and my free account has been deactivated. I send support ticket to reactivate my account to infinityfree and they reactivated my account, but the file in which I use localStorage.setItem() was removed.

My main question is this that localStorage function is allowed or not.

Simply, it is not allowed.

1 Like

I just found it:

5 Likes

Can you tell me more about this

localStorage is and inappropriate method to store Session Data especially from Javascript. Saving sensitive user data in localStorage from JS is an unsecure method of storing data. If you are seeking to store data, use the PHP $_SESSION instead.

2 Likes

LocalStorage is a Javascript feature implemented in web browsers. There is no server interaction whatsoever, so there is nothing we can do to allow or block the use of local storage on websites we host.

So, to answer your question: yes, it’s allowed. You’re free to use any Javascript functionality on your website, including LocalStorage.

5 Likes

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.