|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2005-11-02 15:31 UTC] bke15 at gmx dot de
Description: ------------ I am using com functions in PHP5 very frequent. While I created a new COM Object via : $xslDom = new COM( "MSXML2.FreethreadedDOMDocument.4.0" ); $xslDom->Load($XSLFile); i get sometimes a server crash. I can't reproduce it, but if i reload the page frequently the crash occurs some of each 10 requests. Versions 5.0.5 and 5.0.4 do the job very fine. Reproduce code: --------------- $xslDom = new COM( "MSXML2.FreethreadedDOMDocument.4.0" ); $xslDom->Load($XSLFile); Actual result: -------------- Server Crash - the process exit code was '0xc0000005'. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 04 10:00:01 2025 UTC |
I'm getting this crash every time on WinXP SP1, PHP 5.1 release, IIS 5.1 (PWS) The line of code that does it in: $oCapicom = new COM("CAPICOM.EncryptedData"); IMarv