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,
- Output Statements:
You might be having an echo, printf output statements before the header that would cause this issue.
- Unwanted Blank Spaces :
There should be no blank lines or whitespaces spaces before or after the <php and ?> tags.
- File Format :
Make sure that the file format is UTF-8.
- Include files :
You might be having an include() to include a PHP page that may contain header redirects.
Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!