XF 1.5 Getting logged out randomly (Forums and Admin Panel).

Hey,

I am running xenForo version 1.5.21 and I am having issues with users being signed out from their accounts and this includes myself. May I note that this is also happening on the admin panel.

Note: We are not having any issues with storage or anything of that sort. This issue seemed to start suddenly about a month ago and we have not had the time to report it until now.
There are no errors logged in the Admin Panel.

You can find the website at http://www.vegamc.net.

Thanks for taking the time to read this message, I hope that this issue can be solved quickly.
 
Ok,

I currently have:
Code:
RewriteEngine On

    RewriteCond %{SERVER_PORT} 80
    RewriteRule ^(.*)$ https://www.vegamc.net [R,L]

Would I change this to:
Code:
RewriteEngine On
    RewriteCond %{HTTP_HOST} !^yoursite\.com$
    RewriteRule ^(.*)$ http://yoursite.com/$1 [R=301,L]
    RewriteCond %{SERVER_PORT} 80
    RewriteRule ^(.*)$ https://www.vegamc.net [R,L]
Or if not, what would I change it to?
 
You will likely need to contact your sysadmin or host to resolve server level issues, if you are unable to get the rewrite rules working.
 
Top Bottom