Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

session_start(); and Felkod: ERR_CACHE_MISS

Status
Not open for further replies.
Junior Spellweaver
Joined
Nov 15, 2009
Messages
106
Reaction score
1
Hello, when i do not use session_start();
i can go back and forward in my $_POST forms without any problems but when i add session_start(); to enable the use of sessions first in my dockuments,
i keep getting the ERR_CAHCE_MISS error and have to confirm resending of form,
how do i get rid of the error without removing session_start() ?



solved using:

session_cache_limiter('private, must-revalidate');
session_cache_expire(60);
 
Initiate Mage
Joined
Jun 21, 2016
Messages
3
Reaction score
0
found the fix

but still sometimes i got the error
my bad luck
 
Status
Not open for further replies.
Back
Top