Page 1 of 1

PHP Exit Exchange V 1.0 issues

Posted: Thu Feb 17, 2005 7:14 pm
by webspace
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.

Posted: Thu Feb 17, 2005 7:16 pm
by s.dot
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

Code: Select all

// session_start();
// Double foward slashes are used to comment out a line of code