bradgrafelman wrote:Really? If it's just the output of a simple phpinfo() call
I found the item, but for some reason when I change the value it is not recorded in the phpInfo.php file
log_errors = On [Security]
; This directive complements the above one. Any errors that occur during the
; execution of your script will be logged (typically, to your server's error log,
; but can be configured in several ways). Along with setting display_errors to off,
; this setup gives you the ability to fully understand what may have gone wrong,
; without exposing any sensitive information to remote users.
The above is the excert from the php.ini file and it clearly shows that the item has been engaged. I stopped and restarted my II services and even restarted the computer but still the item doesn't not show on the phpInfo.php file.
What gives?
I readup on mail from the link you provided. I grabed their example and tried posting that one with no results.
<?php
$to = 'example@example.com';
$subject = 'email test';
$message = 'email test';
$headers = 'From: 'example@example.net' . "\r\n" .
'Reply-To: example@example.net' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
?>
Is there anything else that you can suggest?π
Thank You
Kevin