There are server-related session problems on your install. Print

  • 0

If you attempt to log into the CMS and get this error:

There are server-related session problems on your install. Please click here for more info.

This means there is a configuration-related problem with your server that your host / tech will need to correct.

In sum, what's happening here is that your server is not able to properly store session information your machine. The CMS requires sessions to be working in order to stay logged into the system, and pass information from one page-load to another.

Your host can use the following PHP code below to test this functionality.

======

<?php

session_start();
if (empty($_SESSION["v"])) $_SESSION["v"] = 0;
$_SESSION["v"]++;

?>

The value of the session variable here is: <?php echo $_SESSION["v"]; ?>.
If you refresh this page, this value should increase.
If the value doesn't increase, there's a problem with PHP and sessions that your tech will need to troubleshoot.


Was this answer helpful?

« Back

This site uses cookies to personalize content and to analyze traffic. You consent to our cookies if you continue to use our website. Read our Privacy Policy to learn more. Please Agree or Exit