|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2011-12-19 02:29 UTC] missiontcomputers at hotmail dot com
Description: ------------ Crash when reaching over 1000 requests. This has been causing me for nearly 2 years now. Thread 4 - System ID 3472 Entry point msvcr90!_endthreadex+6f Create time 19/12/2011 02:07:51 Time spent in user mode 0 Days 0:0:7.20 Time spent in kernel mode 0 Days 0:0:5.756 Function Arg 1 Arg 2 Arg 3 Source php5ts!zend_register_internal_class_ex+b87 03bfab78 63f0eb94 01b63b78 php5ts!_efree+2e 01b63b78 05c50a20 63f13e97 php5ts!_zval_ptr_dtor+54 05c509ec 05c509c8 044fe9c0 php5ts!zend_hash_destroy+27 05bc48b0 03bcfa68 72ba1201 php5ts!zend_object_std_dtor+2b 044fe9c0 03bcfa68 000000e0 php_mysqli!php_clear_mysql+d1 044fe9c0 03bcfa68 00000000 php5ts!zend_objects_store_free_object_storage+9c 03c0d2a4 03bcfa68 71113b4e php5ts!shutdown_executor+2fe 03bcfa68 03bcfa68 63e8cc2e php5ts!zend_deactivate+91 03bcfa68 03bcfa68 00000000 php5ts!php_request_shutdown+31f 00000000 00000006 00b398a0 php5apache2_2!zm_info_apache+1801 0370abd8 0370abd8 00000000 libhttpd!ap_run_handler+28 0370abd8 0370abd8 0370abd8 libhttpd!ap_invoke_handler+be 00976ae8 00b849f8 01f5fefc libhttpd!ap_die+28e 0370abd8 00000000 00b39c30 libhttpd!ap_psignature+13d2 00b849f8 00b849f8 00b849f8 libhttpd!ap_run_process_connection+28 00b849f8 009808a8 01f5ff44 libhttpd!ap_process_connection+33 00b849f8 00b848a0 00000000 libhttpd!ap_regkey_value_remove+e3e 00b849f0 498c7afb 00000000 msvcr90!_endthreadex+44 00000000 01f5ff94 7525ed6c msvcr90!_endthreadex+d8 01c3cb08 01f5ffd4 770937f5 kernel32!BaseThreadInitThunk+e 01c3cb08 614562c5 00000000 ntdll!__RtlUserThreadStart+70 710d345e 01c3cb08 00000000 ntdll!_RtlUserThreadStart+1b 710d345e 01c3cb08 00000000 PHP5TS!ZEND_REGISTER_INTERNAL_CLASS_EX+B87In httpd__PID__7580__Date__12_19_2011__Time_02_18_45AM__736__Second_Chance_Exceptio n_C0000005.dmp the assembly instruction at php5ts!zend_register_internal_class_ex+b87 in C:\WampDeveloper\Components\Php\php5ts.dll from The PHP Group has caused an access violation exception (0xC0000005) when trying to read from memory location 0x49de7bf0 on thread 4 Module Information Image Name: C:\WampDeveloper\Components\Php\php5ts.dll Symbol Type: PDB Base address: 0x63e80000 Time Stamp: Tue Aug 23 10:59:32 2011 Checksum: 0x005b0c63 Comments: COM DLL: False Company Name: The PHP Group ISAPIExtension: False File Description: PHP Script Interpreter ISAPIFilter: False File Version: 5.3.8 Managed DLL: False Internal Name: PHP Script Interpreter VB DLL: False Legal Copyright: Copyright © 1997-2010 The PHP Group Loaded Image Name: php5ts.dll Legal Trademarks: PHP Mapped Image Name: Original filename: php5ts.dll Module name: php5ts Private Build: Single Threaded: False Product Name: PHP Module Size: 5.76 MBytes Product Version: 5.3.8 Symbol File Name: C:\php-debug-pack-5.3.8-Win32-VC9-x86\php5ts.pdb Special Build: & Test script: --------------- None available sorry. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 15:00:01 2025 UTC |
This is the simplest test case I could manage. In my production environment, the SoapClient doesn't always throw an error. <?php try { $x = new SoapClient("non-existent.wsdl",array("exceptions" => 1)); } catch (SoapFault $E) { echo $E->faultstring; } $doc = new DOMDocument(); $doc->loadHTML("<html><body>Test<br></body></html>"); echo $doc->saveHTML(); //require "require.php"; gzcompress(serialize(var_export("<html><body>Test<br></body></html>", true)),6); $restart = time()+5; ?> As reported, I am using ext that are provided with PHP. php.ini, httpd.conf or a zip of the entire problem environment is available upon request.