Online Forum To Support Coders With Technical Assistance - Read Write Execute

Prevent “ERR_CACHE_MISS” of form submission

Ankit Agrawal
Ankit Agrawal
Published on February 16, 2016 · 1 min read

Add this code before starting the session of that page.

ini_set('session.cache_limiter','public');
session_cache_limiter(false);
session_start();
Was this article helpful?
Ankit Agrawal

Ankit Agrawal

Author & Senior Engineer at CodeExecute

Writing practical engineering guides, debugging real-world bottlenecks, and creating free tools for developer productivity.

← Previous Article How to remove index.php from url in codeigniter Next Article → Change folder name without change its actual place by htaccess