PowerCMS Log-In Resolved
This is a posting to acknowledge the solution provided by Jason on several posts w/in this thread. In reading some of the posts, you might think the provided solution was a dead end. I had the same issue after moving my site from my localhost to the production server. I first discovered that my host needed to be running PHP Version 5. I have them update PHP. That did not resolve the issue. After researching w/in this forum, the following solution provided by Jason did work:
Change
if (!isset($_SESSION)) {
session_start();
}
to:
PHP Code:
@session_start();
See the thread for the details of adding this fix. Do note that w/in the Helper_PHP.php file, the above "if(!isset..." code is located in two areas w/in the file. The one that should be changed is the one located around line 4 or 5 in the file (Jason noted this also - don't skim over this).
Thanks Jason!