ID: 14855
User updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
Status: Open
Bug Type: Reproducible crash
Operating System: Windows NT 4.0 (SP6)
PHP Version: 4.0.6
New Comment:
Some comments and one correction:
1. The Server is an IIS, Version _4_
2. I've now installed PHP 4.1.1 and the problem remains.
3. I'm using the SAPI-Module. When using php.exe the error
changes to an allocation error (and the webserver does not
crash):
"FATAL: emalloc(): Unable to allocate -11967191 bytes"
Previous Comments:
------------------------------------------------------------------------
[2002-01-04 13:36:23] [EMAIL PROTECTED]
Configuration: PHP 4.0.6 on a Windows NT System with IIS 3
Calling mail() with an "Cc:"-headerline in the "additional_headers"
(4th) argument
results in an crash of the php module and the webserver. If the
"Cc:"-string is
commented out, everything works fine.
Error: "PHP has encountered an Access Violation at 0177B474"
Script:
<?php
setlocale ("LC_TIME", "");
$recp = "[EMAIL PROTECTED]";
$subject = "Test";
$body = "Test\n";
$EMail="[EMAIL PROTECTED]";
if ( mail($recp . $cc, $subject, $body , "Cc: [EMAIL PROTECTED]\n" ) )
{
print "Mail ok!";
} else {
print "No mail today!";
};
?>
------------------------------------------------------------------------
Edit this bug report at http://bugs.php.net/?id=14855&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]