PDA

View Full Version : Error Message in Heading when uploaded to server


glozinski107205
06-18-2009, 12:30 PM
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/creati2e/public_html/users_EmailPW.php:1) in /home/creati2e/public_html/WA_ValidationToolkit/WAVT_ValidatedForm_PHP.php on line 3

Ray Borduin
06-18-2009, 12:44 PM
what is on user_emailpw.php on line 1?

glozinski107205
06-18-2009, 01:03 PM
what is on user_emailpw.php on line 1?
<?php require_once("WA_Globals/WA_Globals.php"); ?>

This is another one...
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/creati2e/public_html/users_Profile.php:1) in /home/creati2e/public_html/WA_ValidationToolkit/WAVT_ValidatedForm_PHP.php on line 3

Warning: Cannot modify header information - headers already sent by (output started at /home/creati2e/public_html/users_Profile.php:1) in /home/creati2e/public_html/users_Profile.php on line 154
HELP!!!! Thanks

Ray Borduin
06-18-2009, 01:08 PM
sounds like you might have a blank line in your Globals file... or a space on that line before or after the globals reference.

glozinski107205
06-18-2009, 01:45 PM
sounds like you might have a blank line in your Globals file... or a space on that line before or after the globals reference.
Any other suggestions as I checked the globals page and it seems fine. I seem to be clitching on the users_profile page as well when you update or verify on this page.
Thanks

Ray Borduin
06-18-2009, 03:07 PM
The error:

headers already sent (output started at /home/creati2e/public_html/users_Profile.php:1)

means that the code on line 1 of that page is somehow adding text outside of a php code chunk usually that is what "headers already sent" means.... you can probably comment out the code on:

/WAVT_ValidatedForm_PHP.php on line 3

that would probably be a quick fix.