Reply To: Your Server could not start a Session!

Home Forums Support Forum Your Server could not start a Session! Reply To: Your Server could not start a Session!

#112520

Anti-Malware Admin
Key Master

Yes, I can help you find a resolution to this problem you are having.

Are all on these sites running the same version of PHP, what version is running on the site that does not start a session?

Can you try to start a session outside of WordPress?
Maybe you can create a new test.php file in the root of this site and add these few lines of code:

<?php
if (!session_id())
@session_start();
if (!isset($_SESSION["date"]))
$_SESSION["date"] = date("Y-m-d H:i:s");
echo "session started ".$_SESSION["date"];

You can also check the error_log file on your server just after you get the “Error Your Server could not start a Session!” message from my plugin, to see if there are any error details in the log that will tell us why your server cannot start a session on this site even if it can on the other sites.

Let me know how that goes and I can help you further after seeing the results of these tests.