|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2001-02-06 08:30 UTC] kaiser at 3points dot de
i coding a skin engine @ pixelcore.com and use template to parse it. I open this file with
$fp = fopen("http://....",'r');
while....
but if i forget to close this like and more that 20 users pars this skin i got some error messeages on screen.
Zend Stack crashed at xxx.c line 42 or so.
Regards Kaiser
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 05:00:01 2025 UTC |
Ok, to code my shit i used $fp = fopen("http://weburl"); but i forgotten to close the handler with fclose($fp). SO i tested and tested my script and now... pl0nk my apache crached and i found in error log Zend Stack crashed at xxx.c line 42. I tested it again and i found ~20 httpd proccesses with ~ 15mb per proccess. Maybe i can post some code.