sprint10s Posted June 9, 2009 Share Posted June 9, 2009 First off i want to say thanks to Nullachtfuffzehn for all the help, this error below is more a nuicense than anthing, everything works and the the description shows up, but when i click on the invoices in the admin panel i get the error below but everything still works. Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /home/content/m/a/x/maximracing/html/09catalog/admin/invoice.php:2) in /home/content/m/a/x/maximracing/html/09catalog/admin/includes/functions/sessions.php on line 102 below is the block of code from sessions.php from lines 98 through 116 if ($sane_session_id == false) { tep_redirect(tep_href_link(FILENAME_DEFAULT, '', 'NONSSL', false)); } return session_start(); } function tep_session_register($variable) { if (PHP_VERSION < 4.3) { return session_register($variable); } else { if (isset($GLOBALS[$variable])) { $_SESSION[$variable] =& $GLOBALS[$variable]; } else { $_SESSION[$variable] = null; } } return false; } Link to comment Share on other sites More sharing options...
Nullachtfuffzehn Posted June 9, 2009 Share Posted June 9, 2009 http://www.oscommerce.info/kb/osCommerce/Common_Problems/15 should show you the solution. Link to comment Share on other sites More sharing options...
sprint10s Posted June 9, 2009 Author Share Posted June 9, 2009 checked the file it did have a space after the last php tag but i still get the same error the actual line its showing the error is the return session_start(); Link to comment Share on other sites More sharing options...
Nullachtfuffzehn Posted June 9, 2009 Share Posted June 9, 2009 Did you also check the language file for invoice.php for whitespaces? Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.