View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0000923 | Xdebug | public | 2013-02-13 07:46 | 2013-05-22 03:51 | |
Reporter | dizyart | Assigned To | derick | ||
Priority | normal | Severity | minor | Reproducibility | always |
Status | closed | Resolution | fixed | ||
Platform | x86_64, Intel i5 | OS | Windows 7 | OS Version | Ultimate SP1 |
Product Version | 2.2.1 | ||||
Target Version | 2.2.3 | Fixed in Version | 2.2.3 | ||
Summary | 0000923: copy of issue 0000883, Xdebug + Netbeans + ext/MongoDB crash on MongoCursor instance | ||||
Description | Copy of http://bugs.xdebug.org/view.php?id=883. When running a "Debug Project" in NetBeans, whenever MongoCursor object is instantiated, | ||||
Steps To Reproduce | 1.Setup NetBeans to debug with xdebug. Alternatively | ||||
Additional Information | ALL additional information (very exhaustive list) is in the uploaded test file. Also found on https://gist.github.com/dizyart/4942925 | ||||
Tags | mongodb, netbeans, socket exception | ||||
Attached Files | test.php.txt (118,593 bytes)
<pre> <?php $connection = new MongoClient(); $collection = $connection->database->test; $collection->drop(); $collection->batchInsert([ ['a' => 'b'], ['a' => 'b'] ] ); ###################### /** * @var MongoCursor */ $cursor = $collection->find(); // <- THIS LINE THROWS an Exception. $collection->find() returns an instance of MongoCursor /** also tried this: */ $cursor2 = new MongoCursor($connection, 'database.test'); ###################### $result = iterator_to_array($cursor); foreach ( $result as $id => $value ) { echo "id: ".strval($value['_id']); xdebug_var_dump( $value ); } xdebug_var_dump($cursor); xdebug_var_dump($cursor2); unset($cursor); unset($cursor2); $breakPointAfterDestroyingCursors = true; //Skipping to this line as a breakpoint from the begginning of the file DOES NOT THROW AN EXCEPTION ?> #### INDEX #### * description * Versions * php.ini (relevant settings) * - mongo settings * - xdebug settings * NetBeans IDE LOG * xdebug LOG When running a "Debug Project" in NetBeans, whenever MongoCursor object is instantiated, NetBeans throws a SocketException after ~1.5 seconds. If the instances are unset and the exception-throwing step is skipped (with a breakpoint), the debugging session continues normally. #### Versions #### PHP 5.4.6 Xdebug 2.2.1 Server version: Apache/2.2.23 (Win32) NetBeans Version: NetBeans IDE 7.2.1 (Build 201210100934) Java: 1.7.0_13; Java HotSpot(TM) Client VM 23.7-b01 System: Windows 7 version 6.1 running on x86 (64); Cp1250; en_US (nb) MongoDB PHP extension: 1.3.1 #### PHP .ini #### extension = php_mongo-1.3.1-5.4-vc9.dll zend_extension = php_xdebug-2.2.1-5.4-vc9.dll xdebug.remote_enable = on xdebug.remote_handler=dbgp xdebug.remote_host=localhost xdebug.remote_port=9000 output_buffering = Off #### $ php -i | grep mongo -i #### mongo MongoDB Support => enabled mongo.allow_empty_keys => 0 => 0 mongo.chunk_size => 262144 => 262144 mongo.cmd => $ => $ mongo.default_host => localhost => localhost mongo.default_port => 27017 => 27017 mongo.is_master_interval => no value => no value mongo.long_as_object => 0 => 0 mongo.native_long => 0 => 0 mongo.ping_interval => no value => no value mongo.utf8 => 1 => 1 #### NetBeans settings #### Tools/Options/PHP/Debugging/... * debugger port: 9000 * session ID: netbeans-xdebug * stop at first line: true * watches and balloon evaluation: false * Maximum depth of structures: disabled * Maximum number of children: disabled * Show requested URLs: false * Show Debugger console: false /nbproject/... /private/.private.properties >>> copy.src.files=false copy.src.target= index.file=test.php run.as=LOCAL url=http://cake/xdebug_mongo_crash/ /project.properties >>> include.path=${php.global.include.path} php.version=PHP_54 source.encoding=UTF-8 src.dir=. tags.asp=false tags.short=true web.root=. #### $ php -i | grep xdebug -i #### xdebug xdebug support => enabled xdebug.auto_trace => Off => Off xdebug.cli_color => 0 => 0 xdebug.collect_assignments => Off => Off xdebug.collect_includes => On => On xdebug.collect_params => 0 => 0 xdebug.collect_return => Off => Off xdebug.collect_vars => Off => Off xdebug.coverage_enable => On => On xdebug.default_enable => On => On xdebug.dump.COOKIE => no value => no value xdebug.dump.ENV => no value => no value xdebug.dump.FILES => no value => no value xdebug.dump.GET => no value => no value xdebug.dump.POST => no value => no value xdebug.dump.REQUEST => no value => no value xdebug.dump.SERVER => no value => no value xdebug.dump.SESSION => no value => no value xdebug.dump_globals => On => On xdebug.dump_once => On => On xdebug.dump_undefined => Off => Off xdebug.extended_info => On => On xdebug.file_link_format => no value => no value xdebug.idekey => no value => no value xdebug.max_nesting_level => 100 => 100 xdebug.overload_var_dump => On => On xdebug.profiler_aggregate => Off => Off xdebug.profiler_append => Off => Off xdebug.profiler_enable => Off => Off xdebug.profiler_enable_trigger => Off => Off xdebug.profiler_output_dir => \ => \ xdebug.profiler_output_name => cachegrind.out.%p => cachegrind.out.%p xdebug.remote_autostart => Off => Off xdebug.remote_connect_back => Off => Off xdebug.remote_cookie_expire_time => 3600 => 3600 xdebug.remote_enable => On => On xdebug.remote_handler => dbgp => dbgp xdebug.remote_host => localhost => localhost xdebug.remote_log => no value => no value xdebug.remote_mode => req => req xdebug.remote_port => 9000 => 9000 xdebug.scream => Off => Off xdebug.show_exception_trace => Off => Off xdebug.show_local_vars => Off => Off xdebug.show_mem_delta => Off => Off xdebug.trace_enable_trigger => Off => Off xdebug.trace_format => 0 => 0 xdebug.trace_options => 0 => 0 xdebug.trace_output_dir => \ => \ xdebug.trace_output_name => trace.%c => trace.%c xdebug.var_display_max_children => 128 => 128 xdebug.var_display_max_data => 512 => 512 xdebug.var_display_max_depth => 3 => 3 ########## IDE LOG ######### INFO [org.netbeans.modules.php.dbgp.URIMapper]: class org.netbeans.modules.php.dbgp.URIMapper$1: C:\somepath\CakeCode\shop\app\Plugin\Products\Test\Case\Model\ProductDetailTest.php -> file:///C:/somepath/CakeCode/shop/app/Plugin/Products/Test/Case/Model/ProductDetailTest.php INFO [org.netbeans.modules.php.dbgp.URIMapper]: class org.netbeans.modules.php.dbgp.URIMapper$1: C:\somepath\CakeCode\shop\lib\Cake\Model\Model.php -> file:///C:/somepath/CakeCode/shop/lib/Cake/Model/Model.php INFO [org.netbeans.modules.php.dbgp.URIMapper]: class org.netbeans.modules.php.dbgp.URIMapper$1: C:\somepath\CakeCode\shop\lib\Cake\Model\Datasource\DboSource.php -> file:///C:/somepath/CakeCode/shop/lib/Cake/Model/Datasource/DboSource.php INFO [org.netbeans.modules.php.dbgp.URIMapper]: class org.netbeans.modules.php.dbgp.URIMapper$1: C:\somepath\CakeCode\shop\lib\Cake\Model\Datasource\DboSource.php -> file:///C:/somepath/CakeCode/shop/lib/Cake/Model/Datasource/DboSource.php INFO [org.netbeans.modules.php.dbgp.URIMapper]: class org.netbeans.modules.php.dbgp.URIMapper$1: C:\somepath\CakeCode\shop\app\Plugin\Mongodb\Test\Case\Model\MongodbAssociationsTest.php -> file:///C:/somepath/CakeCode/shop/app/Plugin/Mongodb/Test/Case/Model/MongodbAssociationsTest.php INFO [org.netbeans.modules.php.dbgp.URIMapper]: class org.netbeans.modules.php.dbgp.URIMapper$1: file:///C:/somepath/CakeCode/xdebug_mongo_crash/test.php -> C:\somepath\CakeCode\xdebug_mongo_crash\test.php INFO [org.netbeans.modules.php.dbgp.URIMapper]: class org.netbeans.modules.php.dbgp.URIMapper$1: file:///C:/somepath/CakeCode/xdebug_mongo_crash/test.php -> C:\somepath\CakeCode\xdebug_mongo_crash\test.php INFO [org.netbeans.modules.php.dbgp.URIMapper]: class org.netbeans.modules.php.dbgp.URIMapper$1: file:///C:/somepath/CakeCode/xdebug_mongo_crash/test.php -> C:\somepath\CakeCode\xdebug_mongo_crash\test.php INFO [org.netbeans.modules.php.dbgp.URIMapper]: class org.netbeans.modules.php.dbgp.URIMapper$1: file:///C:/somepath/CakeCode/xdebug_mongo_crash/test.php -> C:\somepath\CakeCode\xdebug_mongo_crash\test.php INFO [org.netbeans.modules.php.dbgp.URIMapper]: class org.netbeans.modules.php.dbgp.URIMapper$1: file:///C:/somepath/CakeCode/xdebug_mongo_crash/test.php -> C:\somepath\CakeCode\xdebug_mongo_crash\test.php INFO [org.netbeans.modules.php.dbgp.URIMapper]: class org.netbeans.modules.php.dbgp.URIMapper$1: file:///C:/somepath/CakeCode/xdebug_mongo_crash/test.php -> C:\somepath\CakeCode\xdebug_mongo_crash\test.php INFO [org.netbeans.modules.php.dbgp.URIMapper]: class org.netbeans.modules.php.dbgp.URIMapper$1: file:///C:/somepath/CakeCode/xdebug_mongo_crash/test.php -> C:\somepath\CakeCode\xdebug_mongo_crash\test.php INFO [org.netbeans.modules.php.dbgp.DebugSession] java.net.SocketException: Connection reset at java.net.SocketInputStream.read(Unknown Source) at java.net.SocketInputStream.read(Unknown Source) at java.net.SocketInputStream.read(Unknown Source) at org.netbeans.modules.php.dbgp.packets.DbgpMessage.getDataSize(DbgpMessage.java:297) at org.netbeans.modules.php.dbgp.packets.DbgpMessage.create(DbgpMessage.java:126) at org.netbeans.modules.php.dbgp.DebugSession.receiveData(DebugSession.java:265) at org.netbeans.modules.php.dbgp.DebugSession.sendCommands(DebugSession.java:213) [catch] at org.netbeans.modules.php.dbgp.DebugSession.run(DebugSession.java:143) at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source) at java.util.concurrent.FutureTask.run(Unknown Source) at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) at java.lang.Thread.run(Unknown Source) ####### XDEBUG LOG ###### #### THIS REQUEST IS WHEN SKIPPING TO THE BREAKPOINT (everything OK)### #### START SUCCESSFUL REQUEST #### Log opened at 2013-02-13 07:34:53 I: Connecting to configured address/port: localhost:9000. I: Connected to client. :-) -> <init xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" fileuri="file:///C:/srv/CakeCode/xdebug_mongo_crash/test.php" language="PHP" protocol_version="1.0" appid="5564" idekey="netbeans-xdebug"><engine version="2.2.1"><![CDATA[Xdebug]]></engine><author><![CDATA[Derick Rethans]]></author><url><![CDATA[http://xdebug.org]]></url><copyright><![CDATA[Copyright (c) 2002-2012 by Derick Rethans]]></copyright></init> <- feature_set -i 66 -n show_hidden -v 1 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="feature_set" transaction_id="66" feature="show_hidden" success="1"></response> <- feature_set -i 67 -n max_depth -v 3 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="feature_set" transaction_id="67" feature="max_depth" success="1"></response> <- feature_set -i 68 -n max_children -v 30 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="feature_set" transaction_id="68" feature="max_children" success="1"></response> <- feature_get -i 69 -n max_data -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="feature_get" transaction_id="69" feature_name="max_data" supported="1"><![CDATA[1024]]></response> <- step_into -i 70 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="step_into" transaction_id="70" status="break" reason="ok"><xdebug:message filename="file:///C:/srv/CakeCode/xdebug_mongo_crash/test.php" lineno="2"></xdebug:message></response> <- stack_get -i 71 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="stack_get" transaction_id="71"><stack where="{main}" level="0" type="file" filename="file:///C:/srv/CakeCode/xdebug_mongo_crash/test.php" lineno="2"></stack></response> <- context_names -i 72 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_names" transaction_id="72"><context name="Locals" id="0"></context><context name="Superglobals" id="1"></context></response> <- context_get -i 73 -c 0 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="73" context="0"><property name="$breakPointAfterDestroyingCursors" fullname="$breakPointAfterDestroyingCursors" type="uninitialized"></property><property name="$collection" fullname="$collection" type="uninitialized"></property><property name="$connection" fullname="$connection" type="uninitialized"></property><property name="$cursor" fullname="$cursor" type="uninitialized"></property><property name="$cursor2" fullname="$cursor2" type="uninitialized"></property><property name="$id" fullname="$id" type="uninitialized"></property><property name="$result" fullname="$result" type="uninitialized"></property><property name="$value" fullname="$value" type="uninitialized"></property></response> <- context_get -i 74 -c 1 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="74" context="1"><property name="$_COOKIE" fullname="$_COOKIE" address="69837920" type="array" children="1" numchildren="3" page="0" pagesize="30"><property name="rememberMe" fullname="$_COOKIE['rememberMe']" address="69838848" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="User" fullname="$_COOKIE['rememberMe']['User']" address="69839024" type="string" size="77" encoding="base64"><![CDATA[UTJGclpRPT0uQU5rUHY5bzFLK1IreWs3Rk9VMWltcW5jWjZ3WE9FdXpnNGFHamhiMy90K2ZOUkpwNEgwaTZHNlpaZHNUQzBDMVF3PT0=]]></property></property><property name="toolbarDisplay" fullname="$_COOKIE['toolbarDisplay']" address="69839248" type="string" size="4" encoding="base64"><![CDATA[c2hvdw==]]></property><property name="migrationsDisplay" fullname="$_COOKIE['migrationsDisplay']" address="69839504" type="string" size="4" encoding="base64"><![CDATA[c2hvdw==]]></property></property><property name="$_ENV" fullname="$_ENV" address="69839760" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_FILES" fullname="$_FILES" address="69839360" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_GET" fullname="$_GET" address="69836928" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="XDEBUG_SESSION_START" fullname="$_GET['XDEBUG_SESSION_START']" address="69837400" type="string" size="15" encoding="base64"><![CDATA[bmV0YmVhbnMteGRlYnVn]]></property></property><property name="$_POST" fullname="$_POST" address="69837200" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_REQUEST" fullname="$_REQUEST" address="69839896" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="XDEBUG_SESSION_START" fullname="$_REQUEST['XDEBUG_SESSION_START']" address="69837400" type="string" size="15" encoding="base64"><![CDATA[bmV0YmVhbnMteGRlYnVn]]></property></property><property name="$_SERVER" fullname="$_SERVER" address="69840144" type="array" children="1" numchildren="32" page="0" pagesize="30"><property name="HTTP_HOST" fullname="$_SERVER['HTTP_HOST']" address="69840464" type="string" size="4" encoding="base64"><![CDATA[Y2FrZQ==]]></property><property name="HTTP_CONNECTION" fullname="$_SERVER['HTTP_CONNECTION']" address="69840736" type="string" size="10" encoding="base64"><![CDATA[a2VlcC1hbGl2ZQ==]]></property><property name="HTTP_ACCEPT" fullname="$_SERVER['HTTP_ACCEPT']" address="69841064" type="string" size="63" encoding="base64"><![CDATA[dGV4dC9odG1sLGFwcGxpY2F0aW9uL3hodG1sK3htbCxhcHBsaWNhdGlvbi94bWw7cT0wLjksKi8qO3E9MC44]]></property><property name="HTTP_USER_AGENT" fullname="$_SERVER['HTTP_USER_AGENT']" address="69841488" type="string" size="108" encoding="base64"><![CDATA[TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgNi4xOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjE3IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzI0LjAuMTMxMi41NyBTYWZhcmkvNTM3LjE3]]></property><property name="HTTP_ACCEPT_ENCODING" fullname="$_SERVER['HTTP_ACCEPT_ENCODING']" address="69841784" type="string" size="17" encoding="base64"><![CDATA[Z3ppcCxkZWZsYXRlLHNkY2g=]]></property><property name="HTTP_ACCEPT_LANGUAGE" fullname="$_SERVER['HTTP_ACCEPT_LANGUAGE']" address="69842016" type="string" size="14" encoding="base64"><![CDATA[ZW4tVVMsZW47cT0wLjg=]]></property><property name="HTTP_ACCEPT_CHARSET" fullname="$_SERVER['HTTP_ACCEPT_CHARSET']" address="69842296" type="string" size="30" encoding="base64"><![CDATA[SVNPLTg4NTktMSx1dGYtODtxPTAuNywqO3E9MC4z]]></property><property name="HTTP_COOKIE" fullname="$_SERVER['HTTP_COOKIE']" address="69842640" type="string" size="155" encoding="base64"><![CDATA[cmVtZW1iZXJNZVtVc2VyXT1RMkZyWlElM0QlM0QuQU5rUHY5bzFLJTJCUiUyQnlrN0ZPVTFpbXFuY1o2d1hPRXV6ZzRhR2poYjMlMkZ0JTJCZk5SSnA0SDBpNkc2Wlpkc1RDMEMxUXclM0QlM0Q7IHRvb2xiYXJEaXNwbGF5PXNob3c7IG1pZ3JhdGlvbnNEaXNwbGF5PXNob3c=]]></property><property name="PATH" fullname="$_SERVER['PATH']" address="69843480" type="string" size="276" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMjtDOlxXaW5kb3dzO0M6XFdpbmRvd3NcU3lzdGVtMzJcV2JlbTtDOlxXaW5kb3dzXFN5c3RlbTMyXFdpbmRvd3NQb3dlclNoZWxsXHYxLjBcO2M6XFByb2dyYW0gRmlsZXMgKHg4NilcQVRJIFRlY2hub2xvZ2llc1xBVEkuQUNFXENvcmUtU3RhdGljO0M6XFByb2dyYW0gRmlsZXMgKHg4NilcUXVpY2tUaW1lXFFUU3lzdGVtXDtDOlxzcnZccGhwXDslVVNFUl9QQVRIJTtDOlxzcnZcbXlzcWxcYmluO0M6XFByb2dyYW0gRmlsZXMgKHg4NilcV2luTWVyZ2U7]]></property><property name="SystemRoot" fullname="$_SERVER['SystemRoot']" address="69843776" type="string" size="10" encoding="base64"><![CDATA[QzpcV2luZG93cw==]]></property><property name="COMSPEC" fullname="$_SERVER['COMSPEC']" address="69843952" type="string" size="27" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMlxjbWQuZXhl]]></property><property name="PATHEXT" fullname="$_SERVER['PATHEXT']" address="69844256" type="string" size="53" encoding="base64"><![CDATA[LkNPTTsuRVhFOy5CQVQ7LkNNRDsuVkJTOy5WQkU7LkpTOy5KU0U7LldTRjsuV1NIOy5NU0M=]]></property><property name="WINDIR" fullname="$_SERVER['WINDIR']" address="69844456" type="string" size="10" encoding="base64"><![CDATA[QzpcV2luZG93cw==]]></property><property name="SERVER_SIGNATURE" fullname="$_SERVER['SERVER_SIGNATURE']" address="69844688" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="SERVER_SOFTWARE" fullname="$_SERVER['SERVER_SOFTWARE']" address="69845016" type="string" size="61" encoding="base64"><![CDATA[QXBhY2hlLzIuMi4yMyAoV2luMzIpIG1vZF9zc2wvMi4yLjIzIE9wZW5TU0wvMC45Ljh4IFBIUC81LjQuNg==]]></property><property name="SERVER_NAME" fullname="$_SERVER['SERVER_NAME']" address="69845232" type="string" size="4" encoding="base64"><![CDATA[Y2FrZQ==]]></property><property name="SERVER_ADDR" fullname="$_SERVER['SERVER_ADDR']" address="69845592" type="string" size="9" encoding="base64"><![CDATA[MTI3LjAuMC4x]]></property><property name="SERVER_PORT" fullname="$_SERVER['SERVER_PORT']" address="69845936" type="string" size="2" encoding="base64"><![CDATA[ODA=]]></property><property name="REMOTE_ADDR" fullname="$_SERVER['REMOTE_ADDR']" address="69846160" type="string" size="9" encoding="base64"><![CDATA[MTI3LjAuMC4x]]></property><property name="DOCUMENT_ROOT" fullname="$_SERVER['DOCUMENT_ROOT']" address="69846392" type="string" size="15" encoding="base64"><![CDATA[Qzovc3J2L0Nha2VDb2Rl]]></property><property name="SERVER_ADMIN" fullname="$_SERVER['SERVER_ADMIN']" address="69846648" type="string" size="17" encoding="base64"><![CDATA[YWRtaW5AZXhhbXBsZS5jb20=]]></property><property name="SCRIPT_FILENAME" fullname="$_SERVER['SCRIPT_FILENAME']" address="69846952" type="string" size="43" encoding="base64"><![CDATA[Qzovc3J2L0Nha2VDb2RlL3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocA==]]></property><property name="REMOTE_PORT" fullname="$_SERVER['REMOTE_PORT']" address="69847168" type="string" size="5" encoding="base64"><![CDATA[NTA1NTA=]]></property><property name="GATEWAY_INTERFACE" fullname="$_SERVER['GATEWAY_INTERFACE']" address="69847416" type="string" size="7" encoding="base64"><![CDATA[Q0dJLzEuMQ==]]></property><property name="SERVER_PROTOCOL" fullname="$_SERVER['SERVER_PROTOCOL']" address="69847624" type="string" size="8" encoding="base64"><![CDATA[SFRUUC8xLjE=]]></property><property name="REQUEST_METHOD" fullname="$_SERVER['REQUEST_METHOD']" address="69847848" type="string" size="3" encoding="base64"><![CDATA[R0VU]]></property><property name="QUERY_STRING" fullname="$_SERVER['QUERY_STRING']" address="69848136" type="string" size="36" encoding="base64"><![CDATA[WERFQlVHX1NFU1NJT05fU1RBUlQ9bmV0YmVhbnMteGRlYnVn]]></property><property name="REQUEST_URI" fullname="$_SERVER['REQUEST_URI']" address="69848480" type="string" size="65" encoding="base64"><![CDATA[L3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocD9YREVCVUdfU0VTU0lPTl9TVEFSVD1uZXRiZWFucy14ZGVidWc=]]></property><property name="SCRIPT_NAME" fullname="$_SERVER['SCRIPT_NAME']" address="69848736" type="string" size="28" encoding="base64"><![CDATA[L3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocA==]]></property><property name="PHP_SELF" fullname="$_SERVER['PHP_SELF']" address="69848992" type="string" size="28" encoding="base64"><![CDATA[L3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocA==]]></property></property></response> <- breakpoint_set -i 75 -t line -s enabled -f file:///C:/srv/CakeCode/xdebug_mongo_crash/test.php -n 37 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="breakpoint_set" transaction_id="75" state="enabled" id="55640001"></response> <- run -i 76 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="run" transaction_id="76" status="break" reason="ok"><xdebug:message filename="file:///C:/srv/CakeCode/xdebug_mongo_crash/test.php" lineno="37"></xdebug:message></response> <- stack_get -i 77 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="stack_get" transaction_id="77"><stack where="{main}" level="0" type="file" filename="file:///C:/srv/CakeCode/xdebug_mongo_crash/test.php" lineno="37"></stack></response> <- context_names -i 78 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_names" transaction_id="78"><context name="Locals" id="0"></context><context name="Superglobals" id="1"></context></response> <- context_get -i 79 -c 0 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="79" context="0"><property name="$breakPointAfterDestroyingCursors" fullname="$breakPointAfterDestroyingCursors" type="uninitialized"></property><property name="$collection" fullname="$collection" address="69855792" type="object" classname="MongoCollection" children="1" numchildren="2" page="0" pagesize="30"><property name="w" fullname="$collection->w" facet="public" address="69862288" type="int"><![CDATA[1]]></property><property name="wtimeout" fullname="$collection->wtimeout" facet="public" address="69862336" type="int"><![CDATA[10000]]></property></property><property name="$connection" fullname="$connection" address="69855472" type="object" classname="MongoClient" children="1" numchildren="4" page="0" pagesize="30"><property name="connected" fullname="$connection->connected" facet="public" address="69855536" type="bool"><![CDATA[1]]></property><property name="status" fullname="$connection->status" facet="public" address="69855568" type="null"></property><property name="server" fullname="$connection->server" facet="protected" address="69855600" type="null"></property><property name="persistent" fullname="$connection->persistent" facet="protected" address="69855632" type="null"></property></property><property name="$cursor" fullname="$cursor" type="uninitialized"></property><property name="$cursor2" fullname="$cursor2" type="uninitialized"></property><property name="$id" fullname="$id" address="69863784" type="string" size="24" encoding="base64"><![CDATA[NTExYjQyMmJiNThhOTBmYzAyMDAwMDAx]]></property><property name="$result" fullname="$result" address="69862736" type="array" children="1" numchildren="2" page="0" pagesize="30"><property name="511b422bb58a90fc02000000" fullname="$result['511b422bb58a90fc02000000']" address="69863304" type="array" children="1" numchildren="2" page="0" pagesize="30"><property name="_id" fullname="$result['511b422bb58a90fc02000000']['_id']" address="69862768" type="object" classname="MongoId" children="1" numchildren="1" page="0" pagesize="30"><property name="$id" fullname="$result['511b422bb58a90fc02000000']['_id']->$id" facet="public" address="69855848" type="string" size="24" encoding="base64"><![CDATA[NTExYjQyMmJiNThhOTBmYzAyMDAwMDAw]]></property></property><property name="a" fullname="$result['511b422bb58a90fc02000000']['a']" address="69864480" type="string" size="1" encoding="base64"><![CDATA[Yg==]]></property></property><property name="511b422bb58a90fc02000001" fullname="$result['511b422bb58a90fc02000001']" address="69855664" type="array" children="1" numchildren="2" page="0" pagesize="30"><property name="_id" fullname="$result['511b422bb58a90fc02000001']['_id']" address="69864400" type="object" classname="MongoId" children="1" numchildren="1" page="0" pagesize="30"><property name="$id" fullname="$result['511b422bb58a90fc02000001']['_id']->$id" facet="public" address="69864064" type="string" size="24" encoding="base64"><![CDATA[NTExYjQyMmJiNThhOTBmYzAyMDAwMDAx]]></property></property><property name="a" fullname="$result['511b422bb58a90fc02000001']['a']" address="69864128" type="string" size="1" encoding="base64"><![CDATA[Yg==]]></property></property></property><property name="$value" fullname="$value" address="69855664" type="array" children="1" numchildren="2" page="0" pagesize="30"><property name="_id" fullname="$value['_id']" address="69864400" type="object" classname="MongoId" children="1" numchildren="1" page="0" pagesize="30"><property name="$id" fullname="$value['_id']->$id" facet="public" address="69864064" type="string" size="24" encoding="base64"><![CDATA[NTExYjQyMmJiNThhOTBmYzAyMDAwMDAx]]></property></property><property name="a" fullname="$value['a']" address="69864128" type="string" size="1" encoding="base64"><![CDATA[Yg==]]></property></property></response> <- context_get -i 80 -c 1 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="80" context="1"><property name="$_COOKIE" fullname="$_COOKIE" address="69837920" type="array" children="1" numchildren="3" page="0" pagesize="30"><property name="rememberMe" fullname="$_COOKIE['rememberMe']" address="69838848" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="User" fullname="$_COOKIE['rememberMe']['User']" address="69839024" type="string" size="77" encoding="base64"><![CDATA[UTJGclpRPT0uQU5rUHY5bzFLK1IreWs3Rk9VMWltcW5jWjZ3WE9FdXpnNGFHamhiMy90K2ZOUkpwNEgwaTZHNlpaZHNUQzBDMVF3PT0=]]></property></property><property name="toolbarDisplay" fullname="$_COOKIE['toolbarDisplay']" address="69839248" type="string" size="4" encoding="base64"><![CDATA[c2hvdw==]]></property><property name="migrationsDisplay" fullname="$_COOKIE['migrationsDisplay']" address="69839504" type="string" size="4" encoding="base64"><![CDATA[c2hvdw==]]></property></property><property name="$_ENV" fullname="$_ENV" address="69839760" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_FILES" fullname="$_FILES" address="69839360" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_GET" fullname="$_GET" address="69836928" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="XDEBUG_SESSION_START" fullname="$_GET['XDEBUG_SESSION_START']" address="69837400" type="string" size="15" encoding="base64"><![CDATA[bmV0YmVhbnMteGRlYnVn]]></property></property><property name="$_POST" fullname="$_POST" address="69837200" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_REQUEST" fullname="$_REQUEST" address="69839896" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="XDEBUG_SESSION_START" fullname="$_REQUEST['XDEBUG_SESSION_START']" address="69837400" type="string" size="15" encoding="base64"><![CDATA[bmV0YmVhbnMteGRlYnVn]]></property></property><property name="$_SERVER" fullname="$_SERVER" address="69840144" type="array" children="1" numchildren="32" page="0" pagesize="30"><property name="HTTP_HOST" fullname="$_SERVER['HTTP_HOST']" address="69840464" type="string" size="4" encoding="base64"><![CDATA[Y2FrZQ==]]></property><property name="HTTP_CONNECTION" fullname="$_SERVER['HTTP_CONNECTION']" address="69840736" type="string" size="10" encoding="base64"><![CDATA[a2VlcC1hbGl2ZQ==]]></property><property name="HTTP_ACCEPT" fullname="$_SERVER['HTTP_ACCEPT']" address="69841064" type="string" size="63" encoding="base64"><![CDATA[dGV4dC9odG1sLGFwcGxpY2F0aW9uL3hodG1sK3htbCxhcHBsaWNhdGlvbi94bWw7cT0wLjksKi8qO3E9MC44]]></property><property name="HTTP_USER_AGENT" fullname="$_SERVER['HTTP_USER_AGENT']" address="69841488" type="string" size="108" encoding="base64"><![CDATA[TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgNi4xOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjE3IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzI0LjAuMTMxMi41NyBTYWZhcmkvNTM3LjE3]]></property><property name="HTTP_ACCEPT_ENCODING" fullname="$_SERVER['HTTP_ACCEPT_ENCODING']" address="69841784" type="string" size="17" encoding="base64"><![CDATA[Z3ppcCxkZWZsYXRlLHNkY2g=]]></property><property name="HTTP_ACCEPT_LANGUAGE" fullname="$_SERVER['HTTP_ACCEPT_LANGUAGE']" address="69842016" type="string" size="14" encoding="base64"><![CDATA[ZW4tVVMsZW47cT0wLjg=]]></property><property name="HTTP_ACCEPT_CHARSET" fullname="$_SERVER['HTTP_ACCEPT_CHARSET']" address="69842296" type="string" size="30" encoding="base64"><![CDATA[SVNPLTg4NTktMSx1dGYtODtxPTAuNywqO3E9MC4z]]></property><property name="HTTP_COOKIE" fullname="$_SERVER['HTTP_COOKIE']" address="69842640" type="string" size="155" encoding="base64"><![CDATA[cmVtZW1iZXJNZVtVc2VyXT1RMkZyWlElM0QlM0QuQU5rUHY5bzFLJTJCUiUyQnlrN0ZPVTFpbXFuY1o2d1hPRXV6ZzRhR2poYjMlMkZ0JTJCZk5SSnA0SDBpNkc2Wlpkc1RDMEMxUXclM0QlM0Q7IHRvb2xiYXJEaXNwbGF5PXNob3c7IG1pZ3JhdGlvbnNEaXNwbGF5PXNob3c=]]></property><property name="PATH" fullname="$_SERVER['PATH']" address="69843480" type="string" size="276" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMjtDOlxXaW5kb3dzO0M6XFdpbmRvd3NcU3lzdGVtMzJcV2JlbTtDOlxXaW5kb3dzXFN5c3RlbTMyXFdpbmRvd3NQb3dlclNoZWxsXHYxLjBcO2M6XFByb2dyYW0gRmlsZXMgKHg4NilcQVRJIFRlY2hub2xvZ2llc1xBVEkuQUNFXENvcmUtU3RhdGljO0M6XFByb2dyYW0gRmlsZXMgKHg4NilcUXVpY2tUaW1lXFFUU3lzdGVtXDtDOlxzcnZccGhwXDslVVNFUl9QQVRIJTtDOlxzcnZcbXlzcWxcYmluO0M6XFByb2dyYW0gRmlsZXMgKHg4NilcV2luTWVyZ2U7]]></property><property name="SystemRoot" fullname="$_SERVER['SystemRoot']" address="69843776" type="string" size="10" encoding="base64"><![CDATA[QzpcV2luZG93cw==]]></property><property name="COMSPEC" fullname="$_SERVER['COMSPEC']" address="69843952" type="string" size="27" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMlxjbWQuZXhl]]></property><property name="PATHEXT" fullname="$_SERVER['PATHEXT']" address="69844256" type="string" size="53" encoding="base64"><![CDATA[LkNPTTsuRVhFOy5CQVQ7LkNNRDsuVkJTOy5WQkU7LkpTOy5KU0U7LldTRjsuV1NIOy5NU0M=]]></property><property name="WINDIR" fullname="$_SERVER['WINDIR']" address="69844456" type="string" size="10" encoding="base64"><![CDATA[QzpcV2luZG93cw==]]></property><property name="SERVER_SIGNATURE" fullname="$_SERVER['SERVER_SIGNATURE']" address="69844688" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="SERVER_SOFTWARE" fullname="$_SERVER['SERVER_SOFTWARE']" address="69845016" type="string" size="61" encoding="base64"><![CDATA[QXBhY2hlLzIuMi4yMyAoV2luMzIpIG1vZF9zc2wvMi4yLjIzIE9wZW5TU0wvMC45Ljh4IFBIUC81LjQuNg==]]></property><property name="SERVER_NAME" fullname="$_SERVER['SERVER_NAME']" address="69845232" type="string" size="4" encoding="base64"><![CDATA[Y2FrZQ==]]></property><property name="SERVER_ADDR" fullname="$_SERVER['SERVER_ADDR']" address="69845592" type="string" size="9" encoding="base64"><![CDATA[MTI3LjAuMC4x]]></property><property name="SERVER_PORT" fullname="$_SERVER['SERVER_PORT']" address="69845936" type="string" size="2" encoding="base64"><![CDATA[ODA=]]></property><property name="REMOTE_ADDR" fullname="$_SERVER['REMOTE_ADDR']" address="69846160" type="string" size="9" encoding="base64"><![CDATA[MTI3LjAuMC4x]]></property><property name="DOCUMENT_ROOT" fullname="$_SERVER['DOCUMENT_ROOT']" address="69846392" type="string" size="15" encoding="base64"><![CDATA[Qzovc3J2L0Nha2VDb2Rl]]></property><property name="SERVER_ADMIN" fullname="$_SERVER['SERVER_ADMIN']" address="69846648" type="string" size="17" encoding="base64"><![CDATA[YWRtaW5AZXhhbXBsZS5jb20=]]></property><property name="SCRIPT_FILENAME" fullname="$_SERVER['SCRIPT_FILENAME']" address="69846952" type="string" size="43" encoding="base64"><![CDATA[Qzovc3J2L0Nha2VDb2RlL3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocA==]]></property><property name="REMOTE_PORT" fullname="$_SERVER['REMOTE_PORT']" address="69847168" type="string" size="5" encoding="base64"><![CDATA[NTA1NTA=]]></property><property name="GATEWAY_INTERFACE" fullname="$_SERVER['GATEWAY_INTERFACE']" address="69847416" type="string" size="7" encoding="base64"><![CDATA[Q0dJLzEuMQ==]]></property><property name="SERVER_PROTOCOL" fullname="$_SERVER['SERVER_PROTOCOL']" address="69847624" type="string" size="8" encoding="base64"><![CDATA[SFRUUC8xLjE=]]></property><property name="REQUEST_METHOD" fullname="$_SERVER['REQUEST_METHOD']" address="69847848" type="string" size="3" encoding="base64"><![CDATA[R0VU]]></property><property name="QUERY_STRING" fullname="$_SERVER['QUERY_STRING']" address="69848136" type="string" size="36" encoding="base64"><![CDATA[WERFQlVHX1NFU1NJT05fU1RBUlQ9bmV0YmVhbnMteGRlYnVn]]></property><property name="REQUEST_URI" fullname="$_SERVER['REQUEST_URI']" address="69848480" type="string" size="65" encoding="base64"><![CDATA[L3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocD9YREVCVUdfU0VTU0lPTl9TVEFSVD1uZXRiZWFucy14ZGVidWc=]]></property><property name="SCRIPT_NAME" fullname="$_SERVER['SCRIPT_NAME']" address="69848736" type="string" size="28" encoding="base64"><![CDATA[L3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocA==]]></property><property name="PHP_SELF" fullname="$_SERVER['PHP_SELF']" address="69848992" type="string" size="28" encoding="base64"><![CDATA[L3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocA==]]></property></property></response> <- property_get -i 81 -n $breakPointAfterDestroyingCursors -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="property_get" transaction_id="81" status="break" reason="ok"><error code="300"><message><![CDATA[can not get property]]></message></error></response> <- step_over -i 82 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="step_over" transaction_id="82" status="break" reason="ok"><xdebug:message filename="file:///C:/srv/CakeCode/xdebug_mongo_crash/test.php" lineno="229"></xdebug:message></response> <- stack_get -i 83 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="stack_get" transaction_id="83"><stack where="{main}" level="0" type="file" filename="file:///C:/srv/CakeCode/xdebug_mongo_crash/test.php" lineno="229"></stack></response> <- context_names -i 84 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_names" transaction_id="84"><context name="Locals" id="0"></context><context name="Superglobals" id="1"></context></response> <- context_get -i 85 -c 0 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="85" context="0"><property name="$breakPointAfterDestroyingCursors" fullname="$breakPointAfterDestroyingCursors" address="69863704" type="bool"><![CDATA[1]]></property><property name="$collection" fullname="$collection" address="69855792" type="object" classname="MongoCollection" children="1" numchildren="2" page="0" pagesize="30"><property name="w" fullname="$collection->w" facet="public" address="69862288" type="int"><![CDATA[1]]></property><property name="wtimeout" fullname="$collection->wtimeout" facet="public" address="69862336" type="int"><![CDATA[10000]]></property></property><property name="$connection" fullname="$connection" address="69855472" type="object" classname="MongoClient" children="1" numchildren="4" page="0" pagesize="30"><property name="connected" fullname="$connection->connected" facet="public" address="69855536" type="bool"><![CDATA[1]]></property><property name="status" fullname="$connection->status" facet="public" address="69855568" type="null"></property><property name="server" fullname="$connection->server" facet="protected" address="69855600" type="null"></property><property name="persistent" fullname="$connection->persistent" facet="protected" address="69855632" type="null"></property></property><property name="$cursor" fullname="$cursor" type="uninitialized"></property><property name="$cursor2" fullname="$cursor2" type="uninitialized"></property><property name="$id" fullname="$id" address="69863784" type="string" size="24" encoding="base64"><![CDATA[NTExYjQyMmJiNThhOTBmYzAyMDAwMDAx]]></property><property name="$result" fullname="$result" address="69862736" type="array" children="1" numchildren="2" page="0" pagesize="30"><property name="511b422bb58a90fc02000000" fullname="$result['511b422bb58a90fc02000000']" address="69863304" type="array" children="1" numchildren="2" page="0" pagesize="30"><property name="_id" fullname="$result['511b422bb58a90fc02000000']['_id']" address="69862768" type="object" classname="MongoId" children="1" numchildren="1" page="0" pagesize="30"><property name="$id" fullname="$result['511b422bb58a90fc02000000']['_id']->$id" facet="public" address="69855848" type="string" size="24" encoding="base64"><![CDATA[NTExYjQyMmJiNThhOTBmYzAyMDAwMDAw]]></property></property><property name="a" fullname="$result['511b422bb58a90fc02000000']['a']" address="69864480" type="string" size="1" encoding="base64"><![CDATA[Yg==]]></property></property><property name="511b422bb58a90fc02000001" fullname="$result['511b422bb58a90fc02000001']" address="69855664" type="array" children="1" numchildren="2" page="0" pagesize="30"><property name="_id" fullname="$result['511b422bb58a90fc02000001']['_id']" address="69864400" type="object" classname="MongoId" children="1" numchildren="1" page="0" pagesize="30"><property name="$id" fullname="$result['511b422bb58a90fc02000001']['_id']->$id" facet="public" address="69864064" type="string" size="24" encoding="base64"><![CDATA[NTExYjQyMmJiNThhOTBmYzAyMDAwMDAx]]></property></property><property name="a" fullname="$result['511b422bb58a90fc02000001']['a']" address="69864128" type="string" size="1" encoding="base64"><![CDATA[Yg==]]></property></property></property><property name="$value" fullname="$value" address="69855664" type="array" children="1" numchildren="2" page="0" pagesize="30"><property name="_id" fullname="$value['_id']" address="69864400" type="object" classname="MongoId" children="1" numchildren="1" page="0" pagesize="30"><property name="$id" fullname="$value['_id']->$id" facet="public" address="69864064" type="string" size="24" encoding="base64"><![CDATA[NTExYjQyMmJiNThhOTBmYzAyMDAwMDAx]]></property></property><property name="a" fullname="$value['a']" address="69864128" type="string" size="1" encoding="base64"><![CDATA[Yg==]]></property></property></response> <- context_get -i 86 -c 1 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="86" context="1"><property name="$_COOKIE" fullname="$_COOKIE" address="69837920" type="array" children="1" numchildren="3" page="0" pagesize="30"><property name="rememberMe" fullname="$_COOKIE['rememberMe']" address="69838848" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="User" fullname="$_COOKIE['rememberMe']['User']" address="69839024" type="string" size="77" encoding="base64"><![CDATA[UTJGclpRPT0uQU5rUHY5bzFLK1IreWs3Rk9VMWltcW5jWjZ3WE9FdXpnNGFHamhiMy90K2ZOUkpwNEgwaTZHNlpaZHNUQzBDMVF3PT0=]]></property></property><property name="toolbarDisplay" fullname="$_COOKIE['toolbarDisplay']" address="69839248" type="string" size="4" encoding="base64"><![CDATA[c2hvdw==]]></property><property name="migrationsDisplay" fullname="$_COOKIE['migrationsDisplay']" address="69839504" type="string" size="4" encoding="base64"><![CDATA[c2hvdw==]]></property></property><property name="$_ENV" fullname="$_ENV" address="69839760" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_FILES" fullname="$_FILES" address="69839360" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_GET" fullname="$_GET" address="69836928" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="XDEBUG_SESSION_START" fullname="$_GET['XDEBUG_SESSION_START']" address="69837400" type="string" size="15" encoding="base64"><![CDATA[bmV0YmVhbnMteGRlYnVn]]></property></property><property name="$_POST" fullname="$_POST" address="69837200" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_REQUEST" fullname="$_REQUEST" address="69839896" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="XDEBUG_SESSION_START" fullname="$_REQUEST['XDEBUG_SESSION_START']" address="69837400" type="string" size="15" encoding="base64"><![CDATA[bmV0YmVhbnMteGRlYnVn]]></property></property><property name="$_SERVER" fullname="$_SERVER" address="69840144" type="array" children="1" numchildren="32" page="0" pagesize="30"><property name="HTTP_HOST" fullname="$_SERVER['HTTP_HOST']" address="69840464" type="string" size="4" encoding="base64"><![CDATA[Y2FrZQ==]]></property><property name="HTTP_CONNECTION" fullname="$_SERVER['HTTP_CONNECTION']" address="69840736" type="string" size="10" encoding="base64"><![CDATA[a2VlcC1hbGl2ZQ==]]></property><property name="HTTP_ACCEPT" fullname="$_SERVER['HTTP_ACCEPT']" address="69841064" type="string" size="63" encoding="base64"><![CDATA[dGV4dC9odG1sLGFwcGxpY2F0aW9uL3hodG1sK3htbCxhcHBsaWNhdGlvbi94bWw7cT0wLjksKi8qO3E9MC44]]></property><property name="HTTP_USER_AGENT" fullname="$_SERVER['HTTP_USER_AGENT']" address="69841488" type="string" size="108" encoding="base64"><![CDATA[TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgNi4xOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjE3IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzI0LjAuMTMxMi41NyBTYWZhcmkvNTM3LjE3]]></property><property name="HTTP_ACCEPT_ENCODING" fullname="$_SERVER['HTTP_ACCEPT_ENCODING']" address="69841784" type="string" size="17" encoding="base64"><![CDATA[Z3ppcCxkZWZsYXRlLHNkY2g=]]></property><property name="HTTP_ACCEPT_LANGUAGE" fullname="$_SERVER['HTTP_ACCEPT_LANGUAGE']" address="69842016" type="string" size="14" encoding="base64"><![CDATA[ZW4tVVMsZW47cT0wLjg=]]></property><property name="HTTP_ACCEPT_CHARSET" fullname="$_SERVER['HTTP_ACCEPT_CHARSET']" address="69842296" type="string" size="30" encoding="base64"><![CDATA[SVNPLTg4NTktMSx1dGYtODtxPTAuNywqO3E9MC4z]]></property><property name="HTTP_COOKIE" fullname="$_SERVER['HTTP_COOKIE']" address="69842640" type="string" size="155" encoding="base64"><![CDATA[cmVtZW1iZXJNZVtVc2VyXT1RMkZyWlElM0QlM0QuQU5rUHY5bzFLJTJCUiUyQnlrN0ZPVTFpbXFuY1o2d1hPRXV6ZzRhR2poYjMlMkZ0JTJCZk5SSnA0SDBpNkc2Wlpkc1RDMEMxUXclM0QlM0Q7IHRvb2xiYXJEaXNwbGF5PXNob3c7IG1pZ3JhdGlvbnNEaXNwbGF5PXNob3c=]]></property><property name="PATH" fullname="$_SERVER['PATH']" address="69843480" type="string" size="276" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMjtDOlxXaW5kb3dzO0M6XFdpbmRvd3NcU3lzdGVtMzJcV2JlbTtDOlxXaW5kb3dzXFN5c3RlbTMyXFdpbmRvd3NQb3dlclNoZWxsXHYxLjBcO2M6XFByb2dyYW0gRmlsZXMgKHg4NilcQVRJIFRlY2hub2xvZ2llc1xBVEkuQUNFXENvcmUtU3RhdGljO0M6XFByb2dyYW0gRmlsZXMgKHg4NilcUXVpY2tUaW1lXFFUU3lzdGVtXDtDOlxzcnZccGhwXDslVVNFUl9QQVRIJTtDOlxzcnZcbXlzcWxcYmluO0M6XFByb2dyYW0gRmlsZXMgKHg4NilcV2luTWVyZ2U7]]></property><property name="SystemRoot" fullname="$_SERVER['SystemRoot']" address="69843776" type="string" size="10" encoding="base64"><![CDATA[QzpcV2luZG93cw==]]></property><property name="COMSPEC" fullname="$_SERVER['COMSPEC']" address="69843952" type="string" size="27" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMlxjbWQuZXhl]]></property><property name="PATHEXT" fullname="$_SERVER['PATHEXT']" address="69844256" type="string" size="53" encoding="base64"><![CDATA[LkNPTTsuRVhFOy5CQVQ7LkNNRDsuVkJTOy5WQkU7LkpTOy5KU0U7LldTRjsuV1NIOy5NU0M=]]></property><property name="WINDIR" fullname="$_SERVER['WINDIR']" address="69844456" type="string" size="10" encoding="base64"><![CDATA[QzpcV2luZG93cw==]]></property><property name="SERVER_SIGNATURE" fullname="$_SERVER['SERVER_SIGNATURE']" address="69844688" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="SERVER_SOFTWARE" fullname="$_SERVER['SERVER_SOFTWARE']" address="69845016" type="string" size="61" encoding="base64"><![CDATA[QXBhY2hlLzIuMi4yMyAoV2luMzIpIG1vZF9zc2wvMi4yLjIzIE9wZW5TU0wvMC45Ljh4IFBIUC81LjQuNg==]]></property><property name="SERVER_NAME" fullname="$_SERVER['SERVER_NAME']" address="69845232" type="string" size="4" encoding="base64"><![CDATA[Y2FrZQ==]]></property><property name="SERVER_ADDR" fullname="$_SERVER['SERVER_ADDR']" address="69845592" type="string" size="9" encoding="base64"><![CDATA[MTI3LjAuMC4x]]></property><property name="SERVER_PORT" fullname="$_SERVER['SERVER_PORT']" address="69845936" type="string" size="2" encoding="base64"><![CDATA[ODA=]]></property><property name="REMOTE_ADDR" fullname="$_SERVER['REMOTE_ADDR']" address="69846160" type="string" size="9" encoding="base64"><![CDATA[MTI3LjAuMC4x]]></property><property name="DOCUMENT_ROOT" fullname="$_SERVER['DOCUMENT_ROOT']" address="69846392" type="string" size="15" encoding="base64"><![CDATA[Qzovc3J2L0Nha2VDb2Rl]]></property><property name="SERVER_ADMIN" fullname="$_SERVER['SERVER_ADMIN']" address="69846648" type="string" size="17" encoding="base64"><![CDATA[YWRtaW5AZXhhbXBsZS5jb20=]]></property><property name="SCRIPT_FILENAME" fullname="$_SERVER['SCRIPT_FILENAME']" address="69846952" type="string" size="43" encoding="base64"><![CDATA[Qzovc3J2L0Nha2VDb2RlL3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocA==]]></property><property name="REMOTE_PORT" fullname="$_SERVER['REMOTE_PORT']" address="69847168" type="string" size="5" encoding="base64"><![CDATA[NTA1NTA=]]></property><property name="GATEWAY_INTERFACE" fullname="$_SERVER['GATEWAY_INTERFACE']" address="69847416" type="string" size="7" encoding="base64"><![CDATA[Q0dJLzEuMQ==]]></property><property name="SERVER_PROTOCOL" fullname="$_SERVER['SERVER_PROTOCOL']" address="69847624" type="string" size="8" encoding="base64"><![CDATA[SFRUUC8xLjE=]]></property><property name="REQUEST_METHOD" fullname="$_SERVER['REQUEST_METHOD']" address="69847848" type="string" size="3" encoding="base64"><![CDATA[R0VU]]></property><property name="QUERY_STRING" fullname="$_SERVER['QUERY_STRING']" address="69848136" type="string" size="36" encoding="base64"><![CDATA[WERFQlVHX1NFU1NJT05fU1RBUlQ9bmV0YmVhbnMteGRlYnVn]]></property><property name="REQUEST_URI" fullname="$_SERVER['REQUEST_URI']" address="69848480" type="string" size="65" encoding="base64"><![CDATA[L3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocD9YREVCVUdfU0VTU0lPTl9TVEFSVD1uZXRiZWFucy14ZGVidWc=]]></property><property name="SCRIPT_NAME" fullname="$_SERVER['SCRIPT_NAME']" address="69848736" type="string" size="28" encoding="base64"><![CDATA[L3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocA==]]></property><property name="PHP_SELF" fullname="$_SERVER['PHP_SELF']" address="69848992" type="string" size="28" encoding="base64"><![CDATA[L3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocA==]]></property></property></response> <- property_get -i 87 -n $breakPointAfterDestroyingCursors -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="property_get" transaction_id="87"><property name="$breakPointAfterDestroyingCursors" fullname="$breakPointAfterDestroyingCursors" address="69863704" type="bool"><![CDATA[1]]></property></response> <- run -i 88 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="run" transaction_id="88" status="stopping" reason="ok"></response> Log closed at 2013-02-13 07:35:33 #### END SUCCESSFUL REQUEST #### #### THIS REQUEST THROWS A SOCKET EXCEPTION #### #### START EXCEPTIONal REQUEST #### Log opened at 2013-02-13 07:36:16 I: Connecting to configured address/port: localhost:9000. I: Connected to client. :-) -> <init xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" fileuri="file:///C:/srv/CakeCode/xdebug_mongo_crash/test.php" language="PHP" protocol_version="1.0" appid="5564" idekey="netbeans-xdebug"><engine version="2.2.1"><![CDATA[Xdebug]]></engine><author><![CDATA[Derick Rethans]]></author><url><![CDATA[http://xdebug.org]]></url><copyright><![CDATA[Copyright (c) 2002-2012 by Derick Rethans]]></copyright></init> <- feature_set -i 89 -n show_hidden -v 1 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="feature_set" transaction_id="89" feature="show_hidden" success="1"></response> <- feature_set -i 90 -n max_depth -v 3 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="feature_set" transaction_id="90" feature="max_depth" success="1"></response> <- feature_set -i 91 -n max_children -v 30 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="feature_set" transaction_id="91" feature="max_children" success="1"></response> <- feature_get -i 92 -n max_data -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="feature_get" transaction_id="92" feature_name="max_data" supported="1"><![CDATA[1024]]></response> <- breakpoint_set -i 93 -t line -s enabled -f file:///C:/srv/CakeCode/xdebug_mongo_crash/test.php -n 37 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="breakpoint_set" transaction_id="93" state="enabled" id="55640002"></response> <- step_into -i 94 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="step_into" transaction_id="94" status="break" reason="ok"><xdebug:message filename="file:///C:/srv/CakeCode/xdebug_mongo_crash/test.php" lineno="2"></xdebug:message></response> <- stack_get -i 95 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="stack_get" transaction_id="95"><stack where="{main}" level="0" type="file" filename="file:///C:/srv/CakeCode/xdebug_mongo_crash/test.php" lineno="2"></stack></response> <- context_names -i 96 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_names" transaction_id="96"><context name="Locals" id="0"></context><context name="Superglobals" id="1"></context></response> <- context_get -i 97 -c 0 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="97" context="0"><property name="$breakPointAfterDestroyingCursors" fullname="$breakPointAfterDestroyingCursors" type="uninitialized"></property><property name="$collection" fullname="$collection" type="uninitialized"></property><property name="$connection" fullname="$connection" type="uninitialized"></property><property name="$cursor" fullname="$cursor" type="uninitialized"></property><property name="$cursor2" fullname="$cursor2" type="uninitialized"></property><property name="$id" fullname="$id" type="uninitialized"></property><property name="$result" fullname="$result" type="uninitialized"></property><property name="$value" fullname="$value" type="uninitialized"></property></response> <- context_get -i 98 -c 1 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="98" context="1"><property name="$_COOKIE" fullname="$_COOKIE" address="69837920" type="array" children="1" numchildren="4" page="0" pagesize="30"><property name="rememberMe" fullname="$_COOKIE['rememberMe']" address="69838880" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="User" fullname="$_COOKIE['rememberMe']['User']" address="69839056" type="string" size="77" encoding="base64"><![CDATA[UTJGclpRPT0uQU5rUHY5bzFLK1IreWs3Rk9VMWltcW5jWjZ3WE9FdXpnNGFHamhiMy90K2ZOUkpwNEgwaTZHNlpaZHNUQzBDMVF3PT0=]]></property></property><property name="toolbarDisplay" fullname="$_COOKIE['toolbarDisplay']" address="69839280" type="string" size="4" encoding="base64"><![CDATA[c2hvdw==]]></property><property name="migrationsDisplay" fullname="$_COOKIE['migrationsDisplay']" address="69839536" type="string" size="4" encoding="base64"><![CDATA[c2hvdw==]]></property><property name="XDEBUG_SESSION" fullname="$_COOKIE['XDEBUG_SESSION']" address="69839768" type="string" size="15" encoding="base64"><![CDATA[bmV0YmVhbnMteGRlYnVn]]></property></property><property name="$_ENV" fullname="$_ENV" address="69840056" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_FILES" fullname="$_FILES" address="69839920" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_GET" fullname="$_GET" address="69836928" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="XDEBUG_SESSION_START" fullname="$_GET['XDEBUG_SESSION_START']" address="69837400" type="string" size="15" encoding="base64"><![CDATA[bmV0YmVhbnMteGRlYnVn]]></property></property><property name="$_POST" fullname="$_POST" address="69837200" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_REQUEST" fullname="$_REQUEST" address="69840192" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="XDEBUG_SESSION_START" fullname="$_REQUEST['XDEBUG_SESSION_START']" address="69837400" type="string" size="15" encoding="base64"><![CDATA[bmV0YmVhbnMteGRlYnVn]]></property></property><property name="$_SERVER" fullname="$_SERVER" address="69840440" type="array" children="1" numchildren="33" page="0" pagesize="30"><property name="HTTP_HOST" fullname="$_SERVER['HTTP_HOST']" address="69840760" type="string" size="4" encoding="base64"><![CDATA[Y2FrZQ==]]></property><property name="HTTP_CONNECTION" fullname="$_SERVER['HTTP_CONNECTION']" address="69841008" type="string" size="10" encoding="base64"><![CDATA[a2VlcC1hbGl2ZQ==]]></property><property name="HTTP_CACHE_CONTROL" fullname="$_SERVER['HTTP_CACHE_CONTROL']" address="69841256" type="string" size="9" encoding="base64"><![CDATA[bWF4LWFnZT0w]]></property><property name="HTTP_ACCEPT" fullname="$_SERVER['HTTP_ACCEPT']" address="69841576" type="string" size="63" encoding="base64"><![CDATA[dGV4dC9odG1sLGFwcGxpY2F0aW9uL3hodG1sK3htbCxhcHBsaWNhdGlvbi94bWw7cT0wLjksKi8qO3E9MC44]]></property><property name="HTTP_USER_AGENT" fullname="$_SERVER['HTTP_USER_AGENT']" address="69842000" type="string" size="108" encoding="base64"><![CDATA[TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgNi4xOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjE3IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzI0LjAuMTMxMi41NyBTYWZhcmkvNTM3LjE3]]></property><property name="HTTP_ACCEPT_ENCODING" fullname="$_SERVER['HTTP_ACCEPT_ENCODING']" address="69842296" type="string" size="17" encoding="base64"><![CDATA[Z3ppcCxkZWZsYXRlLHNkY2g=]]></property><property name="HTTP_ACCEPT_LANGUAGE" fullname="$_SERVER['HTTP_ACCEPT_LANGUAGE']" address="69842528" type="string" size="14" encoding="base64"><![CDATA[ZW4tVVMsZW47cT0wLjg=]]></property><property name="HTTP_ACCEPT_CHARSET" fullname="$_SERVER['HTTP_ACCEPT_CHARSET']" address="69842808" type="string" size="30" encoding="base64"><![CDATA[SVNPLTg4NTktMSx1dGYtODtxPTAuNywqO3E9MC4z]]></property><property name="HTTP_COOKIE" fullname="$_SERVER['HTTP_COOKIE']" address="69843256" type="string" size="187" encoding="base64"><![CDATA[cmVtZW1iZXJNZVtVc2VyXT1RMkZyWlElM0QlM0QuQU5rUHY5bzFLJTJCUiUyQnlrN0ZPVTFpbXFuY1o2d1hPRXV6ZzRhR2poYjMlMkZ0JTJCZk5SSnA0SDBpNkc2Wlpkc1RDMEMxUXclM0QlM0Q7IHRvb2xiYXJEaXNwbGF5PXNob3c7IG1pZ3JhdGlvbnNEaXNwbGF5PXNob3c7IFhERUJVR19TRVNTSU9OPW5ldGJlYW5zLXhkZWJ1Zw==]]></property><property name="PATH" fullname="$_SERVER['PATH']" address="69844096" type="string" size="276" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMjtDOlxXaW5kb3dzO0M6XFdpbmRvd3NcU3lzdGVtMzJcV2JlbTtDOlxXaW5kb3dzXFN5c3RlbTMyXFdpbmRvd3NQb3dlclNoZWxsXHYxLjBcO2M6XFByb2dyYW0gRmlsZXMgKHg4NilcQVRJIFRlY2hub2xvZ2llc1xBVEkuQUNFXENvcmUtU3RhdGljO0M6XFByb2dyYW0gRmlsZXMgKHg4NilcUXVpY2tUaW1lXFFUU3lzdGVtXDtDOlxzcnZccGhwXDslVVNFUl9QQVRIJTtDOlxzcnZcbXlzcWxcYmluO0M6XFByb2dyYW0gRmlsZXMgKHg4NilcV2luTWVyZ2U7]]></property><property name="SystemRoot" fullname="$_SERVER['SystemRoot']" address="69844320" type="string" size="10" encoding="base64"><![CDATA[QzpcV2luZG93cw==]]></property><property name="COMSPEC" fullname="$_SERVER['COMSPEC']" address="69844496" type="string" size="27" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMlxjbWQuZXhl]]></property><property name="PATHEXT" fullname="$_SERVER['PATHEXT']" address="69844800" type="string" size="53" encoding="base64"><![CDATA[LkNPTTsuRVhFOy5CQVQ7LkNNRDsuVkJTOy5WQkU7LkpTOy5KU0U7LldTRjsuV1NIOy5NU0M=]]></property><property name="WINDIR" fullname="$_SERVER['WINDIR']" address="69845000" type="string" size="10" encoding="base64"><![CDATA[QzpcV2luZG93cw==]]></property><property name="SERVER_SIGNATURE" fullname="$_SERVER['SERVER_SIGNATURE']" address="69845232" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="SERVER_SOFTWARE" fullname="$_SERVER['SERVER_SOFTWARE']" address="69845560" type="string" size="61" encoding="base64"><![CDATA[QXBhY2hlLzIuMi4yMyAoV2luMzIpIG1vZF9zc2wvMi4yLjIzIE9wZW5TU0wvMC45Ljh4IFBIUC81LjQuNg==]]></property><property name="SERVER_NAME" fullname="$_SERVER['SERVER_NAME']" address="69845912" type="string" size="4" encoding="base64"><![CDATA[Y2FrZQ==]]></property><property name="SERVER_ADDR" fullname="$_SERVER['SERVER_ADDR']" address="69846272" type="string" size="9" encoding="base64"><![CDATA[MTI3LjAuMC4x]]></property><property name="SERVER_PORT" fullname="$_SERVER['SERVER_PORT']" address="69846480" type="string" size="2" encoding="base64"><![CDATA[ODA=]]></property><property name="REMOTE_ADDR" fullname="$_SERVER['REMOTE_ADDR']" address="69846704" type="string" size="9" encoding="base64"><![CDATA[MTI3LjAuMC4x]]></property><property name="DOCUMENT_ROOT" fullname="$_SERVER['DOCUMENT_ROOT']" address="69846936" type="string" size="15" encoding="base64"><![CDATA[Qzovc3J2L0Nha2VDb2Rl]]></property><property name="SERVER_ADMIN" fullname="$_SERVER['SERVER_ADMIN']" address="69847192" type="string" size="17" encoding="base64"><![CDATA[YWRtaW5AZXhhbXBsZS5jb20=]]></property><property name="SCRIPT_FILENAME" fullname="$_SERVER['SCRIPT_FILENAME']" address="69847496" type="string" size="43" encoding="base64"><![CDATA[Qzovc3J2L0Nha2VDb2RlL3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocA==]]></property><property name="REMOTE_PORT" fullname="$_SERVER['REMOTE_PORT']" address="69847712" type="string" size="5" encoding="base64"><![CDATA[NTA1NTQ=]]></property><property name="GATEWAY_INTERFACE" fullname="$_SERVER['GATEWAY_INTERFACE']" address="69847960" type="string" size="7" encoding="base64"><![CDATA[Q0dJLzEuMQ==]]></property><property name="SERVER_PROTOCOL" fullname="$_SERVER['SERVER_PROTOCOL']" address="69848168" type="string" size="8" encoding="base64"><![CDATA[SFRUUC8xLjE=]]></property><property name="REQUEST_METHOD" fullname="$_SERVER['REQUEST_METHOD']" address="69848392" type="string" size="3" encoding="base64"><![CDATA[R0VU]]></property><property name="QUERY_STRING" fullname="$_SERVER['QUERY_STRING']" address="69848680" type="string" size="36" encoding="base64"><![CDATA[WERFQlVHX1NFU1NJT05fU1RBUlQ9bmV0YmVhbnMteGRlYnVn]]></property><property name="REQUEST_URI" fullname="$_SERVER['REQUEST_URI']" address="69849024" type="string" size="65" encoding="base64"><![CDATA[L3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocD9YREVCVUdfU0VTU0lPTl9TVEFSVD1uZXRiZWFucy14ZGVidWc=]]></property><property name="SCRIPT_NAME" fullname="$_SERVER['SCRIPT_NAME']" address="69849280" type="string" size="28" encoding="base64"><![CDATA[L3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocA==]]></property></property></response> <- step_over -i 99 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="step_over" transaction_id="99" status="break" reason="ok"><xdebug:message filename="file:///C:/srv/CakeCode/xdebug_mongo_crash/test.php" lineno="3"></xdebug:message></response> <- stack_get -i 100 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="stack_get" transaction_id="100"><stack where="{main}" level="0" type="file" filename="file:///C:/srv/CakeCode/xdebug_mongo_crash/test.php" lineno="3"></stack></response> <- context_names -i 101 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_names" transaction_id="101"><context name="Locals" id="0"></context><context name="Superglobals" id="1"></context></response> <- context_get -i 102 -c 0 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="102" context="0"><property name="$breakPointAfterDestroyingCursors" fullname="$breakPointAfterDestroyingCursors" type="uninitialized"></property><property name="$collection" fullname="$collection" type="uninitialized"></property><property name="$connection" fullname="$connection" type="uninitialized"></property><property name="$cursor" fullname="$cursor" type="uninitialized"></property><property name="$cursor2" fullname="$cursor2" type="uninitialized"></property><property name="$id" fullname="$id" type="uninitialized"></property><property name="$result" fullname="$result" type="uninitialized"></property><property name="$value" fullname="$value" type="uninitialized"></property></response> <- context_get -i 103 -c 1 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="103" context="1"><property name="$_COOKIE" fullname="$_COOKIE" address="69837920" type="array" children="1" numchildren="4" page="0" pagesize="30"><property name="rememberMe" fullname="$_COOKIE['rememberMe']" address="69838880" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="User" fullname="$_COOKIE['rememberMe']['User']" address="69839056" type="string" size="77" encoding="base64"><![CDATA[UTJGclpRPT0uQU5rUHY5bzFLK1IreWs3Rk9VMWltcW5jWjZ3WE9FdXpnNGFHamhiMy90K2ZOUkpwNEgwaTZHNlpaZHNUQzBDMVF3PT0=]]></property></property><property name="toolbarDisplay" fullname="$_COOKIE['toolbarDisplay']" address="69839280" type="string" size="4" encoding="base64"><![CDATA[c2hvdw==]]></property><property name="migrationsDisplay" fullname="$_COOKIE['migrationsDisplay']" address="69839536" type="string" size="4" encoding="base64"><![CDATA[c2hvdw==]]></property><property name="XDEBUG_SESSION" fullname="$_COOKIE['XDEBUG_SESSION']" address="69839768" type="string" size="15" encoding="base64"><![CDATA[bmV0YmVhbnMteGRlYnVn]]></property></property><property name="$_ENV" fullname="$_ENV" address="69840056" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_FILES" fullname="$_FILES" address="69839920" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_GET" fullname="$_GET" address="69836928" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="XDEBUG_SESSION_START" fullname="$_GET['XDEBUG_SESSION_START']" address="69837400" type="string" size="15" encoding="base64"><![CDATA[bmV0YmVhbnMteGRlYnVn]]></property></property><property name="$_POST" fullname="$_POST" address="69837200" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_REQUEST" fullname="$_REQUEST" address="69840192" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="XDEBUG_SESSION_START" fullname="$_REQUEST['XDEBUG_SESSION_START']" address="69837400" type="string" size="15" encoding="base64"><![CDATA[bmV0YmVhbnMteGRlYnVn]]></property></property><property name="$_SERVER" fullname="$_SERVER" address="69840440" type="array" children="1" numchildren="33" page="0" pagesize="30"><property name="HTTP_HOST" fullname="$_SERVER['HTTP_HOST']" address="69840760" type="string" size="4" encoding="base64"><![CDATA[Y2FrZQ==]]></property><property name="HTTP_CONNECTION" fullname="$_SERVER['HTTP_CONNECTION']" address="69841008" type="string" size="10" encoding="base64"><![CDATA[a2VlcC1hbGl2ZQ==]]></property><property name="HTTP_CACHE_CONTROL" fullname="$_SERVER['HTTP_CACHE_CONTROL']" address="69841256" type="string" size="9" encoding="base64"><![CDATA[bWF4LWFnZT0w]]></property><property name="HTTP_ACCEPT" fullname="$_SERVER['HTTP_ACCEPT']" address="69841576" type="string" size="63" encoding="base64"><![CDATA[dGV4dC9odG1sLGFwcGxpY2F0aW9uL3hodG1sK3htbCxhcHBsaWNhdGlvbi94bWw7cT0wLjksKi8qO3E9MC44]]></property><property name="HTTP_USER_AGENT" fullname="$_SERVER['HTTP_USER_AGENT']" address="69842000" type="string" size="108" encoding="base64"><![CDATA[TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgNi4xOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjE3IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzI0LjAuMTMxMi41NyBTYWZhcmkvNTM3LjE3]]></property><property name="HTTP_ACCEPT_ENCODING" fullname="$_SERVER['HTTP_ACCEPT_ENCODING']" address="69842296" type="string" size="17" encoding="base64"><![CDATA[Z3ppcCxkZWZsYXRlLHNkY2g=]]></property><property name="HTTP_ACCEPT_LANGUAGE" fullname="$_SERVER['HTTP_ACCEPT_LANGUAGE']" address="69842528" type="string" size="14" encoding="base64"><![CDATA[ZW4tVVMsZW47cT0wLjg=]]></property><property name="HTTP_ACCEPT_CHARSET" fullname="$_SERVER['HTTP_ACCEPT_CHARSET']" address="69842808" type="string" size="30" encoding="base64"><![CDATA[SVNPLTg4NTktMSx1dGYtODtxPTAuNywqO3E9MC4z]]></property><property name="HTTP_COOKIE" fullname="$_SERVER['HTTP_COOKIE']" address="69843256" type="string" size="187" encoding="base64"><![CDATA[cmVtZW1iZXJNZVtVc2VyXT1RMkZyWlElM0QlM0QuQU5rUHY5bzFLJTJCUiUyQnlrN0ZPVTFpbXFuY1o2d1hPRXV6ZzRhR2poYjMlMkZ0JTJCZk5SSnA0SDBpNkc2Wlpkc1RDMEMxUXclM0QlM0Q7IHRvb2xiYXJEaXNwbGF5PXNob3c7IG1pZ3JhdGlvbnNEaXNwbGF5PXNob3c7IFhERUJVR19TRVNTSU9OPW5ldGJlYW5zLXhkZWJ1Zw==]]></property><property name="PATH" fullname="$_SERVER['PATH']" address="69844096" type="string" size="276" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMjtDOlxXaW5kb3dzO0M6XFdpbmRvd3NcU3lzdGVtMzJcV2JlbTtDOlxXaW5kb3dzXFN5c3RlbTMyXFdpbmRvd3NQb3dlclNoZWxsXHYxLjBcO2M6XFByb2dyYW0gRmlsZXMgKHg4NilcQVRJIFRlY2hub2xvZ2llc1xBVEkuQUNFXENvcmUtU3RhdGljO0M6XFByb2dyYW0gRmlsZXMgKHg4NilcUXVpY2tUaW1lXFFUU3lzdGVtXDtDOlxzcnZccGhwXDslVVNFUl9QQVRIJTtDOlxzcnZcbXlzcWxcYmluO0M6XFByb2dyYW0gRmlsZXMgKHg4NilcV2luTWVyZ2U7]]></property><property name="SystemRoot" fullname="$_SERVER['SystemRoot']" address="69844320" type="string" size="10" encoding="base64"><![CDATA[QzpcV2luZG93cw==]]></property><property name="COMSPEC" fullname="$_SERVER['COMSPEC']" address="69844496" type="string" size="27" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMlxjbWQuZXhl]]></property><property name="PATHEXT" fullname="$_SERVER['PATHEXT']" address="69844800" type="string" size="53" encoding="base64"><![CDATA[LkNPTTsuRVhFOy5CQVQ7LkNNRDsuVkJTOy5WQkU7LkpTOy5KU0U7LldTRjsuV1NIOy5NU0M=]]></property><property name="WINDIR" fullname="$_SERVER['WINDIR']" address="69845000" type="string" size="10" encoding="base64"><![CDATA[QzpcV2luZG93cw==]]></property><property name="SERVER_SIGNATURE" fullname="$_SERVER['SERVER_SIGNATURE']" address="69845232" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="SERVER_SOFTWARE" fullname="$_SERVER['SERVER_SOFTWARE']" address="69845560" type="string" size="61" encoding="base64"><![CDATA[QXBhY2hlLzIuMi4yMyAoV2luMzIpIG1vZF9zc2wvMi4yLjIzIE9wZW5TU0wvMC45Ljh4IFBIUC81LjQuNg==]]></property><property name="SERVER_NAME" fullname="$_SERVER['SERVER_NAME']" address="69845912" type="string" size="4" encoding="base64"><![CDATA[Y2FrZQ==]]></property><property name="SERVER_ADDR" fullname="$_SERVER['SERVER_ADDR']" address="69846272" type="string" size="9" encoding="base64"><![CDATA[MTI3LjAuMC4x]]></property><property name="SERVER_PORT" fullname="$_SERVER['SERVER_PORT']" address="69846480" type="string" size="2" encoding="base64"><![CDATA[ODA=]]></property><property name="REMOTE_ADDR" fullname="$_SERVER['REMOTE_ADDR']" address="69846704" type="string" size="9" encoding="base64"><![CDATA[MTI3LjAuMC4x]]></property><property name="DOCUMENT_ROOT" fullname="$_SERVER['DOCUMENT_ROOT']" address="69846936" type="string" size="15" encoding="base64"><![CDATA[Qzovc3J2L0Nha2VDb2Rl]]></property><property name="SERVER_ADMIN" fullname="$_SERVER['SERVER_ADMIN']" address="69847192" type="string" size="17" encoding="base64"><![CDATA[YWRtaW5AZXhhbXBsZS5jb20=]]></property><property name="SCRIPT_FILENAME" fullname="$_SERVER['SCRIPT_FILENAME']" address="69847496" type="string" size="43" encoding="base64"><![CDATA[Qzovc3J2L0Nha2VDb2RlL3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocA==]]></property><property name="REMOTE_PORT" fullname="$_SERVER['REMOTE_PORT']" address="69847712" type="string" size="5" encoding="base64"><![CDATA[NTA1NTQ=]]></property><property name="GATEWAY_INTERFACE" fullname="$_SERVER['GATEWAY_INTERFACE']" address="69847960" type="string" size="7" encoding="base64"><![CDATA[Q0dJLzEuMQ==]]></property><property name="SERVER_PROTOCOL" fullname="$_SERVER['SERVER_PROTOCOL']" address="69848168" type="string" size="8" encoding="base64"><![CDATA[SFRUUC8xLjE=]]></property><property name="REQUEST_METHOD" fullname="$_SERVER['REQUEST_METHOD']" address="69848392" type="string" size="3" encoding="base64"><![CDATA[R0VU]]></property><property name="QUERY_STRING" fullname="$_SERVER['QUERY_STRING']" address="69848680" type="string" size="36" encoding="base64"><![CDATA[WERFQlVHX1NFU1NJT05fU1RBUlQ9bmV0YmVhbnMteGRlYnVn]]></property><property name="REQUEST_URI" fullname="$_SERVER['REQUEST_URI']" address="69849024" type="string" size="65" encoding="base64"><![CDATA[L3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocD9YREVCVUdfU0VTU0lPTl9TVEFSVD1uZXRiZWFucy14ZGVidWc=]]></property><property name="SCRIPT_NAME" fullname="$_SERVER['SCRIPT_NAME']" address="69849280" type="string" size="28" encoding="base64"><![CDATA[L3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocA==]]></property></property></response> <- step_over -i 104 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="step_over" transaction_id="104" status="break" reason="ok"><xdebug:message filename="file:///C:/srv/CakeCode/xdebug_mongo_crash/test.php" lineno="4"></xdebug:message></response> <- stack_get -i 105 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="stack_get" transaction_id="105"><stack where="{main}" level="0" type="file" filename="file:///C:/srv/CakeCode/xdebug_mongo_crash/test.php" lineno="4"></stack></response> <- context_names -i 106 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_names" transaction_id="106"><context name="Locals" id="0"></context><context name="Superglobals" id="1"></context></response> <- context_get -i 107 -c 0 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="107" context="0"><property name="$breakPointAfterDestroyingCursors" fullname="$breakPointAfterDestroyingCursors" type="uninitialized"></property><property name="$collection" fullname="$collection" type="uninitialized"></property><property name="$connection" fullname="$connection" address="69855952" type="object" classname="MongoClient" children="1" numchildren="4" page="0" pagesize="30"><property name="connected" fullname="$connection->connected" facet="public" address="69855984" type="bool"><![CDATA[1]]></property><property name="status" fullname="$connection->status" facet="public" address="69856016" type="null"></property><property name="server" fullname="$connection->server" facet="protected" address="69856048" type="null"></property><property name="persistent" fullname="$connection->persistent" facet="protected" address="69856080" type="null"></property></property><property name="$cursor" fullname="$cursor" type="uninitialized"></property><property name="$cursor2" fullname="$cursor2" type="uninitialized"></property><property name="$id" fullname="$id" type="uninitialized"></property><property name="$result" fullname="$result" type="uninitialized"></property><property name="$value" fullname="$value" type="uninitialized"></property></response> <- context_get -i 108 -c 1 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="108" context="1"><property name="$_COOKIE" fullname="$_COOKIE" address="69837920" type="array" children="1" numchildren="4" page="0" pagesize="30"><property name="rememberMe" fullname="$_COOKIE['rememberMe']" address="69838880" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="User" fullname="$_COOKIE['rememberMe']['User']" address="69839056" type="string" size="77" encoding="base64"><![CDATA[UTJGclpRPT0uQU5rUHY5bzFLK1IreWs3Rk9VMWltcW5jWjZ3WE9FdXpnNGFHamhiMy90K2ZOUkpwNEgwaTZHNlpaZHNUQzBDMVF3PT0=]]></property></property><property name="toolbarDisplay" fullname="$_COOKIE['toolbarDisplay']" address="69839280" type="string" size="4" encoding="base64"><![CDATA[c2hvdw==]]></property><property name="migrationsDisplay" fullname="$_COOKIE['migrationsDisplay']" address="69839536" type="string" size="4" encoding="base64"><![CDATA[c2hvdw==]]></property><property name="XDEBUG_SESSION" fullname="$_COOKIE['XDEBUG_SESSION']" address="69839768" type="string" size="15" encoding="base64"><![CDATA[bmV0YmVhbnMteGRlYnVn]]></property></property><property name="$_ENV" fullname="$_ENV" address="69840056" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_FILES" fullname="$_FILES" address="69839920" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_GET" fullname="$_GET" address="69836928" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="XDEBUG_SESSION_START" fullname="$_GET['XDEBUG_SESSION_START']" address="69837400" type="string" size="15" encoding="base64"><![CDATA[bmV0YmVhbnMteGRlYnVn]]></property></property><property name="$_POST" fullname="$_POST" address="69837200" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_REQUEST" fullname="$_REQUEST" address="69840192" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="XDEBUG_SESSION_START" fullname="$_REQUEST['XDEBUG_SESSION_START']" address="69837400" type="string" size="15" encoding="base64"><![CDATA[bmV0YmVhbnMteGRlYnVn]]></property></property><property name="$_SERVER" fullname="$_SERVER" address="69840440" type="array" children="1" numchildren="33" page="0" pagesize="30"><property name="HTTP_HOST" fullname="$_SERVER['HTTP_HOST']" address="69840760" type="string" size="4" encoding="base64"><![CDATA[Y2FrZQ==]]></property><property name="HTTP_CONNECTION" fullname="$_SERVER['HTTP_CONNECTION']" address="69841008" type="string" size="10" encoding="base64"><![CDATA[a2VlcC1hbGl2ZQ==]]></property><property name="HTTP_CACHE_CONTROL" fullname="$_SERVER['HTTP_CACHE_CONTROL']" address="69841256" type="string" size="9" encoding="base64"><![CDATA[bWF4LWFnZT0w]]></property><property name="HTTP_ACCEPT" fullname="$_SERVER['HTTP_ACCEPT']" address="69841576" type="string" size="63" encoding="base64"><![CDATA[dGV4dC9odG1sLGFwcGxpY2F0aW9uL3hodG1sK3htbCxhcHBsaWNhdGlvbi94bWw7cT0wLjksKi8qO3E9MC44]]></property><property name="HTTP_USER_AGENT" fullname="$_SERVER['HTTP_USER_AGENT']" address="69842000" type="string" size="108" encoding="base64"><![CDATA[TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgNi4xOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjE3IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzI0LjAuMTMxMi41NyBTYWZhcmkvNTM3LjE3]]></property><property name="HTTP_ACCEPT_ENCODING" fullname="$_SERVER['HTTP_ACCEPT_ENCODING']" address="69842296" type="string" size="17" encoding="base64"><![CDATA[Z3ppcCxkZWZsYXRlLHNkY2g=]]></property><property name="HTTP_ACCEPT_LANGUAGE" fullname="$_SERVER['HTTP_ACCEPT_LANGUAGE']" address="69842528" type="string" size="14" encoding="base64"><![CDATA[ZW4tVVMsZW47cT0wLjg=]]></property><property name="HTTP_ACCEPT_CHARSET" fullname="$_SERVER['HTTP_ACCEPT_CHARSET']" address="69842808" type="string" size="30" encoding="base64"><![CDATA[SVNPLTg4NTktMSx1dGYtODtxPTAuNywqO3E9MC4z]]></property><property name="HTTP_COOKIE" fullname="$_SERVER['HTTP_COOKIE']" address="69843256" type="string" size="187" encoding="base64"><![CDATA[cmVtZW1iZXJNZVtVc2VyXT1RMkZyWlElM0QlM0QuQU5rUHY5bzFLJTJCUiUyQnlrN0ZPVTFpbXFuY1o2d1hPRXV6ZzRhR2poYjMlMkZ0JTJCZk5SSnA0SDBpNkc2Wlpkc1RDMEMxUXclM0QlM0Q7IHRvb2xiYXJEaXNwbGF5PXNob3c7IG1pZ3JhdGlvbnNEaXNwbGF5PXNob3c7IFhERUJVR19TRVNTSU9OPW5ldGJlYW5zLXhkZWJ1Zw==]]></property><property name="PATH" fullname="$_SERVER['PATH']" address="69844096" type="string" size="276" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMjtDOlxXaW5kb3dzO0M6XFdpbmRvd3NcU3lzdGVtMzJcV2JlbTtDOlxXaW5kb3dzXFN5c3RlbTMyXFdpbmRvd3NQb3dlclNoZWxsXHYxLjBcO2M6XFByb2dyYW0gRmlsZXMgKHg4NilcQVRJIFRlY2hub2xvZ2llc1xBVEkuQUNFXENvcmUtU3RhdGljO0M6XFByb2dyYW0gRmlsZXMgKHg4NilcUXVpY2tUaW1lXFFUU3lzdGVtXDtDOlxzcnZccGhwXDslVVNFUl9QQVRIJTtDOlxzcnZcbXlzcWxcYmluO0M6XFByb2dyYW0gRmlsZXMgKHg4NilcV2luTWVyZ2U7]]></property><property name="SystemRoot" fullname="$_SERVER['SystemRoot']" address="69844320" type="string" size="10" encoding="base64"><![CDATA[QzpcV2luZG93cw==]]></property><property name="COMSPEC" fullname="$_SERVER['COMSPEC']" address="69844496" type="string" size="27" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMlxjbWQuZXhl]]></property><property name="PATHEXT" fullname="$_SERVER['PATHEXT']" address="69844800" type="string" size="53" encoding="base64"><![CDATA[LkNPTTsuRVhFOy5CQVQ7LkNNRDsuVkJTOy5WQkU7LkpTOy5KU0U7LldTRjsuV1NIOy5NU0M=]]></property><property name="WINDIR" fullname="$_SERVER['WINDIR']" address="69845000" type="string" size="10" encoding="base64"><![CDATA[QzpcV2luZG93cw==]]></property><property name="SERVER_SIGNATURE" fullname="$_SERVER['SERVER_SIGNATURE']" address="69845232" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="SERVER_SOFTWARE" fullname="$_SERVER['SERVER_SOFTWARE']" address="69845560" type="string" size="61" encoding="base64"><![CDATA[QXBhY2hlLzIuMi4yMyAoV2luMzIpIG1vZF9zc2wvMi4yLjIzIE9wZW5TU0wvMC45Ljh4IFBIUC81LjQuNg==]]></property><property name="SERVER_NAME" fullname="$_SERVER['SERVER_NAME']" address="69845912" type="string" size="4" encoding="base64"><![CDATA[Y2FrZQ==]]></property><property name="SERVER_ADDR" fullname="$_SERVER['SERVER_ADDR']" address="69846272" type="string" size="9" encoding="base64"><![CDATA[MTI3LjAuMC4x]]></property><property name="SERVER_PORT" fullname="$_SERVER['SERVER_PORT']" address="69846480" type="string" size="2" encoding="base64"><![CDATA[ODA=]]></property><property name="REMOTE_ADDR" fullname="$_SERVER['REMOTE_ADDR']" address="69846704" type="string" size="9" encoding="base64"><![CDATA[MTI3LjAuMC4x]]></property><property name="DOCUMENT_ROOT" fullname="$_SERVER['DOCUMENT_ROOT']" address="69846936" type="string" size="15" encoding="base64"><![CDATA[Qzovc3J2L0Nha2VDb2Rl]]></property><property name="SERVER_ADMIN" fullname="$_SERVER['SERVER_ADMIN']" address="69847192" type="string" size="17" encoding="base64"><![CDATA[YWRtaW5AZXhhbXBsZS5jb20=]]></property><property name="SCRIPT_FILENAME" fullname="$_SERVER['SCRIPT_FILENAME']" address="69847496" type="string" size="43" encoding="base64"><![CDATA[Qzovc3J2L0Nha2VDb2RlL3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocA==]]></property><property name="REMOTE_PORT" fullname="$_SERVER['REMOTE_PORT']" address="69847712" type="string" size="5" encoding="base64"><![CDATA[NTA1NTQ=]]></property><property name="GATEWAY_INTERFACE" fullname="$_SERVER['GATEWAY_INTERFACE']" address="69847960" type="string" size="7" encoding="base64"><![CDATA[Q0dJLzEuMQ==]]></property><property name="SERVER_PROTOCOL" fullname="$_SERVER['SERVER_PROTOCOL']" address="69848168" type="string" size="8" encoding="base64"><![CDATA[SFRUUC8xLjE=]]></property><property name="REQUEST_METHOD" fullname="$_SERVER['REQUEST_METHOD']" address="69848392" type="string" size="3" encoding="base64"><![CDATA[R0VU]]></property><property name="QUERY_STRING" fullname="$_SERVER['QUERY_STRING']" address="69848680" type="string" size="36" encoding="base64"><![CDATA[WERFQlVHX1NFU1NJT05fU1RBUlQ9bmV0YmVhbnMteGRlYnVn]]></property><property name="REQUEST_URI" fullname="$_SERVER['REQUEST_URI']" address="69849024" type="string" size="65" encoding="base64"><![CDATA[L3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocD9YREVCVUdfU0VTU0lPTl9TVEFSVD1uZXRiZWFucy14ZGVidWc=]]></property><property name="SCRIPT_NAME" fullname="$_SERVER['SCRIPT_NAME']" address="69849280" type="string" size="28" encoding="base64"><![CDATA[L3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocA==]]></property></property></response> <- step_over -i 109 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="step_over" transaction_id="109" status="break" reason="ok"><xdebug:message filename="file:///C:/srv/CakeCode/xdebug_mongo_crash/test.php" lineno="5"></xdebug:message></response> <- stack_get -i 110 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="stack_get" transaction_id="110"><stack where="{main}" level="0" type="file" filename="file:///C:/srv/CakeCode/xdebug_mongo_crash/test.php" lineno="5"></stack></response> <- context_names -i 111 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_names" transaction_id="111"><context name="Locals" id="0"></context><context name="Superglobals" id="1"></context></response> <- context_get -i 112 -c 0 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="112" context="0"><property name="$breakPointAfterDestroyingCursors" fullname="$breakPointAfterDestroyingCursors" type="uninitialized"></property><property name="$collection" fullname="$collection" address="69863520" type="object" classname="MongoCollection" children="1" numchildren="2" page="0" pagesize="30"><property name="w" fullname="$collection->w" facet="public" address="69864016" type="int"><![CDATA[1]]></property><property name="wtimeout" fullname="$collection->wtimeout" facet="public" address="69864064" type="int"><![CDATA[10000]]></property></property><property name="$connection" fullname="$connection" address="69855952" type="object" classname="MongoClient" children="1" numchildren="4" page="0" pagesize="30"><property name="connected" fullname="$connection->connected" facet="public" address="69855984" type="bool"><![CDATA[1]]></property><property name="status" fullname="$connection->status" facet="public" address="69856016" type="null"></property><property name="server" fullname="$connection->server" facet="protected" address="69856048" type="null"></property><property name="persistent" fullname="$connection->persistent" facet="protected" address="69856080" type="null"></property></property><property name="$cursor" fullname="$cursor" type="uninitialized"></property><property name="$cursor2" fullname="$cursor2" type="uninitialized"></property><property name="$id" fullname="$id" type="uninitialized"></property><property name="$result" fullname="$result" type="uninitialized"></property><property name="$value" fullname="$value" type="uninitialized"></property></response> <- context_get -i 113 -c 1 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="113" context="1"><property name="$_COOKIE" fullname="$_COOKIE" address="69837920" type="array" children="1" numchildren="4" page="0" pagesize="30"><property name="rememberMe" fullname="$_COOKIE['rememberMe']" address="69838880" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="User" fullname="$_COOKIE['rememberMe']['User']" address="69839056" type="string" size="77" encoding="base64"><![CDATA[UTJGclpRPT0uQU5rUHY5bzFLK1IreWs3Rk9VMWltcW5jWjZ3WE9FdXpnNGFHamhiMy90K2ZOUkpwNEgwaTZHNlpaZHNUQzBDMVF3PT0=]]></property></property><property name="toolbarDisplay" fullname="$_COOKIE['toolbarDisplay']" address="69839280" type="string" size="4" encoding="base64"><![CDATA[c2hvdw==]]></property><property name="migrationsDisplay" fullname="$_COOKIE['migrationsDisplay']" address="69839536" type="string" size="4" encoding="base64"><![CDATA[c2hvdw==]]></property><property name="XDEBUG_SESSION" fullname="$_COOKIE['XDEBUG_SESSION']" address="69839768" type="string" size="15" encoding="base64"><![CDATA[bmV0YmVhbnMteGRlYnVn]]></property></property><property name="$_ENV" fullname="$_ENV" address="69840056" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_FILES" fullname="$_FILES" address="69839920" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_GET" fullname="$_GET" address="69836928" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="XDEBUG_SESSION_START" fullname="$_GET['XDEBUG_SESSION_START']" address="69837400" type="string" size="15" encoding="base64"><![CDATA[bmV0YmVhbnMteGRlYnVn]]></property></property><property name="$_POST" fullname="$_POST" address="69837200" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_REQUEST" fullname="$_REQUEST" address="69840192" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="XDEBUG_SESSION_START" fullname="$_REQUEST['XDEBUG_SESSION_START']" address="69837400" type="string" size="15" encoding="base64"><![CDATA[bmV0YmVhbnMteGRlYnVn]]></property></property><property name="$_SERVER" fullname="$_SERVER" address="69840440" type="array" children="1" numchildren="33" page="0" pagesize="30"><property name="HTTP_HOST" fullname="$_SERVER['HTTP_HOST']" address="69840760" type="string" size="4" encoding="base64"><![CDATA[Y2FrZQ==]]></property><property name="HTTP_CONNECTION" fullname="$_SERVER['HTTP_CONNECTION']" address="69841008" type="string" size="10" encoding="base64"><![CDATA[a2VlcC1hbGl2ZQ==]]></property><property name="HTTP_CACHE_CONTROL" fullname="$_SERVER['HTTP_CACHE_CONTROL']" address="69841256" type="string" size="9" encoding="base64"><![CDATA[bWF4LWFnZT0w]]></property><property name="HTTP_ACCEPT" fullname="$_SERVER['HTTP_ACCEPT']" address="69841576" type="string" size="63" encoding="base64"><![CDATA[dGV4dC9odG1sLGFwcGxpY2F0aW9uL3hodG1sK3htbCxhcHBsaWNhdGlvbi94bWw7cT0wLjksKi8qO3E9MC44]]></property><property name="HTTP_USER_AGENT" fullname="$_SERVER['HTTP_USER_AGENT']" address="69842000" type="string" size="108" encoding="base64"><![CDATA[TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgNi4xOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjE3IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzI0LjAuMTMxMi41NyBTYWZhcmkvNTM3LjE3]]></property><property name="HTTP_ACCEPT_ENCODING" fullname="$_SERVER['HTTP_ACCEPT_ENCODING']" address="69842296" type="string" size="17" encoding="base64"><![CDATA[Z3ppcCxkZWZsYXRlLHNkY2g=]]></property><property name="HTTP_ACCEPT_LANGUAGE" fullname="$_SERVER['HTTP_ACCEPT_LANGUAGE']" address="69842528" type="string" size="14" encoding="base64"><![CDATA[ZW4tVVMsZW47cT0wLjg=]]></property><property name="HTTP_ACCEPT_CHARSET" fullname="$_SERVER['HTTP_ACCEPT_CHARSET']" address="69842808" type="string" size="30" encoding="base64"><![CDATA[SVNPLTg4NTktMSx1dGYtODtxPTAuNywqO3E9MC4z]]></property><property name="HTTP_COOKIE" fullname="$_SERVER['HTTP_COOKIE']" address="69843256" type="string" size="187" encoding="base64"><![CDATA[cmVtZW1iZXJNZVtVc2VyXT1RMkZyWlElM0QlM0QuQU5rUHY5bzFLJTJCUiUyQnlrN0ZPVTFpbXFuY1o2d1hPRXV6ZzRhR2poYjMlMkZ0JTJCZk5SSnA0SDBpNkc2Wlpkc1RDMEMxUXclM0QlM0Q7IHRvb2xiYXJEaXNwbGF5PXNob3c7IG1pZ3JhdGlvbnNEaXNwbGF5PXNob3c7IFhERUJVR19TRVNTSU9OPW5ldGJlYW5zLXhkZWJ1Zw==]]></property><property name="PATH" fullname="$_SERVER['PATH']" address="69844096" type="string" size="276" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMjtDOlxXaW5kb3dzO0M6XFdpbmRvd3NcU3lzdGVtMzJcV2JlbTtDOlxXaW5kb3dzXFN5c3RlbTMyXFdpbmRvd3NQb3dlclNoZWxsXHYxLjBcO2M6XFByb2dyYW0gRmlsZXMgKHg4NilcQVRJIFRlY2hub2xvZ2llc1xBVEkuQUNFXENvcmUtU3RhdGljO0M6XFByb2dyYW0gRmlsZXMgKHg4NilcUXVpY2tUaW1lXFFUU3lzdGVtXDtDOlxzcnZccGhwXDslVVNFUl9QQVRIJTtDOlxzcnZcbXlzcWxcYmluO0M6XFByb2dyYW0gRmlsZXMgKHg4NilcV2luTWVyZ2U7]]></property><property name="SystemRoot" fullname="$_SERVER['SystemRoot']" address="69844320" type="string" size="10" encoding="base64"><![CDATA[QzpcV2luZG93cw==]]></property><property name="COMSPEC" fullname="$_SERVER['COMSPEC']" address="69844496" type="string" size="27" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMlxjbWQuZXhl]]></property><property name="PATHEXT" fullname="$_SERVER['PATHEXT']" address="69844800" type="string" size="53" encoding="base64"><![CDATA[LkNPTTsuRVhFOy5CQVQ7LkNNRDsuVkJTOy5WQkU7LkpTOy5KU0U7LldTRjsuV1NIOy5NU0M=]]></property><property name="WINDIR" fullname="$_SERVER['WINDIR']" address="69845000" type="string" size="10" encoding="base64"><![CDATA[QzpcV2luZG93cw==]]></property><property name="SERVER_SIGNATURE" fullname="$_SERVER['SERVER_SIGNATURE']" address="69845232" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="SERVER_SOFTWARE" fullname="$_SERVER['SERVER_SOFTWARE']" address="69845560" type="string" size="61" encoding="base64"><![CDATA[QXBhY2hlLzIuMi4yMyAoV2luMzIpIG1vZF9zc2wvMi4yLjIzIE9wZW5TU0wvMC45Ljh4IFBIUC81LjQuNg==]]></property><property name="SERVER_NAME" fullname="$_SERVER['SERVER_NAME']" address="69845912" type="string" size="4" encoding="base64"><![CDATA[Y2FrZQ==]]></property><property name="SERVER_ADDR" fullname="$_SERVER['SERVER_ADDR']" address="69846272" type="string" size="9" encoding="base64"><![CDATA[MTI3LjAuMC4x]]></property><property name="SERVER_PORT" fullname="$_SERVER['SERVER_PORT']" address="69846480" type="string" size="2" encoding="base64"><![CDATA[ODA=]]></property><property name="REMOTE_ADDR" fullname="$_SERVER['REMOTE_ADDR']" address="69846704" type="string" size="9" encoding="base64"><![CDATA[MTI3LjAuMC4x]]></property><property name="DOCUMENT_ROOT" fullname="$_SERVER['DOCUMENT_ROOT']" address="69846936" type="string" size="15" encoding="base64"><![CDATA[Qzovc3J2L0Nha2VDb2Rl]]></property><property name="SERVER_ADMIN" fullname="$_SERVER['SERVER_ADMIN']" address="69847192" type="string" size="17" encoding="base64"><![CDATA[YWRtaW5AZXhhbXBsZS5jb20=]]></property><property name="SCRIPT_FILENAME" fullname="$_SERVER['SCRIPT_FILENAME']" address="69847496" type="string" size="43" encoding="base64"><![CDATA[Qzovc3J2L0Nha2VDb2RlL3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocA==]]></property><property name="REMOTE_PORT" fullname="$_SERVER['REMOTE_PORT']" address="69847712" type="string" size="5" encoding="base64"><![CDATA[NTA1NTQ=]]></property><property name="GATEWAY_INTERFACE" fullname="$_SERVER['GATEWAY_INTERFACE']" address="69847960" type="string" size="7" encoding="base64"><![CDATA[Q0dJLzEuMQ==]]></property><property name="SERVER_PROTOCOL" fullname="$_SERVER['SERVER_PROTOCOL']" address="69848168" type="string" size="8" encoding="base64"><![CDATA[SFRUUC8xLjE=]]></property><property name="REQUEST_METHOD" fullname="$_SERVER['REQUEST_METHOD']" address="69848392" type="string" size="3" encoding="base64"><![CDATA[R0VU]]></property><property name="QUERY_STRING" fullname="$_SERVER['QUERY_STRING']" address="69848680" type="string" size="36" encoding="base64"><![CDATA[WERFQlVHX1NFU1NJT05fU1RBUlQ9bmV0YmVhbnMteGRlYnVn]]></property><property name="REQUEST_URI" fullname="$_SERVER['REQUEST_URI']" address="69849024" type="string" size="65" encoding="base64"><![CDATA[L3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocD9YREVCVUdfU0VTU0lPTl9TVEFSVD1uZXRiZWFucy14ZGVidWc=]]></property><property name="SCRIPT_NAME" fullname="$_SERVER['SCRIPT_NAME']" address="69849280" type="string" size="28" encoding="base64"><![CDATA[L3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocA==]]></property></property></response> <- step_over -i 114 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="step_over" transaction_id="114" status="break" reason="ok"><xdebug:message filename="file:///C:/srv/CakeCode/xdebug_mongo_crash/test.php" lineno="7"></xdebug:message></response> <- stack_get -i 115 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="stack_get" transaction_id="115"><stack where="{main}" level="0" type="file" filename="file:///C:/srv/CakeCode/xdebug_mongo_crash/test.php" lineno="7"></stack></response> <- context_names -i 116 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_names" transaction_id="116"><context name="Locals" id="0"></context><context name="Superglobals" id="1"></context></response> <- context_get -i 117 -c 0 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="117" context="0"><property name="$breakPointAfterDestroyingCursors" fullname="$breakPointAfterDestroyingCursors" type="uninitialized"></property><property name="$collection" fullname="$collection" address="69863520" type="object" classname="MongoCollection" children="1" numchildren="2" page="0" pagesize="30"><property name="w" fullname="$collection->w" facet="public" address="69864016" type="int"><![CDATA[1]]></property><property name="wtimeout" fullname="$collection->wtimeout" facet="public" address="69864064" type="int"><![CDATA[10000]]></property></property><property name="$connection" fullname="$connection" address="69855952" type="object" classname="MongoClient" children="1" numchildren="4" page="0" pagesize="30"><property name="connected" fullname="$connection->connected" facet="public" address="69855984" type="bool"><![CDATA[1]]></property><property name="status" fullname="$connection->status" facet="public" address="69856016" type="null"></property><property name="server" fullname="$connection->server" facet="protected" address="69856048" type="null"></property><property name="persistent" fullname="$connection->persistent" facet="protected" address="69856080" type="null"></property></property><property name="$cursor" fullname="$cursor" type="uninitialized"></property><property name="$cursor2" fullname="$cursor2" type="uninitialized"></property><property name="$id" fullname="$id" type="uninitialized"></property><property name="$result" fullname="$result" type="uninitialized"></property><property name="$value" fullname="$value" type="uninitialized"></property></response> <- context_get -i 118 -c 1 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="118" context="1"><property name="$_COOKIE" fullname="$_COOKIE" address="69837920" type="array" children="1" numchildren="4" page="0" pagesize="30"><property name="rememberMe" fullname="$_COOKIE['rememberMe']" address="69838880" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="User" fullname="$_COOKIE['rememberMe']['User']" address="69839056" type="string" size="77" encoding="base64"><![CDATA[UTJGclpRPT0uQU5rUHY5bzFLK1IreWs3Rk9VMWltcW5jWjZ3WE9FdXpnNGFHamhiMy90K2ZOUkpwNEgwaTZHNlpaZHNUQzBDMVF3PT0=]]></property></property><property name="toolbarDisplay" fullname="$_COOKIE['toolbarDisplay']" address="69839280" type="string" size="4" encoding="base64"><![CDATA[c2hvdw==]]></property><property name="migrationsDisplay" fullname="$_COOKIE['migrationsDisplay']" address="69839536" type="string" size="4" encoding="base64"><![CDATA[c2hvdw==]]></property><property name="XDEBUG_SESSION" fullname="$_COOKIE['XDEBUG_SESSION']" address="69839768" type="string" size="15" encoding="base64"><![CDATA[bmV0YmVhbnMteGRlYnVn]]></property></property><property name="$_ENV" fullname="$_ENV" address="69840056" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_FILES" fullname="$_FILES" address="69839920" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_GET" fullname="$_GET" address="69836928" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="XDEBUG_SESSION_START" fullname="$_GET['XDEBUG_SESSION_START']" address="69837400" type="string" size="15" encoding="base64"><![CDATA[bmV0YmVhbnMteGRlYnVn]]></property></property><property name="$_POST" fullname="$_POST" address="69837200" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_REQUEST" fullname="$_REQUEST" address="69840192" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="XDEBUG_SESSION_START" fullname="$_REQUEST['XDEBUG_SESSION_START']" address="69837400" type="string" size="15" encoding="base64"><![CDATA[bmV0YmVhbnMteGRlYnVn]]></property></property><property name="$_SERVER" fullname="$_SERVER" address="69840440" type="array" children="1" numchildren="33" page="0" pagesize="30"><property name="HTTP_HOST" fullname="$_SERVER['HTTP_HOST']" address="69840760" type="string" size="4" encoding="base64"><![CDATA[Y2FrZQ==]]></property><property name="HTTP_CONNECTION" fullname="$_SERVER['HTTP_CONNECTION']" address="69841008" type="string" size="10" encoding="base64"><![CDATA[a2VlcC1hbGl2ZQ==]]></property><property name="HTTP_CACHE_CONTROL" fullname="$_SERVER['HTTP_CACHE_CONTROL']" address="69841256" type="string" size="9" encoding="base64"><![CDATA[bWF4LWFnZT0w]]></property><property name="HTTP_ACCEPT" fullname="$_SERVER['HTTP_ACCEPT']" address="69841576" type="string" size="63" encoding="base64"><![CDATA[dGV4dC9odG1sLGFwcGxpY2F0aW9uL3hodG1sK3htbCxhcHBsaWNhdGlvbi94bWw7cT0wLjksKi8qO3E9MC44]]></property><property name="HTTP_USER_AGENT" fullname="$_SERVER['HTTP_USER_AGENT']" address="69842000" type="string" size="108" encoding="base64"><![CDATA[TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgNi4xOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjE3IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzI0LjAuMTMxMi41NyBTYWZhcmkvNTM3LjE3]]></property><property name="HTTP_ACCEPT_ENCODING" fullname="$_SERVER['HTTP_ACCEPT_ENCODING']" address="69842296" type="string" size="17" encoding="base64"><![CDATA[Z3ppcCxkZWZsYXRlLHNkY2g=]]></property><property name="HTTP_ACCEPT_LANGUAGE" fullname="$_SERVER['HTTP_ACCEPT_LANGUAGE']" address="69842528" type="string" size="14" encoding="base64"><![CDATA[ZW4tVVMsZW47cT0wLjg=]]></property><property name="HTTP_ACCEPT_CHARSET" fullname="$_SERVER['HTTP_ACCEPT_CHARSET']" address="69842808" type="string" size="30" encoding="base64"><![CDATA[SVNPLTg4NTktMSx1dGYtODtxPTAuNywqO3E9MC4z]]></property><property name="HTTP_COOKIE" fullname="$_SERVER['HTTP_COOKIE']" address="69843256" type="string" size="187" encoding="base64"><![CDATA[cmVtZW1iZXJNZVtVc2VyXT1RMkZyWlElM0QlM0QuQU5rUHY5bzFLJTJCUiUyQnlrN0ZPVTFpbXFuY1o2d1hPRXV6ZzRhR2poYjMlMkZ0JTJCZk5SSnA0SDBpNkc2Wlpkc1RDMEMxUXclM0QlM0Q7IHRvb2xiYXJEaXNwbGF5PXNob3c7IG1pZ3JhdGlvbnNEaXNwbGF5PXNob3c7IFhERUJVR19TRVNTSU9OPW5ldGJlYW5zLXhkZWJ1Zw==]]></property><property name="PATH" fullname="$_SERVER['PATH']" address="69844096" type="string" size="276" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMjtDOlxXaW5kb3dzO0M6XFdpbmRvd3NcU3lzdGVtMzJcV2JlbTtDOlxXaW5kb3dzXFN5c3RlbTMyXFdpbmRvd3NQb3dlclNoZWxsXHYxLjBcO2M6XFByb2dyYW0gRmlsZXMgKHg4NilcQVRJIFRlY2hub2xvZ2llc1xBVEkuQUNFXENvcmUtU3RhdGljO0M6XFByb2dyYW0gRmlsZXMgKHg4NilcUXVpY2tUaW1lXFFUU3lzdGVtXDtDOlxzcnZccGhwXDslVVNFUl9QQVRIJTtDOlxzcnZcbXlzcWxcYmluO0M6XFByb2dyYW0gRmlsZXMgKHg4NilcV2luTWVyZ2U7]]></property><property name="SystemRoot" fullname="$_SERVER['SystemRoot']" address="69844320" type="string" size="10" encoding="base64"><![CDATA[QzpcV2luZG93cw==]]></property><property name="COMSPEC" fullname="$_SERVER['COMSPEC']" address="69844496" type="string" size="27" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMlxjbWQuZXhl]]></property><property name="PATHEXT" fullname="$_SERVER['PATHEXT']" address="69844800" type="string" size="53" encoding="base64"><![CDATA[LkNPTTsuRVhFOy5CQVQ7LkNNRDsuVkJTOy5WQkU7LkpTOy5KU0U7LldTRjsuV1NIOy5NU0M=]]></property><property name="WINDIR" fullname="$_SERVER['WINDIR']" address="69845000" type="string" size="10" encoding="base64"><![CDATA[QzpcV2luZG93cw==]]></property><property name="SERVER_SIGNATURE" fullname="$_SERVER['SERVER_SIGNATURE']" address="69845232" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="SERVER_SOFTWARE" fullname="$_SERVER['SERVER_SOFTWARE']" address="69845560" type="string" size="61" encoding="base64"><![CDATA[QXBhY2hlLzIuMi4yMyAoV2luMzIpIG1vZF9zc2wvMi4yLjIzIE9wZW5TU0wvMC45Ljh4IFBIUC81LjQuNg==]]></property><property name="SERVER_NAME" fullname="$_SERVER['SERVER_NAME']" address="69845912" type="string" size="4" encoding="base64"><![CDATA[Y2FrZQ==]]></property><property name="SERVER_ADDR" fullname="$_SERVER['SERVER_ADDR']" address="69846272" type="string" size="9" encoding="base64"><![CDATA[MTI3LjAuMC4x]]></property><property name="SERVER_PORT" fullname="$_SERVER['SERVER_PORT']" address="69846480" type="string" size="2" encoding="base64"><![CDATA[ODA=]]></property><property name="REMOTE_ADDR" fullname="$_SERVER['REMOTE_ADDR']" address="69846704" type="string" size="9" encoding="base64"><![CDATA[MTI3LjAuMC4x]]></property><property name="DOCUMENT_ROOT" fullname="$_SERVER['DOCUMENT_ROOT']" address="69846936" type="string" size="15" encoding="base64"><![CDATA[Qzovc3J2L0Nha2VDb2Rl]]></property><property name="SERVER_ADMIN" fullname="$_SERVER['SERVER_ADMIN']" address="69847192" type="string" size="17" encoding="base64"><![CDATA[YWRtaW5AZXhhbXBsZS5jb20=]]></property><property name="SCRIPT_FILENAME" fullname="$_SERVER['SCRIPT_FILENAME']" address="69847496" type="string" size="43" encoding="base64"><![CDATA[Qzovc3J2L0Nha2VDb2RlL3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocA==]]></property><property name="REMOTE_PORT" fullname="$_SERVER['REMOTE_PORT']" address="69847712" type="string" size="5" encoding="base64"><![CDATA[NTA1NTQ=]]></property><property name="GATEWAY_INTERFACE" fullname="$_SERVER['GATEWAY_INTERFACE']" address="69847960" type="string" size="7" encoding="base64"><![CDATA[Q0dJLzEuMQ==]]></property><property name="SERVER_PROTOCOL" fullname="$_SERVER['SERVER_PROTOCOL']" address="69848168" type="string" size="8" encoding="base64"><![CDATA[SFRUUC8xLjE=]]></property><property name="REQUEST_METHOD" fullname="$_SERVER['REQUEST_METHOD']" address="69848392" type="string" size="3" encoding="base64"><![CDATA[R0VU]]></property><property name="QUERY_STRING" fullname="$_SERVER['QUERY_STRING']" address="69848680" type="string" size="36" encoding="base64"><![CDATA[WERFQlVHX1NFU1NJT05fU1RBUlQ9bmV0YmVhbnMteGRlYnVn]]></property><property name="REQUEST_URI" fullname="$_SERVER['REQUEST_URI']" address="69849024" type="string" size="65" encoding="base64"><![CDATA[L3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocD9YREVCVUdfU0VTU0lPTl9TVEFSVD1uZXRiZWFucy14ZGVidWc=]]></property><property name="SCRIPT_NAME" fullname="$_SERVER['SCRIPT_NAME']" address="69849280" type="string" size="28" encoding="base64"><![CDATA[L3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocA==]]></property></property></response> <- step_over -i 119 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="step_over" transaction_id="119" status="break" reason="ok"><xdebug:message filename="file:///C:/srv/CakeCode/xdebug_mongo_crash/test.php" lineno="17"></xdebug:message></response> <- stack_get -i 120 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="stack_get" transaction_id="120"><stack where="{main}" level="0" type="file" filename="file:///C:/srv/CakeCode/xdebug_mongo_crash/test.php" lineno="17"></stack></response> <- context_names -i 121 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_names" transaction_id="121"><context name="Locals" id="0"></context><context name="Superglobals" id="1"></context></response> <- context_get -i 122 -c 0 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="122" context="0"><property name="$breakPointAfterDestroyingCursors" fullname="$breakPointAfterDestroyingCursors" type="uninitialized"></property><property name="$collection" fullname="$collection" address="69863520" type="object" classname="MongoCollection" children="1" numchildren="2" page="0" pagesize="30"><property name="w" fullname="$collection->w" facet="public" address="69864016" type="int"><![CDATA[1]]></property><property name="wtimeout" fullname="$collection->wtimeout" facet="public" address="69864064" type="int"><![CDATA[10000]]></property></property><property name="$connection" fullname="$connection" address="69855952" type="object" classname="MongoClient" children="1" numchildren="4" page="0" pagesize="30"><property name="connected" fullname="$connection->connected" facet="public" address="69855984" type="bool"><![CDATA[1]]></property><property name="status" fullname="$connection->status" facet="public" address="69856016" type="null"></property><property name="server" fullname="$connection->server" facet="protected" address="69856048" type="null"></property><property name="persistent" fullname="$connection->persistent" facet="protected" address="69856080" type="null"></property></property><property name="$cursor" fullname="$cursor" type="uninitialized"></property><property name="$cursor2" fullname="$cursor2" type="uninitialized"></property><property name="$id" fullname="$id" type="uninitialized"></property><property name="$result" fullname="$result" type="uninitialized"></property><property name="$value" fullname="$value" type="uninitialized"></property></response> <- context_get -i 123 -c 1 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="123" context="1"><property name="$_COOKIE" fullname="$_COOKIE" address="69837920" type="array" children="1" numchildren="4" page="0" pagesize="30"><property name="rememberMe" fullname="$_COOKIE['rememberMe']" address="69838880" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="User" fullname="$_COOKIE['rememberMe']['User']" address="69839056" type="string" size="77" encoding="base64"><![CDATA[UTJGclpRPT0uQU5rUHY5bzFLK1IreWs3Rk9VMWltcW5jWjZ3WE9FdXpnNGFHamhiMy90K2ZOUkpwNEgwaTZHNlpaZHNUQzBDMVF3PT0=]]></property></property><property name="toolbarDisplay" fullname="$_COOKIE['toolbarDisplay']" address="69839280" type="string" size="4" encoding="base64"><![CDATA[c2hvdw==]]></property><property name="migrationsDisplay" fullname="$_COOKIE['migrationsDisplay']" address="69839536" type="string" size="4" encoding="base64"><![CDATA[c2hvdw==]]></property><property name="XDEBUG_SESSION" fullname="$_COOKIE['XDEBUG_SESSION']" address="69839768" type="string" size="15" encoding="base64"><![CDATA[bmV0YmVhbnMteGRlYnVn]]></property></property><property name="$_ENV" fullname="$_ENV" address="69840056" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_FILES" fullname="$_FILES" address="69839920" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_GET" fullname="$_GET" address="69836928" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="XDEBUG_SESSION_START" fullname="$_GET['XDEBUG_SESSION_START']" address="69837400" type="string" size="15" encoding="base64"><![CDATA[bmV0YmVhbnMteGRlYnVn]]></property></property><property name="$_POST" fullname="$_POST" address="69837200" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_REQUEST" fullname="$_REQUEST" address="69840192" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="XDEBUG_SESSION_START" fullname="$_REQUEST['XDEBUG_SESSION_START']" address="69837400" type="string" size="15" encoding="base64"><![CDATA[bmV0YmVhbnMteGRlYnVn]]></property></property><property name="$_SERVER" fullname="$_SERVER" address="69840440" type="array" children="1" numchildren="33" page="0" pagesize="30"><property name="HTTP_HOST" fullname="$_SERVER['HTTP_HOST']" address="69840760" type="string" size="4" encoding="base64"><![CDATA[Y2FrZQ==]]></property><property name="HTTP_CONNECTION" fullname="$_SERVER['HTTP_CONNECTION']" address="69841008" type="string" size="10" encoding="base64"><![CDATA[a2VlcC1hbGl2ZQ==]]></property><property name="HTTP_CACHE_CONTROL" fullname="$_SERVER['HTTP_CACHE_CONTROL']" address="69841256" type="string" size="9" encoding="base64"><![CDATA[bWF4LWFnZT0w]]></property><property name="HTTP_ACCEPT" fullname="$_SERVER['HTTP_ACCEPT']" address="69841576" type="string" size="63" encoding="base64"><![CDATA[dGV4dC9odG1sLGFwcGxpY2F0aW9uL3hodG1sK3htbCxhcHBsaWNhdGlvbi94bWw7cT0wLjksKi8qO3E9MC44]]></property><property name="HTTP_USER_AGENT" fullname="$_SERVER['HTTP_USER_AGENT']" address="69842000" type="string" size="108" encoding="base64"><![CDATA[TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgNi4xOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjE3IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzI0LjAuMTMxMi41NyBTYWZhcmkvNTM3LjE3]]></property><property name="HTTP_ACCEPT_ENCODING" fullname="$_SERVER['HTTP_ACCEPT_ENCODING']" address="69842296" type="string" size="17" encoding="base64"><![CDATA[Z3ppcCxkZWZsYXRlLHNkY2g=]]></property><property name="HTTP_ACCEPT_LANGUAGE" fullname="$_SERVER['HTTP_ACCEPT_LANGUAGE']" address="69842528" type="string" size="14" encoding="base64"><![CDATA[ZW4tVVMsZW47cT0wLjg=]]></property><property name="HTTP_ACCEPT_CHARSET" fullname="$_SERVER['HTTP_ACCEPT_CHARSET']" address="69842808" type="string" size="30" encoding="base64"><![CDATA[SVNPLTg4NTktMSx1dGYtODtxPTAuNywqO3E9MC4z]]></property><property name="HTTP_COOKIE" fullname="$_SERVER['HTTP_COOKIE']" address="69843256" type="string" size="187" encoding="base64"><![CDATA[cmVtZW1iZXJNZVtVc2VyXT1RMkZyWlElM0QlM0QuQU5rUHY5bzFLJTJCUiUyQnlrN0ZPVTFpbXFuY1o2d1hPRXV6ZzRhR2poYjMlMkZ0JTJCZk5SSnA0SDBpNkc2Wlpkc1RDMEMxUXclM0QlM0Q7IHRvb2xiYXJEaXNwbGF5PXNob3c7IG1pZ3JhdGlvbnNEaXNwbGF5PXNob3c7IFhERUJVR19TRVNTSU9OPW5ldGJlYW5zLXhkZWJ1Zw==]]></property><property name="PATH" fullname="$_SERVER['PATH']" address="69844096" type="string" size="276" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMjtDOlxXaW5kb3dzO0M6XFdpbmRvd3NcU3lzdGVtMzJcV2JlbTtDOlxXaW5kb3dzXFN5c3RlbTMyXFdpbmRvd3NQb3dlclNoZWxsXHYxLjBcO2M6XFByb2dyYW0gRmlsZXMgKHg4NilcQVRJIFRlY2hub2xvZ2llc1xBVEkuQUNFXENvcmUtU3RhdGljO0M6XFByb2dyYW0gRmlsZXMgKHg4NilcUXVpY2tUaW1lXFFUU3lzdGVtXDtDOlxzcnZccGhwXDslVVNFUl9QQVRIJTtDOlxzcnZcbXlzcWxcYmluO0M6XFByb2dyYW0gRmlsZXMgKHg4NilcV2luTWVyZ2U7]]></property><property name="SystemRoot" fullname="$_SERVER['SystemRoot']" address="69844320" type="string" size="10" encoding="base64"><![CDATA[QzpcV2luZG93cw==]]></property><property name="COMSPEC" fullname="$_SERVER['COMSPEC']" address="69844496" type="string" size="27" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMlxjbWQuZXhl]]></property><property name="PATHEXT" fullname="$_SERVER['PATHEXT']" address="69844800" type="string" size="53" encoding="base64"><![CDATA[LkNPTTsuRVhFOy5CQVQ7LkNNRDsuVkJTOy5WQkU7LkpTOy5KU0U7LldTRjsuV1NIOy5NU0M=]]></property><property name="WINDIR" fullname="$_SERVER['WINDIR']" address="69845000" type="string" size="10" encoding="base64"><![CDATA[QzpcV2luZG93cw==]]></property><property name="SERVER_SIGNATURE" fullname="$_SERVER['SERVER_SIGNATURE']" address="69845232" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="SERVER_SOFTWARE" fullname="$_SERVER['SERVER_SOFTWARE']" address="69845560" type="string" size="61" encoding="base64"><![CDATA[QXBhY2hlLzIuMi4yMyAoV2luMzIpIG1vZF9zc2wvMi4yLjIzIE9wZW5TU0wvMC45Ljh4IFBIUC81LjQuNg==]]></property><property name="SERVER_NAME" fullname="$_SERVER['SERVER_NAME']" address="69845912" type="string" size="4" encoding="base64"><![CDATA[Y2FrZQ==]]></property><property name="SERVER_ADDR" fullname="$_SERVER['SERVER_ADDR']" address="69846272" type="string" size="9" encoding="base64"><![CDATA[MTI3LjAuMC4x]]></property><property name="SERVER_PORT" fullname="$_SERVER['SERVER_PORT']" address="69846480" type="string" size="2" encoding="base64"><![CDATA[ODA=]]></property><property name="REMOTE_ADDR" fullname="$_SERVER['REMOTE_ADDR']" address="69846704" type="string" size="9" encoding="base64"><![CDATA[MTI3LjAuMC4x]]></property><property name="DOCUMENT_ROOT" fullname="$_SERVER['DOCUMENT_ROOT']" address="69846936" type="string" size="15" encoding="base64"><![CDATA[Qzovc3J2L0Nha2VDb2Rl]]></property><property name="SERVER_ADMIN" fullname="$_SERVER['SERVER_ADMIN']" address="69847192" type="string" size="17" encoding="base64"><![CDATA[YWRtaW5AZXhhbXBsZS5jb20=]]></property><property name="SCRIPT_FILENAME" fullname="$_SERVER['SCRIPT_FILENAME']" address="69847496" type="string" size="43" encoding="base64"><![CDATA[Qzovc3J2L0Nha2VDb2RlL3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocA==]]></property><property name="REMOTE_PORT" fullname="$_SERVER['REMOTE_PORT']" address="69847712" type="string" size="5" encoding="base64"><![CDATA[NTA1NTQ=]]></property><property name="GATEWAY_INTERFACE" fullname="$_SERVER['GATEWAY_INTERFACE']" address="69847960" type="string" size="7" encoding="base64"><![CDATA[Q0dJLzEuMQ==]]></property><property name="SERVER_PROTOCOL" fullname="$_SERVER['SERVER_PROTOCOL']" address="69848168" type="string" size="8" encoding="base64"><![CDATA[SFRUUC8xLjE=]]></property><property name="REQUEST_METHOD" fullname="$_SERVER['REQUEST_METHOD']" address="69848392" type="string" size="3" encoding="base64"><![CDATA[R0VU]]></property><property name="QUERY_STRING" fullname="$_SERVER['QUERY_STRING']" address="69848680" type="string" size="36" encoding="base64"><![CDATA[WERFQlVHX1NFU1NJT05fU1RBUlQ9bmV0YmVhbnMteGRlYnVn]]></property><property name="REQUEST_URI" fullname="$_SERVER['REQUEST_URI']" address="69849024" type="string" size="65" encoding="base64"><![CDATA[L3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocD9YREVCVUdfU0VTU0lPTl9TVEFSVD1uZXRiZWFucy14ZGVidWc=]]></property><property name="SCRIPT_NAME" fullname="$_SERVER['SCRIPT_NAME']" address="69849280" type="string" size="28" encoding="base64"><![CDATA[L3hkZWJ1Z19tb25nb19jcmFzaC90ZXN0LnBocA==]]></property></property></response> <- step_over -i 124 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="step_over" transaction_id="124" status="break" reason="ok"><xdebug:message filename="file:///C:/srv/CakeCode/xdebug_mongo_crash/test.php" lineno="20"></xdebug:message></response> <- stack_get -i 125 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="stack_get" transaction_id="125"><stack where="{main}" level="0" type="file" filename="file:///C:/srv/CakeCode/xdebug_mongo_crash/test.php" lineno="20"></stack></response> <- context_names -i 126 -> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_names" transaction_id="126"><context name="Locals" id="0"></context><context name="Superglobals" id="1"></context></response> <- context_get -i 127 -c 0 | ||||
Operating System | Windows 7 | ||||
PHP Version | 5.4.6 | ||||
|
Copying my versions here, for easier review: VersionsPHP 5.4.6 |
|
Just checked with Mongo 1.2.12: No change in behavior. Just change the first line to: $connection = (class_exists('MongoClient')) ? new MongoClient() : new Mongo(); Makes it compatible with all versions of php_mongo |
|
Fixed for xdebug 2.2.3 |
Date Modified | Username | Field | Change |
---|---|---|---|
2013-02-13 07:46 | dizyart | New Issue | |
2013-02-13 07:46 | dizyart | File Added: test.php.txt | |
2013-02-13 07:49 | dizyart | Tag Attached: mongodb | |
2013-02-13 07:49 | dizyart | Tag Attached: netbeans | |
2013-02-13 07:49 | dizyart | Tag Attached: socket exception | |
2013-02-13 07:50 | dizyart | File Added: test.php | |
2013-02-13 07:52 | dizyart | Note Added: 0002427 | |
2013-02-13 08:11 | dizyart | Note Added: 0002428 | |
2013-02-13 08:12 | dizyart | Note Edited: 0002428 | |
2013-05-14 18:11 | derick | Note Added: 0002461 | |
2013-05-14 18:11 | derick | Status | new => closed |
2013-05-14 18:11 | derick | Assigned To | => derick |
2013-05-14 18:11 | derick | Resolution | open => fixed |
2013-05-14 18:12 | derick | Fixed in Version | => 2.2.3 |
2013-05-22 03:51 | derick | Target Version | => 2.2.3 |
2016-07-31 12:35 | derick | Category | Debug client (console) => debugclient (debugging tool) |
2016-07-31 12:35 | derick | Category | debugclient (debugging tool) => (No Category) |