Page 2 of 2

Re: Small error in php mail....taken to designed error page

Posted: Tue Mar 04, 2008 2:59 pm
by ashebrian
Thats some piece of code Chris ...... maybe i should be doing php for a few years to know that. It sure makes life easier.

I used it on something else in processProduct.php and got this error:
Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at C:\Inetpub\vhosts\eeee.com\httpdocs\admin\product\processProduct.php:3) in C:\Inetpub\vhosts\eeee.com\httpdocs\library\config.php on line 7

Fatal error: Maximum execution time of 30 seconds exceeded in C:\Inetpub\vhosts\eeee.com\httpdocs\library\config.php on line 10
also have it in config.php:

Code: Select all

<?php
ini_set('display_errors', 'On');
//ob_start("ob_gzhandler");
error_reporting(E_ALL);
 
// start the session
session_start();
Do you know what that means??