|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2003-02-10 05:30 UTC] stuart at myrddraal dot demon dot co dot uk
Here's the information reported by Windows: AppName: php.exe AppVer: 4.3.0.0 ModName: msvcrt.dll ModVer: 7.0.2600.1106 Offset: 00033e05 I have reproduced the crash on two machines - one Intel, one AMD, both running XP Pro. I have a tarball which reproduces the crash. Happy to make it available to a PHP maintainer. Also happy to install a debugging build of PHP, if someone can make one available, to capture more information. Crash only happens when all the following circumstances are true: 1) Passing XML/XSL as strings through $args array into xslt_process If Sablotron is told to process files on disk instead, no crash occurs. 2) The same running instance of PHP has been used to process a large number of XML/XSL files. Number varies from a few hundred to a few thousand. You can take the individual XML/XSL pair being processed at the time of the crash, and Sablotron can process them just fine on their own. 3) Using Sablotron to perform XSL processing. Calling a command-line processor, or driving one via the Java Extension, results in no crash at all. Best regards, Stu PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 18:00:02 2025 UTC |
I have actually had the same problem on linux. Debian, 2.4 kernel, Apache 1.3.26-1.1, PHP 4.1.2-6 (these are all from debian packages) by default, there are no changes for the php.ini file for php4-xslt (sablotron) install. This results in "Call to undefined function" errors. If i try to do: dl('xslt.so'); I get: [notice] child pid 7797 exit signal Segmentation fault (11) many times for each attempt to run the php script (this is the sample script provided on the xslt_create document page) When I add the following to php.ini extension: extension=xslt.so I get the same error whenever I try to run this XSLT script.