Warning: session_start() [function.session-start]: Cannot send session cookie – headers already sent by (output started at /home/username/public_html/file.php:14) in /home/username/public_html/top.php on line 4
This generally happens when you have an empty or white space at the start or the end of your php files, Please check your php files and remove any spaces at the start and the end of the document and the problem should go away.
Or
Try placing this at the top of your page:
<? ob_start(); ?>
Then at the bottom of the page place this line of code:
<? ob_flush(); ?>
