Jump to content

[SOLVED] redirect help


MrBillybob

Recommended Posts

Hello,

 

      Whenever i try to redirect the page (code below) i get this:

 

'Warning: Cannot modify header information - headers already sent by (output started at html/eve/index.php:25) in html/eve/index.php on line 153'

 

 

header('Location: /index.php');

Link to comment
Share on other sites

Please read the topic on the PHP Help Forum designated

"HEADER ERRORS - READ HERE BEFORE POSTING THEM".

 

Your error is that you are attempting to redirect after outputting html/data to the page. You avoid this by using

ob_start() at the top of the page and ob_flush() at the bottom or just prevent the html from being outputted before the header.

Link to comment
Share on other sites

Check you haven't write some charactes by echo or print before header.

 

or

 

Check in included files there is not space after completeting php close tags.

 

or

 

write error_reporting(0); in first line of the file.

 

 

 

Link to comment
Share on other sites

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.