The site was turnkey. It had the scripts and database set up when I started using it.
I have this error in my admin area that makes that has blocked my access to the website.
Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /home/typhoone/public_html/common.php:25) in /home/typhoone/public_html/control/clublib.php on line 2
I don't know what a cache limiter is. Or what is wrong with the other PHP files. I don't really know much about PHP
I had the same error on the index page and fixed it with ob start and end flush tags.
I don't know how to fix the admin area because it is different.
PHP Exit Exchange V 1.0 issues
Moderator: General Moderators
sounds like your session has already started and you're trying to start it again.
open up clublib.php and comment out the session_start() line, like this
open up clublib.php and comment out the session_start() line, like this
Code: Select all
// session_start();
// Double foward slashes are used to comment out a line of code