Wordpress Themes - WP Forum at BFA
There will be no more development for Atahualpa (or any other theme), and no support. Also no new registrations. I turned off the donation system. I may turn the forum to read only if it gets abused for spam. Unfortunately I have no time for the forum or the themes. Thanks a lot to the people who helped in all these years, especially Larry and of course: Paul. Take care and stay healthy -- Flynn, Atahualpa developer, Sep 2021

Wordpress Themes - WP Forum at BFA » WordPress Themes » Atahualpa 3 Wordpress theme » Center area post/pages »

Cannot modify header information


 
Prev Previous Post   Next Post Next
  #1  
Old Oct 9, 2011, 08:14 PM
prathod
 
7 posts · Sep 2011
Cannot modify header information

Hello,

I am adding user login and authentication to my website.

I am using following code in checklogin.php file:

try {
login($username, $password);
session_start();
$_SESSION['valid_user'] = $username;
header("Location: webpage1");
}catch (Exception $e){
header("Location: webpage2");
}


I am using login method to validate userid and password from database. After successful login the user goes to webpage1.

At webpage1, before displaying the content I am trying to verify - if the user really logged in. Just to make sure that someone should not access the webpage2 without proper authentication. Therefore, I am adding below code at the start of webpage1.

<phpcode>
<?php
session_start();
if(!session_is_registered(valid_user)){
header("Location: invalid login wbpage");
}
?>
</phpcode>


However, I am getting below error:

Warning:Cannot modify header information - headers already sent by (output started at /home/foldername/websitename/wp-includes/link-template.php:1203) in /home/foldername/websitename/wp-content/plugins/pluginfolder/page.php on line 4

After reading some posts before, I removed any space at the end of page where ?> is present. But still not working.

Can you please help me with this?

Thanks in Advance !
 

Bookmarks



Similar Threads
Thread Thread Starter Forum Replies Last Post
Warning: Cannot modify header information - headers already sent by ... bruno-d-horse New Versions, & Updating 5 Mar 31, 2010 02:29 AM
Proverbial Cannot modify header information error billy1234 Header configuration & styling 1 Mar 26, 2010 06:30 AM
Adding contact information to the header? Igor Header configuration & styling 2 Nov 5, 2009 03:27 PM
Warning: Cannot modify header information - headers already sent by Stepien Header configuration & styling 4 May 8, 2009 07:50 AM


All times are GMT -6. The time now is 05:47 AM.


Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.