PHP Warning: Cannot modify header information - headers already sent

Warning: Cannot modify header information - 
headers already sent by (output started at /php/homepage.php:124)
 in /php/homepage.php on line 145

This is a most common type of error's that once may get in PHP pages with header functions, let's see reasons that could cause this issue and how to fix it,

  1. Output Statements:

    You might be having an echo, printf output statements before the header that would cause this issue.

  2. Unwanted Blank Spaces :

    There should be no blank lines or whitespaces spaces before or after the <php and ?> tags.

  3. File Format :

    Make sure that the file format is UTF-8.

  4. Include files :

    You might be having an include() to include a PHP page that may contain header redirects.

Comments & Discussion

Facing issues? Have questions? Post them here! We're happy to help!