Error is:
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/gopal/public_html/Update.php:1) in /home/gopal/public_html/Update.php on line 2
Error is:
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/gopal/public_html/Update.php:1) in /home/gopal/public_html/Update.php on line 2
Quick hack? Use Output control.
However, what you really should be looking for is any kind of content that has been rendered before session_start
has been called. This method should be the second line of code in your application:
<?php
session_start();
/* rest of site */
"headers already sent" this means that a script outputs to browser something (a space, a character or a BOM element)
make sure your includes files do not echo anything.
If that is verified and you still get the message, then i guess it's a BOM element (usually in utf-8 encoded documents/pages)