It could be a warning in your script. On your local server, maybe you have error reporting set to minimal (ie. don't report warnings), whereas the ISP server might have it turned up higher by default.
near the top of your script reporter_view.php put in the line error_reporting(E_ALL); ie. <?php error_reporting(E_ALL); .... PHP code ?> Maybe line 5 is causing a warning? After you have error_reporting on full you may be able to solve the problem on your local server. For more info checkout error_reporting() on php.net Bobby "Anders Thoresson" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > > I've a login script that works fine on my local server, but when I runs it > from my ISP I get the following error: > > Warning: Cannot send session cookie - headers already sent by (output > started at /export/home/thore/public_html/phptest/reporter_view.php:5) in > /include/accesscontrol.php on line 9 > > Warning: Cannot send session cache limiter - headers already sent (output > started at /export/home/thore/public_html/phptest/reporter_view.php:5) in > /include/accesscontrol.php on line 9 > > If I had made any mistake in my handling with the session functions, > shouldn't that be the case also at my local server? > > -- > anders thoresson -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php