Jump to content

Recommended Posts

Posted

Your account was created about 4 hours ago. It's normal for sites to not be visible for up to 24 hours from account creation. Let us know if your site still isn't visible after 24 hours. Until then you can log into your cPanel at http://heliohost.org/ and start to get things set up.

Posted

Yes, I see.

If I can ask, why there is an error on my index.php page?

Posted

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.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...