ID: 16170
Updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
Status: Open
-Bug Type: Apache related
+Bug Type: Filesystem function related
Operating System: w2k
PHP Version: 4.1.2
New Comment:
i think the problem is filesystme function related
Previous Comments:
------------------------------------------------------------------------
[2002-03-19 13:16:46] [EMAIL PROTECTED]
System:
w2k PROF
Apache/1.3.23
PHP 4.12
My Apache crashes with error code:
[Tue Mar 19 19:09:47 2002] [info] master_main: Child processed exited
prematurely. Restarting the child process.
[Tue Mar 19 19:09:47 2002] [info] Parent: Created child process 1080
[Tue Mar 19 19:09:47 2002] [info] Parent: Duplicating socket 484 and
sending it to child process 1080
[Tue Mar 19 19:09:47 2002] [info] BytesRead = 372 WSAProtocolInfo =
2006620
reason is:
$filename = "d:\\web\\kontakt\\test.jpg";
$fp = fopen($filename, "rb");
while(!feof($fp)) {
$attachment .= fread($fp, 1024);
}
fclose($fp);
OR:
$filename = "d:\\web\\kontakt\\test.jpg";
$fd = (fopen($filename, "rb"));
$attachment = addslashes(fread($fd, filesize($filename)));
fclose ($fd);
There's no problem on a Linux System.
What should i do?
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=16170&edit=1