Jump to content

Domain/site Visibility Problem


maicol07

Recommended Posts

Somewhere on your page, you have send something back to the client (meaning you used an "echo" for example).

This causes PHP to send out the headers to the client.

 

Then you are most likely tried to start a session, which results in an error that you see.

Session_starts needs to set a cookie containing the session number in the headers, but it can't since the headers were already sent.

 

This could be fixed by putting session_start at the very beginning of your script.

Link to comment
Share on other sites

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.   Paste as plain text instead

  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...