MrBillybob Posted July 28, 2007 Share Posted July 28, 2007 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 https://forums.phpfreaks.com/topic/62128-solved-redirect-help/ Share on other sites More sharing options...
lightningstrike Posted July 28, 2007 Share Posted July 28, 2007 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 https://forums.phpfreaks.com/topic/62128-solved-redirect-help/#findComment-309298 Share on other sites More sharing options...
tibberous Posted July 28, 2007 Share Posted July 28, 2007 Hehe. Link to comment https://forums.phpfreaks.com/topic/62128-solved-redirect-help/#findComment-309325 Share on other sites More sharing options...
MrBillybob Posted July 28, 2007 Author Share Posted July 28, 2007 I searched before this post and dint see that sorry. Link to comment https://forums.phpfreaks.com/topic/62128-solved-redirect-help/#findComment-309411 Share on other sites More sharing options...
jitesh Posted July 28, 2007 Share Posted July 28, 2007 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 https://forums.phpfreaks.com/topic/62128-solved-redirect-help/#findComment-309414 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.