PDA

View Full Version : Strange header error



mqcarpenter
04-21-2006, 07:19 AM
The installation said it went fine, but when I try to access the admin/index.php page, I get this error:



Notice: Undefined variable: HTTP_SESSION_VARS in XXX\admin\libsecure.php on line 30

Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at XXX\admin\libsecure.php:30) in XXX\include\class.sessions.php on line 29

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at XXX\admin\libsecure.php:30) in XXX\include\class.sessions.php on line 29

Warning: Cannot modify header information - headers already sent by (output started at XXX\admin\libsecure.php:30) in XXX\admin\common.php on line 46

TurnkeyAdmin
04-21-2006, 01:39 PM
You need to turn Notices off. This is a setting standard with default PHP installs. Open the PHP.ini and change the value of error_reporting to "E_ALL & ~E_NOTICE"

mqcarpenter
04-27-2006, 03:06 PM
Thank you!

TurnkeyAdmin
04-27-2006, 04:50 PM
Your welcome