The best thing you can do is read the error message and examine the line(s) in question.
You have output in file D:\sites\inc\register.inc on line 23. That file is included in file D:\sites\uyelik\login.php on line 90. At least, that's how I interpret that message. The one thing the error message doesn't elaborate on that may help you is that initializing a session causes some HTTP headers to be sent. These must be sent prior to any output, so you either need to eliminate the output the message refers to, use output buffering, or move your session initializing nearer the beginning. Hope that helps. Chris --- empty <[EMAIL PROTECTED]> wrote: > Warning: Cannot send session cache limiter - headers already sent > (output started at D:\sites\inc\register.inc:23) in > D:\sites\uyelik\login.php on line 90 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php