Jump to content

Recommended Posts

:confused:

Hi!

I'm not a very experienced PHPer.

 

I keep getting this error...

Warning: Cannot modify header information - headers already sent by (output started at /home/content/j/2/6/j26183102/html/referral.php:11) in /home/content/j/2/6/j26183102/html/referral.php on line 295

 

Any suggestions? It works on one server but not my customers godaddy hosting site.

 

[attachment deleted by admin]

Link to comment
https://forums.phpfreaks.com/topic/217011-header-location-problem/
Share on other sites

The very first thing in that script is html markup. That markup unconditionally gets sent to the browser immediately when the script loads. Any attempt to send any headers after that will fail and generate that error.

The error message tells you where the OUTPUT is occurring AT (or where the end of the output is at) that is causing the problem. Fixing this would involve eliminating that output or changing the logic to move the statement using a header() so that it is before any output is sent.

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.