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

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

ashebrian
Forum Contributor
Posts: 103
Joined: Sat Feb 02, 2008 8:01 pm

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

Post 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??
Post Reply