Check the login form fields. When a post is made (the login post) fields can be set to bypass the cache. This is the case when some logs into your website (then the cache should not be available.
Check the HTML code of the login functionality. (usually a <form. >
Check the fields settings.
Set the these values into the field:
Set the bypass cache cookie if the following actions are set:
Example is that the standard Joomla login has the setting:
<form action="index.php?option=login" method="post" name="login" id="login">
Then in the put into the bypass field setting:
option=login
Or if the value is within a (hidden) field:
<input type="hidden" name="op2" value="login" />
put into the bypass field setting:
op2=login
The same is for clearing the bypass cache cookie. When someone logs out a specific action is made, mostly this is:
option=logout
op2=logout
But check the HTML code of the SMF login box.
Regards,
Richard