Home › Forums › Back End › Warning: Cannot modify header information – headers already sent by › Reply To: Warning: Cannot modify header information – headers already sent by
June 12, 2017 at 12:42 pm
#255818
Participant
Without a sample of the actual code where this error is occurring, it’s impossible to pinpoint the exact issue.
Generally-speaking though, this means that you are outputting something before the header
declaration. A good example of this is a PHP script that has code for setting a cookie
after the same script has already used echo
to output information.