PHP Exit Exchange V 1.0 issues

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
webspace
Forum Newbie
Posts: 1
Joined: Thu Feb 17, 2005 7:03 pm

PHP Exit Exchange V 1.0 issues

Post 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.
User avatar
s.dot
Tranquility In Moderation
Posts: 5001
Joined: Sun Feb 06, 2005 7:18 pm
Location: Indiana

Post 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
Post Reply