'cannot modify header info' error - nytsua - Sep 5th, 2009
Warning: Cannot modify header information - headers already sent by (output started at [my php page]:5) in /home/content/w/p/i/wpinsgroup/html/orders/forms2/global/api/api.php on line 861
I'm getting the above error when trying to move from the first page to the second page of a form. I'm using the api. I have another form that is working perfecting. However I can't get this one to work. They are setup identically with the only difference being the form id.
This is a form that has been migrated from form tools 1 to 2
Any information or insight would be appreciated.
Thanks,
nytsua
RE: 'cannot modify header info' error - msaz87 - Sep 10th, 2009
(Sep 5th, 2009, 12:40 PM)nytsua Wrote: Warning: Cannot modify header information - headers already sent by (output started at [my php page]:5) in /home/content/w/p/i/wpinsgroup/html/orders/forms2/global/api/api.php on line 861
I'm getting the above error when trying to move from the first page to the second page of a form. I'm using the api. I have another form that is working perfecting. However I can't get this one to work. They are setup identically with the only difference being the form id.
This is a form that has been migrated from form tools 1 to 2
Any information or insight would be appreciated.
Thanks,
nytsua
I've gotten this error before but I can't remember exactly how I corrected it...
But I will tell you a few of the things I generally check for (which might not help at all.. but lets hope so...):
1. Make sure the PHP is above your <html> tag
2. You may need to visit your thanks page to reset the sessions
Could you post the entire code of your page to have a better look?
RE: 'cannot modify header info' error - nytsua - Oct 31st, 2009
Just to follow up. I tried what was suggested in the above post but never got it to work. I unfortunately didn't have time to figure it out but had to get the forms up and working. As soon as I split them up into their own php pages everything worked fine.
Thanks for the suggestions.
Nytsua
RE: 'cannot modify header info' error - msaz87 - Nov 1st, 2009
Quote:Just to follow up. I tried what was suggested in the above post but never got it to work. I unfortunately didn't have time to figure it out but had to get the forms up and working. As soon as I split them up into their own php pages everything worked fine.
Thanks for the suggestions.
Nytsua
Sorry the suggestion didn't work out, but glad you figured it out! Without seeing the code it was just kind of a guess... but it's funny how things will kind of just start working as you move things about.
RE: 'cannot modify header info' error - BlogWalker - Aug 20th, 2012
Hello,
I have following errors during adding form:
Code: Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/klient.dhosting.pl/logistics/logistics.dkonto.pl/public_html/psml/new/kongres2012/rejestracja/example01.php:1) in /home/klient.dhosting.pl/logistics/logistics.dkonto.pl/public_html/psml/new/kongres2012/rejestracja/formtools/global/api/api.php on line 1585
Warning: Cannot modify header information - headers already sent by (output started at /home/klient.dhosting.pl/logistics/logistics.dkonto.pl/public_html/psml/new/kongres2012/rejestracja/example01.php:1) in /home/klient.dhosting.pl/logistics/logistics.dkonto.pl/public_html/psml/new/kongres2012/rejestracja/formtools/global/api/api.php on line 1586
Warning: Cannot modify header information - headers already sent by (output started at /home/klient.dhosting.pl/logistics/logistics.dkonto.pl/public_html/psml/new/kongres2012/rejestracja/example01.php:1) in /home/klient.dhosting.pl/logistics/logistics.dkonto.pl/public_html/psml/new/kongres2012/rejestracja/formtools/global/api/api.php on line 1587
After clicking submit button additional error showed
Code: Warning: Cannot modify header information - headers already sent by (output started at /home/klient.dhosting.pl/logistics/logistics.dkonto.pl/public_html/psml/new/kongres2012/rejestracja/example01.php:1) in /home/klient.dhosting.pl/logistics/logistics.dkonto.pl/public_html/psml/new/kongres2012/rejestracja/formtools/global/api/api.php on line 881
I have tested it on complex and simple form:
example01.php
PHP Code: <?php require_once("formtools/global/api/api.php"); $g_api_debug = true $fields = ft_api_init_form_page("", "test"); //$fields = ft_api_init_form_page(7, "initialize"); $params = array( "submit_button" => "sendguess", "next_page" => "example02.php", "form_data" => $_POST, "finalize" => true ); ft_api_process_form($params);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>Vipcontest Guess Form</title> </head>
<body> <form name="example01" id="example01" action="<?php echo $_SERVER["PHP_SELF"]?>" method="POST"> <!--p>id <input type="text" name="id" id="id" /> </p--> <p>First Name <input type="text" name="fname" id="fname" /> </p> <p>Last Name <input type="text" name="lname" id="lname" /> </p> <!--p>City <input type="text" name="city" id="city" /> </p> <p>Email <input type="text" name="email" id="email" /> </p> <p>First Guess <input type="text" name="guess1" id="guess1" /> </p> <p>Second Guess <input type="text" name="guess2" id="guess2" /> </p> <p>Third Guess <input type="text" name="guess3" id="guess3" /> </p> <p>Last Guess Time <input type="text" name="modified" id="modified" /> </p> <p>I.P. Adress <input type="text" name="ip" id="ip" /> </p> <p>Password <input type="text" name="password" id="password" /> </p--> <p> </p> <p>Submit <input type="submit" name="sendguess" id="sendguess" value="submit" /> </p> </form> </body> </html>
and
example02.php
PHP Code: <?php require_once('formtools/global/api/api.php');
$fields = ft_api_init_form_page(7); ft_api_clear_form_sessions(); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>VipContest Thanks</title> </head>
<body> Hey, thanks!
</body> </html>
Anyone can help?
I cann not add form...
RE: 'cannot modify header info' error - msaz87 - Aug 20th, 2012
(Aug 20th, 2012, 12:24 PM)BlogWalker Wrote: Hello,
I have following errors during adding form:
Code: Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/klient.dhosting.pl/logistics/logistics.dkonto.pl/public_html/psml/new/kongres2012/rejestracja/example01.php:1) in /home/klient.dhosting.pl/logistics/logistics.dkonto.pl/public_html/psml/new/kongres2012/rejestracja/formtools/global/api/api.php on line 1585
Warning: Cannot modify header information - headers already sent by (output started at /home/klient.dhosting.pl/logistics/logistics.dkonto.pl/public_html/psml/new/kongres2012/rejestracja/example01.php:1) in /home/klient.dhosting.pl/logistics/logistics.dkonto.pl/public_html/psml/new/kongres2012/rejestracja/formtools/global/api/api.php on line 1586
Warning: Cannot modify header information - headers already sent by (output started at /home/klient.dhosting.pl/logistics/logistics.dkonto.pl/public_html/psml/new/kongres2012/rejestracja/example01.php:1) in /home/klient.dhosting.pl/logistics/logistics.dkonto.pl/public_html/psml/new/kongres2012/rejestracja/formtools/global/api/api.php on line 1587
After clicking submit button additional error showed
Code: Warning: Cannot modify header information - headers already sent by (output started at /home/klient.dhosting.pl/logistics/logistics.dkonto.pl/public_html/psml/new/kongres2012/rejestracja/example01.php:1) in /home/klient.dhosting.pl/logistics/logistics.dkonto.pl/public_html/psml/new/kongres2012/rejestracja/formtools/global/api/api.php on line 881
I have tested it on complex and simple form:
example01.php
PHP Code: <?php require_once("formtools/global/api/api.php"); $g_api_debug = true $fields = ft_api_init_form_page("", "test"); //$fields = ft_api_init_form_page(7, "initialize"); $params = array( "submit_button" => "sendguess", "next_page" => "example02.php", "form_data" => $_POST, "finalize" => true ); ft_api_process_form($params);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>Vipcontest Guess Form</title> </head>
<body> <form name="example01" id="example01" action="<?php echo $_SERVER["PHP_SELF"]?>" method="POST"> <!--p>id <input type="text" name="id" id="id" /> </p--> <p>First Name <input type="text" name="fname" id="fname" /> </p> <p>Last Name <input type="text" name="lname" id="lname" /> </p> <!--p>City <input type="text" name="city" id="city" /> </p> <p>Email <input type="text" name="email" id="email" /> </p> <p>First Guess <input type="text" name="guess1" id="guess1" /> </p> <p>Second Guess <input type="text" name="guess2" id="guess2" /> </p> <p>Third Guess <input type="text" name="guess3" id="guess3" /> </p> <p>Last Guess Time <input type="text" name="modified" id="modified" /> </p> <p>I.P. Adress <input type="text" name="ip" id="ip" /> </p> <p>Password <input type="text" name="password" id="password" /> </p--> <p> </p> <p>Submit <input type="submit" name="sendguess" id="sendguess" value="submit" /> </p> </form> </body> </html>
and
example02.php
PHP Code: <?php require_once('formtools/global/api/api.php');
$fields = ft_api_init_form_page(7); ft_api_clear_form_sessions(); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>VipContest Thanks</title> </head>
<body> Hey, thanks!
</body> </html>
Anyone can help?
I cann not add form...
What's on lines 1585, 1586 and 1587 of the api.php file?
RE: 'cannot modify header info' error - BlogWalker - Aug 20th, 2012
Hello,
api.php this is internal FormTools file.
Lines 1585, 1586 & 1587:
PHP Code: session_start(); header("Cache-control: private"); header("Content-Type: text/html; charset=$g_api_header_charset");
RE: 'cannot modify header info' error - michatmaster7 - Sep 5th, 2013
Because I seem to run into this a lot. I think Expression Web is randomly adding a BOM to the start of some of my PHP files. To fix, open the file in Notepad++, convert to UTF8 without BOM and save the file. Refresh the file in your publishing folder and publish up to server. This does work, when done correctly, I promise. I just spent another hour on this.
Further reading: http://board.phpbuilder.com/showthread.php?10310794-RESOLVED-Warning-session_start%28%29-Cannot-send-session-cookie-headers-already-sent/
RE: 'cannot modify header info' error - Ben_Edmund - Jan 17th, 2021
Do not change the header's information because it is creating false. If you will change the header then pages cannot send the data from page 1 to 2 on https://www.bestdissertation.com/buy-term-paper.html so must try to put only one header and modify the information only on the pages.
RE: 'cannot modify header info' error - Erna Huels - Jan 19th, 2022
|