View Issue Details

IDProjectCategoryView StatusLast Update
0001285XdebugUncategorizedpublic2016-12-12 00:02
Reporterlonejack Assigned Toderick  
PrioritynormalSeveritymajorReproducibilityalways
Status resolvedResolutionnot fixable 
PlatformIntel I7OSLINUXOS VersionLinux claudio-i7
Product Version2.3.3 
Summary0001285: When I set a BP in one position work fine, when I put it some line after I get a PHP exception
Description

First of all: not sure is a Xdebug problem!
So before to start a demo code I need an opinion.
Code problem:
$template = new DOMDocument();
$a = $template->load('myfile.xml');

$doc = new DOMDocument();
$doc->loadXML($config);

// ... do ....
// .. thigs ..

// dependencies: This line is on file LayoutRow.php at row numb 326

$deps = $doc->getElementsByTagName('dep'); // POINT_A

$depsList = array();
foreach ($deps as $dep) {

$attributes = $dep->attributes;

$ix = array();

foreach ($attributes as $name => $attr) {
$ix[$name] = $attr->nodeValue;
}
array_push($depsList, $ix);
}

// Now we erase the absent rows
$allRows = $routingTable->getRowsByTarget('layout', $this->id); // POINT_B

Steps To Reproduce

If I put a BP on POINT_A no problem.

If I put a BP on POINT_B I've this:
[12-Mar-2016 08:53:42 Europe/Berlin] PHP Warning: Application_Model_LayoutRow::_updateRouting(): Not yet implemented in /home/claudio/public_html/zftest/application/models/LayoutRow.php on line 343
[12-Mar-2016 08:53:42 Europe/Berlin] PHP Stack trace:
[12-Mar-2016 08:53:42 Europe/Berlin] PHP 1. {main}() /home/claudio/public_html/zftest/public/api/1.0/jsonrpc.php:0
[12-Mar-2016 08:53:42 Europe/Berlin] PHP 2. Zend_Json_Server->handle($request = uninitialized) /home/claudio/public_html/zftest/public/api/1.0/jsonrpc.php:67
[12-Mar-2016 08:53:42 Europe/Berlin] PHP 3. Zend_Json_Server->_handle() /home/claudio/public_html/zftest/library/Zend/Json/Server.php:191
[12-Mar-2016 08:53:42 Europe/Berlin] PHP 4. Zend_Server_Abstract->_dispatch($invocable = uninitialized, $params = uninitialized) /home/claudio/public_html/zftest/library/Zend/Json/Server.php:561
[12-Mar-2016 08:53:42 Europe/Berlin] PHP 5. call_user_func_array:{/home/claudio/public_html/zftest/library/Zend/Server/Abstract.php:232}(uninitialized, uninitialized) /home/claudio/public_html/zftest/library/Zend/Server/Abstract.php:232
[12-Mar-2016 08:53:42 Europe/Berlin] PHP 6. Application_Model_JsonRpc->updateLayout($id = uninitialized, $config = uninitialized) /home/claudio/public_html/zftest/library/Zend/Server/Abstract.php:232
[12-Mar-2016 08:53:42 Europe/Berlin] PHP 7. Application_Model_ContentRow->save() /home/claudio/public_html/zftest/application/models/JsonRpc.php:258
[12-Mar-2016 08:53:42 Europe/Berlin] PHP 8. Zend_Db_Table_Row_Abstract->save() /home/claudio/public_html/zftest/application/models/ContentRow.php:83
[12-Mar-2016 08:53:42 Europe/Berlin] PHP 9. Zend_Db_Table_Row_Abstract->_doUpdate() /home/claudio/public_html/zftest/library/Zend/Db/Table/Row/Abstract.php:440
[12-Mar-2016 08:53:42 Europe/Berlin] PHP 10. Application_Model_LayoutRow->_update() /home/claudio/public_html/zftest/library/Zend/Db/Table/Row/Abstract.php:525
[12-Mar-2016 08:53:42 Europe/Berlin] PHP 11. Application_Model_LayoutRow->_updateRouting() /home/claudio/public_html/zftest/application/models/LayoutRow.php:398

So it seems that bepween (A) and (B) happen somenthing...
I send you also the xdebug log

Bye
Claudio

TagsNo tags attached.
Attached Files
xdebug.log (80,084 bytes)   
Log opened at 2016-03-12 07:53:41
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:///home/claudio/public_html/zftest/public/api/1.0/jsonrpc.php" language="PHP" protocol_version="1.0" appid="5050" idekey="16378"><engine version="2.3.3"><![CDATA[Xdebug]]></engine><author><![CDATA[Derick Rethans]]></author><url><![CDATA[http://xdebug.org]]></url><copyright><![CDATA[Copyright (c) 2002-2015 by Derick Rethans]]></copyright></init>

<- feature_set -i 1 -n show_hidden -v 1
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="feature_set" transaction_id="1" feature="show_hidden" success="1"></response>

<- feature_set -i 2 -n max_depth -v 1
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="feature_set" transaction_id="2" feature="max_depth" success="1"></response>

<- feature_set -i 3 -n max_children -v 100
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="feature_set" transaction_id="3" feature="max_children" success="1"></response>

<- status -i 4
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="status" transaction_id="4" status="starting" reason="ok"></response>

<- step_into -i 5
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="step_into" transaction_id="5" status="break" reason="ok"><xdebug:message filename="file:///home/claudio/public_html/zftest/public/api/1.0/jsonrpc.php" lineno="11"></xdebug:message></response>

<- breakpoint_set -i 6 -t line -f file:///home/claudio/public_html/zftest/application/models/LayoutRow.php -n 343
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="breakpoint_set" transaction_id="6" id="50500001"></response>

<- stack_get -i 7
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="stack_get" transaction_id="7"><stack where="{main}" level="0" type="file" filename="file:///home/claudio/public_html/zftest/public/api/1.0/jsonrpc.php" lineno="11"></stack></response>

<- run -i 8
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="run" transaction_id="8" status="break" reason="ok"><xdebug:message filename="file:///home/claudio/public_html/zftest/application/models/LayoutRow.php" lineno="343"></xdebug:message></response>

<- stack_get -i 9
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="stack_get" transaction_id="9"><stack where="Application_Model_LayoutRow-&gt;_updateRouting" level="0" type="file" filename="file:///home/claudio/public_html/zftest/application/models/LayoutRow.php" lineno="343"></stack><stack where="Application_Model_LayoutRow-&gt;_update" level="1" type="file" filename="file:///home/claudio/public_html/zftest/application/models/LayoutRow.php" lineno="398"></stack><stack where="Zend_Db_Table_Row_Abstract-&gt;_doUpdate" level="2" type="file" filename="file:///home/claudio/public_html/zftest/library/Zend/Db/Table/Row/Abstract.php" lineno="525"></stack><stack where="Zend_Db_Table_Row_Abstract-&gt;save" level="3" type="file" filename="file:///home/claudio/public_html/zftest/library/Zend/Db/Table/Row/Abstract.php" lineno="440"></stack><stack where="Application_Model_ContentRow-&gt;save" level="4" type="file" filename="file:///home/claudio/public_html/zftest/application/models/ContentRow.php" lineno="83"></stack><stack where="Application_Model_JsonRpc-&gt;updateLayout" level="5" type="file" filename="file:///home/claudio/public_html/zftest/application/models/JsonRpc.php" lineno="258"></stack><stack where="call_user_func_array:{/home/claudio/public_html/zftest/library/Zend/Server/Abstract.php:232}" level="6" type="file" filename="file:///home/claudio/public_html/zftest/library/Zend/Server/Abstract.php" lineno="232"></stack><stack where="Zend_Server_Abstract-&gt;_dispatch" level="7" type="file" filename="file:///home/claudio/public_html/zftest/library/Zend/Server/Abstract.php" lineno="232"></stack><stack where="Zend_Json_Server-&gt;_handle" level="8" type="file" filename="file:///home/claudio/public_html/zftest/library/Zend/Json/Server.php" lineno="561"></stack><stack where="Zend_Json_Server-&gt;handle" level="9" type="file" filename="file:///home/claudio/public_html/zftest/library/Zend/Json/Server.php" lineno="191"></stack><stack where="{main}" level="10" type="file" filename="file:///home/claudio/public_html/zftest/public/api/1.0/jsonrpc.php" lineno="67"></stack></response>

<- context_names -i 10 -d 0
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_names" transaction_id="10"><context name="Locals" id="0"></context><context name="Superglobals" id="1"></context><context name="User defined constants" id="2"></context></response>

<- context_get -i 11 -d 0 -c 0
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="11" context="0"><property name="$a" fullname="$a" address="140340406559872" type="bool"><![CDATA[1]]></property><property name="$alias" fullname="$alias" address="140340407401784" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="$allRows" fullname="$allRows" type="uninitialized"></property><property name="$attr" fullname="$attr" address="140340407615088" type="object" classname="DOMAttr" children="1" numchildren="20" page="0" pagesize="100"><property name="name" fullname="$attr-&gt;name" facet="public" address="140340407615248" type="string" size="6" encoding="base64"><![CDATA[dGFyZ2V0]]></property><property name="specified" fullname="$attr-&gt;specified" facet="public" address="140340406489704" type="bool"><![CDATA[1]]></property><property name="value" fullname="$attr-&gt;value" facet="public" address="140340407401208" type="string" size="37" encoding="base64"><![CDATA[L3VhMGIzMDBmL2ltYWdlcy9zaXRvdmFsZS9zbGlkZTE4LmpwZw==]]></property><property name="ownerElement" fullname="$attr-&gt;ownerElement" facet="public" address="140340407614064" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="schemaTypeInfo" fullname="$attr-&gt;schemaTypeInfo" facet="public" address="140340407400872" type="null"></property><property name="nodeName" fullname="$attr-&gt;nodeName" facet="public" address="140340407584136" type="string" size="6" encoding="base64"><![CDATA[dGFyZ2V0]]></property><property name="nodeValue" fullname="$attr-&gt;nodeValue" facet="public" address="140340407099208" type="string" size="37" encoding="base64"><![CDATA[L3VhMGIzMDBmL2ltYWdlcy9zaXRvdmFsZS9zbGlkZTE4LmpwZw==]]></property><property name="nodeType" fullname="$attr-&gt;nodeType" facet="public" address="140340407135968" type="int"><![CDATA[2]]></property><property name="parentNode" fullname="$attr-&gt;parentNode" facet="public" address="140340407614064" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="childNodes" fullname="$attr-&gt;childNodes" facet="public" address="140340407614064" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="firstChild" fullname="$attr-&gt;firstChild" facet="public" address="140340407614064" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="lastChild" fullname="$attr-&gt;lastChild" facet="public" address="140340407614064" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="previousSibling" fullname="$attr-&gt;previousSibling" facet="public" address="140340407614064" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="attributes" fullname="$attr-&gt;attributes" facet="public" address="140340407103408" type="null"></property><property name="ownerDocument" fullname="$attr-&gt;ownerDocument" facet="public" address="140340407614064" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="namespaceURI" fullname="$attr-&gt;namespaceURI" facet="public" address="140340406551944" type="null"></property><property name="prefix" fullname="$attr-&gt;prefix" facet="public" address="140340407107512" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="localName" fullname="$attr-&gt;localName" facet="public" address="140340407400536" type="string" size="6" encoding="base64"><![CDATA[dGFyZ2V0]]></property><property name="baseURI" fullname="$attr-&gt;baseURI" facet="public" address="140340407583320" type="string" size="48" encoding="base64"><![CDATA[L2hvbWUvY2xhdWRpby9wdWJsaWNfaHRtbC96ZnRlc3QvcHVibGljL2FwaS8xLjAv]]></property><property name="textContent" fullname="$attr-&gt;textContent" facet="public" address="140340407614688" type="string" size="37" encoding="base64"><![CDATA[L3VhMGIzMDBmL2ltYWdlcy9zaXRvdmFsZS9zbGlkZTE4LmpwZw==]]></property></property><property name="$attributes" fullname="$attributes" address="140340407085344" type="object" classname="DOMNamedNodeMap" children="1" numchildren="1" page="0" pagesize="100"><property name="length" fullname="$attributes-&gt;length" facet="public" address="140340407101576" type="int"><![CDATA[3]]></property></property><property name="$config" fullname="$config" address="140340407104656" type="string" size="5635" encoding="base64"><![CDATA[PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiID8+PGNvbmZpZyB2ZXJzaW9uPSIxIiBpZD0idmJvZHkiPjxjb25maWc+e308L2NvbmZpZz48Y2hpbGRyZW4+PGNvbnRhaW5lciBpZD0iWDAiPjxjb25maWc+eyJzdHlsZSI6ImJhY2tncm91bmQtY29sb3I6cmdiYSgxMzAsIDEzOCwgMjM3LCAwLjQzOTIxNik7YmFja2dyb3VuZC1pbWFnZTp1cmwoXCJodHRwOi8vemZ0ZXN0LmxvY2FsL3VhMGIzMDBmL2ltYWdlcy9zaXRvdmFsZS9zbGlkZTUucG5nXCIpO2JhY2tncm91bmQtcmVwZWF0Om5vLXJlcGVhdDtiYWNrZ3JvdW5kLXBvc2l0aW9uOjUwJSA1MCU7YmFja2dyb3VuZC1zaXplOmF1dG87bWluLWhlaWdodDowcHg7In08L2NvbmZpZz48ZGVwcz48ZGVwIG5hbWU9ImJhY2tncm91bmRJbWFnZSIgdHlwZT0iaW1nIiB0YXJnZXQ9Ii91YTBiMzAwZi9pbWFnZXMvc2l0b3ZhbGUvc2xpZGU1LnBuZyIvPjwvZGVwcz48Y2hpbGRyZW4+PHNlY3Rpb24gaWQ9IlgxNyI+PGNvbmZpZz57InN0eWxlIjoiZGlzcGxheTogYmxvY2s7IHBhZGRpbmctdG9wOiAwcHg7IHBhZGRpbmctYm90dG9tOiAwcHg7IGJvcmRlci1yYWRpdXM6IDBweDsgbWluLWhlaWdodDogMHB4OyBiYWNrZ3JvdW5kLWltYWdlOiBub25lOyBiYWNrZ3JvdW5kLWNvbG9yOiByZ2JhKDE5OSwgMTY0LCA2NSwgMC40OTgwMzkpOyBiYWNrZ3JvdW5kLXBvc2l0aW9uOiAwJSAwJTsgYmFja2dyb3VuZC1yZXBlYXQ6IHJlcGVhdDsifTwvY29uZmlnPjxjaGlsZHJlbj48Z3JpZCBpZD0iWDE4Ij48Y29uZmlnPnsic2l6ZSI6MTYsInN0eWxlIjoiIn08L2NvbmZpZz48Y2hpbGRyZW4+PHBsdWdpbiBpZD0iWDE5Ij48cGx1Z2luTmFtZT5DYW52YXM8L3BsdWdpbk5hbWU+PGNvbnRlbnRJZD4xNDA8L2NvbnRlbnRJZD48Y29udGVudFRpdGxlLz48Y29uZmlnPnsid2ljaGlsZHJlbiI6W3sidHlwZSI6ImltYWdlIiwiaHJlZiI6IiNfc2VsZi9faW50ZXJuYWwvQ09OVEVOVC8yNS9DYXNhIExhdmFnbmEvQ2xhdWRpbyBFdGVybm8iLCJzdHlsZSI6IndpZHRoOg==]]></property><property name="$connector" fullname="$connector" address="140340407138272" type="array" children="1" numchildren="3" page="0" pagesize="100"><property name="0" fullname="$connector[0]" address="140340407614320" type="int"><![CDATA[78]]></property><property name="1" fullname="$connector[1]" address="140340407140912" type="int"><![CDATA[79]]></property><property name="2" fullname="$connector[2]" address="140340407133312" type="int"><![CDATA[80]]></property></property><property name="$dep" fullname="$dep" address="140340407138864" type="object" classname="DOMElement" children="1" numchildren="17" page="0" pagesize="100"><property name="tagName" fullname="$dep-&gt;tagName" facet="public" address="140340407102968" type="string" size="3" encoding="base64"><![CDATA[ZGVw]]></property><property name="schemaTypeInfo" fullname="$dep-&gt;schemaTypeInfo" facet="public" address="140340407399672" type="null"></property><property name="nodeName" fullname="$dep-&gt;nodeName" facet="public" address="140340407589096" type="string" size="3" encoding="base64"><![CDATA[ZGVw]]></property><property name="nodeValue" fullname="$dep-&gt;nodeValue" facet="public" address="140340407613904" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="nodeType" fullname="$dep-&gt;nodeType" facet="public" address="140340407100600" type="int"><![CDATA[1]]></property><property name="parentNode" fullname="$dep-&gt;parentNode" facet="public" address="140340407589048" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="childNodes" fullname="$dep-&gt;childNodes" facet="public" address="140340407589048" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="firstChild" fullname="$dep-&gt;firstChild" facet="public" address="140340407100272" type="null"></property><property name="lastChild" fullname="$dep-&gt;lastChild" facet="public" address="140340407399768" type="null"></property><property name="previousSibling" fullname="$dep-&gt;previousSibling" facet="public" address="140340407101528" type="null"></property><property name="attributes" fullname="$dep-&gt;attributes" facet="public" address="140340407589048" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="ownerDocument" fullname="$dep-&gt;ownerDocument" facet="public" address="140340407589048" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="namespaceURI" fullname="$dep-&gt;namespaceURI" facet="public" address="140340407106328" type="null"></property><property name="prefix" fullname="$dep-&gt;prefix" facet="public" address="140340407107752" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="localName" fullname="$dep-&gt;localName" facet="public" address="140340407407848" type="string" size="3" encoding="base64"><![CDATA[ZGVw]]></property><property name="baseURI" fullname="$dep-&gt;baseURI" facet="public" address="140340407106408" type="string" size="48" encoding="base64"><![CDATA[L2hvbWUvY2xhdWRpby9wdWJsaWNfaHRtbC96ZnRlc3QvcHVibGljL2FwaS8xLjAv]]></property><property name="textContent" fullname="$dep-&gt;textContent" facet="public" address="140340407102288" type="string" size="0" encoding="base64"><![CDATA[]]></property></property><property name="$deps" fullname="$deps" address="140340407402168" type="object" classname="DOMNodeList" children="1" numchildren="1" page="0" pagesize="100"><property name="length" fullname="$deps-&gt;length" facet="public" address="140340406556184" type="int"><![CDATA[6]]></property></property><property name="$depsList" fullname="$depsList" address="140340407402072" type="array" children="1" numchildren="6" page="0" pagesize="100"><property name="0" fullname="$depsList[0]" address="140340407407704" type="array" children="1" numchildren="3"></property><property name="1" fullname="$depsList[1]" address="140340407107272" type="array" children="1" numchildren="3"></property><property name="2" fullname="$depsList[2]" address="140340407140272" type="array" children="1" numchildren="3"></property><property name="3" fullname="$depsList[3]" address="140340407100448" type="array" children="1" numchildren="3"></property><property name="4" fullname="$depsList[4]" address="140340407101928" type="array" children="1" numchildren="3"></property><property name="5" fullname="$depsList[5]" address="140340407101480" type="array" children="1" numchildren="3"></property></property><property name="$doc" fullname="$doc" address="140340406484048" type="object" classname="DOMDocument" children="1" numchildren="34" page="0" pagesize="100"><property name="doctype" fullname="$doc-&gt;doctype" facet="public" address="140340407085536" type="null"></property><property name="implementation" fullname="$doc-&gt;implementation" facet="public" address="140340407140424" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="documentElement" fullname="$doc-&gt;documentElement" facet="public" address="140340407140424" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="actualEncoding" fullname="$doc-&gt;actualEncoding" facet="public" address="140340407106568" type="string" size="5" encoding="base64"><![CDATA[VVRGLTg=]]></property><property name="encoding" fullname="$doc-&gt;encoding" facet="public" address="140340407614768" type="string" size="5" encoding="base64"><![CDATA[VVRGLTg=]]></property><property name="xmlEncoding" fullname="$doc-&gt;xmlEncoding" facet="public" address="140340407584216" type="string" size="5" encoding="base64"><![CDATA[VVRGLTg=]]></property><property name="standalone" fullname="$doc-&gt;standalone" facet="public" address="140340407613984" type="bool"><![CDATA[1]]></property><property name="xmlStandalone" fullname="$doc-&gt;xmlStandalone" facet="public" address="140340407614928" type="bool"><![CDATA[1]]></property><property name="version" fullname="$doc-&gt;version" facet="public" address="140340407089008" type="string" size="3" encoding="base64"><![CDATA[MS4w]]></property><property name="xmlVersion" fullname="$doc-&gt;xmlVersion" facet="public" address="140340407142272" type="string" size="3" encoding="base64"><![CDATA[MS4w]]></property><property name="strictErrorChecking" fullname="$doc-&gt;strictErrorChecking" facet="public" address="140340406480720" type="bool"><![CDATA[1]]></property><property name="documentURI" fullname="$doc-&gt;documentURI" facet="public" address="140340407584456" type="string" size="48" encoding="base64"><![CDATA[L2hvbWUvY2xhdWRpby9wdWJsaWNfaHRtbC96ZnRlc3QvcHVibGljL2FwaS8xLjAv]]></property><property name="config" fullname="$doc-&gt;config" facet="public" address="140340407399864" type="null"></property><property name="formatOutput" fullname="$doc-&gt;formatOutput" facet="public" address="140340407098960" type="bool"><![CDATA[0]]></property><property name="validateOnParse" fullname="$doc-&gt;validateOnParse" facet="public" address="140340407583704" type="bool"><![CDATA[0]]></property><property name="resolveExternals" fullname="$doc-&gt;resolveExternals" facet="public" address="140340407087632" type="bool"><![CDATA[0]]></property><property name="preserveWhiteSpace" fullname="$doc-&gt;preserveWhiteSpace" facet="public" address="140340407141832" type="bool"><![CDATA[1]]></property><property name="recover" fullname="$doc-&gt;recover" facet="public" address="140340407141392" type="bool"><![CDATA[0]]></property><property name="substituteEntities" fullname="$doc-&gt;substituteEntities" facet="public" address="140340407101184" type="bool"><![CDATA[0]]></property><property name="nodeName" fullname="$doc-&gt;nodeName" facet="public" address="140340407141688" type="string" size="9" encoding="base64"><![CDATA[I2RvY3VtZW50]]></property><property name="nodeValue" fullname="$doc-&gt;nodeValue" facet="public" address="140340407583976" type="null"></property><property name="nodeType" fullname="$doc-&gt;nodeType" facet="public" address="140340406479744" type="int"><![CDATA[9]]></property><property name="parentNode" fullname="$doc-&gt;parentNode" facet="public" address="140340407613616" type="null"></property><property name="childNodes" fullname="$doc-&gt;childNodes" facet="public" address="140340407140424" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="firstChild" fullname="$doc-&gt;firstChild" facet="public" address="140340407140424" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="lastChild" fullname="$doc-&gt;lastChild" facet="public" address="140340407140424" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="previousSibling" fullname="$doc-&gt;previousSibling" facet="public" address="140340407140864" type="null"></property><property name="attributes" fullname="$doc-&gt;attributes" facet="public" address="140340407145056" type="null"></property><property name="ownerDocument" fullname="$doc-&gt;ownerDocument" facet="public" address="140340407401448" type="null"></property><property name="namespaceURI" fullname="$doc-&gt;namespaceURI" facet="public" address="140340407140712" type="null"></property><property name="prefix" fullname="$doc-&gt;prefix" facet="public" address="140340406494352" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="localName" fullname="$doc-&gt;localName" facet="public" address="140340407146000" type="null"></property><property name="baseURI" fullname="$doc-&gt;baseURI" facet="public" address="140340407145920" type="string" size="48" encoding="base64"><![CDATA[L2hvbWUvY2xhdWRpby9wdWJsaWNfaHRtbC96ZnRlc3QvcHVibGljL2FwaS8xLjAv]]></property><property name="textContent" fullname="$doc-&gt;textContent" facet="public" address="140340407145840" type="string" size="3294" encoding="base64"><![CDATA[e317InN0eWxlIjoiYmFja2dyb3VuZC1jb2xvcjpyZ2JhKDEzMCwgMTM4LCAyMzcsIDAuNDM5MjE2KTtiYWNrZ3JvdW5kLWltYWdlOnVybChcImh0dHA6Ly96ZnRlc3QubG9jYWwvdWEwYjMwMGYvaW1hZ2VzL3NpdG92YWxlL3NsaWRlNS5wbmdcIik7YmFja2dyb3VuZC1yZXBlYXQ6bm8tcmVwZWF0O2JhY2tncm91bmQtcG9zaXRpb246NTAlIDUwJTtiYWNrZ3JvdW5kLXNpemU6YXV0bzttaW4taGVpZ2h0OjBweDsifXsic3R5bGUiOiJkaXNwbGF5OiBibG9jazsgcGFkZGluZy10b3A6IDBweDsgcGFkZGluZy1ib3R0b206IDBweDsgYm9yZGVyLXJhZGl1czogMHB4OyBtaW4taGVpZ2h0OiAwcHg7IGJhY2tncm91bmQtaW1hZ2U6IG5vbmU7IGJhY2tncm91bmQtY29sb3I6IHJnYmEoMTk5LCAxNjQsIDY1LCAwLjQ5ODAzOSk7IGJhY2tncm91bmQtcG9zaXRpb246IDAlIDAlOyBiYWNrZ3JvdW5kLXJlcGVhdDogcmVwZWF0OyJ9eyJzaXplIjoxNiwic3R5bGUiOiIifUNhbnZhczE0MHsid2ljaGlsZHJlbiI6W3sidHlwZSI6ImltYWdlIiwiaHJlZiI6IiNfc2VsZi9faW50ZXJuYWwvQ09OVEVOVC8yNS9DYXNhIExhdmFnbmEvQ2xhdWRpbyBFdGVybm8iLCJzdHlsZSI6IndpZHRoOiAxMjhweDsgbGVmdDogMTAxcHg7IHRvcDogMjRweDsgaGVpZ2h0OiAxOTZweDsgYm94LXNoYWRvdzogbm9uZTsgYm9yZGVyLXN0eWxlOiBub25lOyIsImFsdCI6IiIsInNyYyI6Ii91YTBiMzAwZi9pbWFnZXMvc2l0by9yYW1pbmEtMi4xLmpwZyJ9LHsidHlwZSI6InRleHQiLCJzdHlsZSI6ImZvbnQtc2l6ZTogMS4zZW07IGxlZnQ6IDI4N3B4OyB0b3A6IDcycHg7IGZvbnQtZmFtaWx5OiAnQ29taWMgU2FucyBNUycsIGN1cnNpdmUsIHNhbnMtc2VyaWY7IHRleHQtc2hhZG93OiBub25lOyBib3JkZXItc3R5bGU6IG5vbmU7IiwidGV4dCI6IjxwPjxzcGFuIHN0eWxlPVwiZm9udC1zaXplOjIycHhcIj5Ub28gPC9zcGFuPjxzcGFuIHN0eWxlPVwiZm9udC1zaXplOjI2cHhcIj48c3Ryb25nPndvcms8L3N0cm9uZz48L3NwYW4+PHNwYW4gcw==]]></property></property><property name="$ix" fullname="$ix" address="140340407101480" type="array" children="1" numchildren="3" page="0" pagesize="100"><property name="name" fullname="$ix[&#39;name&#39;]" address="140340407407896" type="string" size="15" encoding="base64"><![CDATA[YmFja2dyb3VuZEltYWdl]]></property><property name="type" fullname="$ix[&#39;type&#39;]" address="140340407615168" type="string" size="3" encoding="base64"><![CDATA[aW1n]]></property><property name="target" fullname="$ix[&#39;target&#39;]" address="140340407106648" type="string" size="37" encoding="base64"><![CDATA[L3VhMGIzMDBmL2ltYWdlcy9zaXRvdmFsZS9zbGlkZTE4LmpwZw==]]></property></property><property name="$list" fullname="$list" type="uninitialized"></property><property name="$model" fullname="$model" address="140340407137296" type="string" size="7" encoding="base64"><![CDATA[Y29udGFjdA==]]></property><property name="$name" fullname="$name" address="140340407408152" type="string" size="6" encoding="base64"><![CDATA[dGFyZ2V0]]></property><property name="$nl" fullname="$nl" address="140340407101328" type="object" classname="DOMNodeList" children="1" numchildren="1" page="0" pagesize="100"><property name="length" fullname="$nl-&gt;length" facet="public" address="140340407145680" type="int"><![CDATA[1]]></property></property><property name="$pid" fullname="$pid" address="140340407402024" type="string" size="3" encoding="base64"><![CDATA[WDEz]]></property><property name="$plugin" fullname="$plugin" address="140340407401736" type="object" classname="DOMElement" children="1" numchildren="18" page="0" pagesize="100"><property name="tagName" fullname="$plugin-&gt;tagName" facet="public" address="140340407145600" type="string" size="6" encoding="base64"><![CDATA[cGx1Z2lu]]></property><property name="schemaTypeInfo" fullname="$plugin-&gt;schemaTypeInfo" facet="public" address="140340407145520" type="null"></property><property name="nodeName" fullname="$plugin-&gt;nodeName" facet="public" address="140340407145440" type="string" size="6" encoding="base64"><![CDATA[cGx1Z2lu]]></property><property name="nodeValue" fullname="$plugin-&gt;nodeValue" facet="public" address="140340407145392" type="string" size="142" encoding="base64"><![CDATA[CiAgICAgICAgQ29udGFjdCBGb3JtCiAgICAgICAgZm9ybQogICAgICAgIGZvcm0KICAgICAgICBNb2R1bG8gY29udGF0dG8gdmlhIGVtYWlsCiAgICAgICAgY29udGFjdAogICAgICAgIGNvbnRhY3QKICAgICAgICAvYnVpbGQvcGx1Z2luCiAgICAgIA==]]></property><property name="nodeType" fullname="$plugin-&gt;nodeType" facet="public" address="140340407145200" type="int"><![CDATA[1]]></property><property name="parentNode" fullname="$plugin-&gt;parentNode" facet="public" address="140340407408072" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="childNodes" fullname="$plugin-&gt;childNodes" facet="public" address="140340407408072" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="firstChild" fullname="$plugin-&gt;firstChild" facet="public" address="140340407408072" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="lastChild" fullname="$plugin-&gt;lastChild" facet="public" address="140340407408072" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="previousSibling" fullname="$plugin-&gt;previousSibling" facet="public" address="140340407408072" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="nextSibling" fullname="$plugin-&gt;nextSibling" facet="public" address="140340407408072" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="attributes" fullname="$plugin-&gt;attributes" facet="public" address="140340407408072" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="ownerDocument" fullname="$plugin-&gt;ownerDocument" facet="public" address="140340407408072" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="namespaceURI" fullname="$plugin-&gt;namespaceURI" facet="public" address="140340407142128" type="null"></property><property name="prefix" fullname="$plugin-&gt;prefix" facet="public" address="140340407399720" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="localName" fullname="$plugin-&gt;localName" facet="public" address="140340407145152" type="string" size="6" encoding="base64"><![CDATA[cGx1Z2lu]]></property><property name="baseURI" fullname="$plugin-&gt;baseURI" facet="public" address="140340407145008" type="string" size="75" encoding="base64"><![CDATA[L2hvbWUvY2xhdWRpby9wdWJsaWNfaHRtbC96ZnRlc3QvcHVibGljL3RlbXBsYXRlcy9kcmFjbWEvYXNzZXRzL3dpZGdldHMueG1s]]></property><property name="textContent" fullname="$plugin-&gt;textContent" facet="public" address="140340407144960" type="string" size="142" encoding="base64"><![CDATA[CiAgICAgICAgQ29udGFjdCBGb3JtCiAgICAgICAgZm9ybQogICAgICAgIGZvcm0KICAgICAgICBNb2R1bG8gY29udGF0dG8gdmlhIGVtYWlsCiAgICAgICAgY29udGFjdAogICAgICAgIGNvbnRhY3QKICAgICAgICAvYnVpbGQvcGx1Z2luCiAgICAgIA==]]></property></property><property name="$plugins" fullname="$plugins" address="140340407402264" type="object" classname="DOMNodeList" children="1" numchildren="1" page="0" pagesize="100"><property name="length" fullname="$plugins-&gt;length" facet="public" address="140340407144864" type="int"><![CDATA[6]]></property></property><property name="$pname" fullname="$pname" address="140340407401496" type="string" size="11" encoding="base64"><![CDATA[Q29udGFjdEZvcm0=]]></property><property name="$routingTable" fullname="$routingTable" address="140340406480328" type="object" classname="Application_Model_RoutingRulesManager" children="1" numchildren="33" page="0" pagesize="100"><property name="_defaultDb" fullname="$routingTable::_defaultDb" facet="static protected" address="140340133787984" type="object" classname="Zend_Db_Adapter_Mysqli" children="1" numchildren="12"></property><property name="_defaultMetadataCache" fullname="$routingTable::_defaultMetadataCache" facet="static protected" address="140340133788536" type="null"></property><property name="_rowClass" fullname="$routingTable-&gt;_rowClass" facet="protected" address="140340406480064" type="string" size="29" encoding="base64"><![CDATA[QXBwbGljYXRpb25fTW9kZWxfUm91dGluZ1J1bGU=]]></property><property name="_name" fullname="$routingTable-&gt;_name" facet="protected" address="140340407142864" type="string" size="13" encoding="base64"><![CDATA[cm91dGluZ19ydWxlcw==]]></property><property name="_hasProject" fullname="$routingTable-&gt;_hasProject" facet="protected" address="140340406486640" type="bool"><![CDATA[1]]></property><property name="_uidata" fullname="$routingTable-&gt;_uidata" facet="protected" address="140340406571600" type="array" children="1" numchildren="5"></property><property name="_subsets" fullname="$routingTable-&gt;_subsets" facet="protected" address="140340406575808" type="array" children="1" numchildren="1"></property><property name="_jqgridValidators" fullname="$routingTable-&gt;_jqgridValidators" facet="protected" address="140340406484704" type="array" children="1" numchildren="6"></property><property name="_projectId" fullname="$routingTable-&gt;_projectId" facet="protected" address="140340407422568" type="null"></property><property name="_projectModel" fullname="$routingTable-&gt;_projectModel" facet="protected" address="140340407401880" type="null"></property><property name="_primary" fullname="$routingTable-&gt;_primary" facet="protected" address="140340407401352" type="array" children="1" numchildren="1"></property><property name="_order" fullname="$routingTable-&gt;_order" facet="protected" address="140340407240368" type="array" children="0" numchildren="0"></property><property name="_limit" fullname="$routingTable-&gt;_limit" facet="protected" address="140340406242912" type="int"><![CDATA[50]]></property><property name="_timeOut" fullname="$routingTable-&gt;_timeOut" facet="protected" address="140340406238216" type="int"><![CDATA[5]]></property><property name="_checkExistenceUseAuth" fullname="$routingTable-&gt;_checkExistenceUseAuth" facet="protected" address="140340406101808" type="bool"><![CDATA[1]]></property><property name="_userIdentity" fullname="$routingTable-&gt;_userIdentity" facet="protected" address="140340406256888" type="null"></property><property name="_mode" fullname="$routingTable-&gt;_mode" facet="protected" address="140340407421472" type="int"><![CDATA[2]]></property><property name="_param" fullname="$routingTable-&gt;_param" facet="protected" address="140340407401832" type="array" children="0" numchildren="0"></property><property name="_definition" fullname="$routingTable-&gt;_definition" facet="protected" address="140340133788320" type="null"></property><property name="_definitionConfigName" fullname="$routingTable-&gt;_definitionConfigName" facet="protected" address="140340133788488" type="null"></property><property name="_db" fullname="$routingTable-&gt;_db" facet="protected" address="140340407138424" type="object" classname="Zend_Db_Adapter_Mysqli" children="1" numchildren="12"></property><property name="_schema" fullname="$routingTable-&gt;_schema" facet="protected" address="140340133789320" type="null"></property><property name="_cols" fullname="$routingTable-&gt;_cols" facet="protected" address="140340407401304" type="array" children="1" numchildren="9"></property><property name="_identity" fullname="$routingTable-&gt;_identity" facet="protected" address="140340133790632" type="int"><![CDATA[1]]></property><property name="_sequence" fullname="$routingTable-&gt;_sequence" facet="protected" address="140340133791016" type="bool"><![CDATA[1]]></property><property name="_metadata" fullname="$routingTable-&gt;_metadata" facet="protected" address="140340406552920" type="array" children="1" numchildren="9"></property><property name="_metadataCache" fullname="$routingTable-&gt;_metadataCache" facet="protected" address="140340133791728" type="null"></property><property name="_metadataCacheInClass" fullname="$routingTable-&gt;_metadataCacheInClass" facet="protected" address="140340133791944" type="bool"><![CDATA[1]]></property><property name="_rowsetClass" fullname="$routingTable-&gt;_rowsetClass" facet="protected" address="140340133792656" type="string" size="20" encoding="base64"><![CDATA[WmVuZF9EYl9UYWJsZV9Sb3dzZXQ=]]></property><property name="_referenceMap" fullname="$routingTable-&gt;_referenceMap" facet="protected" address="140340406560456" type="array" children="0" numchildren="0"></property><property name="_dependentTables" fullname="$routingTable-&gt;_dependentTables" facet="protected" address="140340406559952" type="array" children="0" numchildren="0"></property><property name="_defaultSource" fullname="$routingTable-&gt;_defaultSource" facet="protected" address="140340406481360" type="string" size="11" encoding="base64"><![CDATA[ZGVmYXVsdE5vbmU=]]></property><property name="_defaultValues" fullname="$routingTable-&gt;_defaultValues" facet="protected" address="140340406481624" type="array" children="0" numchildren="0"></property></property><property name="$row" fullname="$row" type="uninitialized"></property><property name="$rule" fullname="$rule" address="140340407086016" type="object" classname="Application_Model_RoutingRule" children="1" numchildren="8" page="0" pagesize="100"><property name="_data" fullname="$rule-&gt;_data" facet="protected" address="140340407108088" type="array" children="1" numchildren="9"></property><property name="_cleanData" fullname="$rule-&gt;_cleanData" facet="protected" address="140340407108088" type="array" children="1" numchildren="9"></property><property name="_modifiedFields" fullname="$rule-&gt;_modifiedFields" facet="protected" address="140340406996000" type="array" children="0" numchildren="0"></property><property name="_table" fullname="$rule-&gt;_table" facet="protected" address="140340406480328" type="object" classname="Application_Model_RoutingRulesManager" children="1" numchildren="33"></property><property name="_connected" fullname="$rule-&gt;_connected" facet="protected" address="140340406561944" type="bool"><![CDATA[1]]></property><property name="_readOnly" fullname="$rule-&gt;_readOnly" facet="protected" address="140340406562136" type="bool"><![CDATA[0]]></property><property name="_tableClass" fullname="$rule-&gt;_tableClass" facet="protected" address="140340407584376" type="string" size="37" encoding="base64"><![CDATA[QXBwbGljYXRpb25fTW9kZWxfUm91dGluZ1J1bGVzTWFuYWdlcg==]]></property><property name="_primary" fullname="$rule-&gt;_primary" facet="protected" address="140340407614464" type="array" children="1" numchildren="1"></property></property><property name="$template" fullname="$template" address="140340407138128" type="object" classname="DOMDocument" children="1" numchildren="34" page="0" pagesize="100"><property name="doctype" fullname="$template-&gt;doctype" facet="public" address="140340407145760" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="implementation" fullname="$template-&gt;implementation" facet="public" address="140340407145760" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="documentElement" fullname="$template-&gt;documentElement" facet="public" address="140340407145760" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="actualEncoding" fullname="$template-&gt;actualEncoding" facet="public" address="140340407144712" type="string" size="5" encoding="base64"><![CDATA[VVRGLTg=]]></property><property name="encoding" fullname="$template-&gt;encoding" facet="public" address="140340407428120" type="string" size="5" encoding="base64"><![CDATA[VVRGLTg=]]></property><property name="xmlEncoding" fullname="$template-&gt;xmlEncoding" facet="public" address="140340407422352" type="string" size="5" encoding="base64"><![CDATA[VVRGLTg=]]></property><property name="standalone" fullname="$template-&gt;standalone" facet="public" address="140340407427832" type="bool"><![CDATA[1]]></property><property name="xmlStandalone" fullname="$template-&gt;xmlStandalone" facet="public" address="140340406493776" type="bool"><![CDATA[1]]></property><property name="version" fullname="$template-&gt;version" facet="public" address="140340407427408" type="string" size="3" encoding="base64"><![CDATA[MS4w]]></property><property name="xmlVersion" fullname="$template-&gt;xmlVersion" facet="public" address="140340407399960" type="string" size="3" encoding="base64"><![CDATA[MS4w]]></property><property name="strictErrorChecking" fullname="$template-&gt;strictErrorChecking" facet="public" address="140340406587760" type="bool"><![CDATA[1]]></property><property name="documentURI" fullname="$template-&gt;documentURI" facet="public" address="140340407145104" type="string" size="75" encoding="base64"><![CDATA[L2hvbWUvY2xhdWRpby9wdWJsaWNfaHRtbC96ZnRlc3QvcHVibGljL3RlbXBsYXRlcy9kcmFjbWEvYXNzZXRzL3dpZGdldHMueG1s]]></property><property name="config" fullname="$template-&gt;config" facet="public" address="140340407400728" type="null"></property><property name="formatOutput" fullname="$template-&gt;formatOutput" facet="public" address="140340407086304" type="bool"><![CDATA[0]]></property><property name="validateOnParse" fullname="$template-&gt;validateOnParse" facet="public" address="140340407400584" type="bool"><![CDATA[0]]></property><property name="resolveExternals" fullname="$template-&gt;resolveExternals" facet="public" address="140340407400152" type="bool"><![CDATA[0]]></property><property name="preserveWhiteSpace" fullname="$template-&gt;preserveWhiteSpace" facet="public" address="140340406553856" type="bool"><![CDATA[1]]></property><property name="recover" fullname="$template-&gt;recover" facet="public" address="140340406556760" type="bool"><![CDATA[0]]></property><property name="substituteEntities" fullname="$template-&gt;substituteEntities" facet="public" address="140340407400104" type="bool"><![CDATA[0]]></property><property name="nodeName" fullname="$template-&gt;nodeName" facet="public" address="140340407400200" type="string" size="9" encoding="base64"><![CDATA[I2RvY3VtZW50]]></property><property name="nodeValue" fullname="$template-&gt;nodeValue" facet="public" address="140340407400296" type="null"></property><property name="nodeType" fullname="$template-&gt;nodeType" facet="public" address="140340407400344" type="int"><![CDATA[9]]></property><property name="parentNode" fullname="$template-&gt;parentNode" facet="public" address="140340407399816" type="null"></property><property name="childNodes" fullname="$template-&gt;childNodes" facet="public" address="140340407145760" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="firstChild" fullname="$template-&gt;firstChild" facet="public" address="140340407145760" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="lastChild" fullname="$template-&gt;lastChild" facet="public" address="140340407145760" type="string" size="22" encoding="base64"><![CDATA[KG9iamVjdCB2YWx1ZSBvbWl0dGVkKQ==]]></property><property name="previousSibling" fullname="$template-&gt;previousSibling" facet="public" address="140340407400632" type="null"></property><property name="attributes" fullname="$template-&gt;attributes" facet="public" address="140340407400680" type="null"></property><property name="ownerDocument" fullname="$template-&gt;ownerDocument" facet="public" address="140340407400008" type="null"></property><property name="namespaceURI" fullname="$template-&gt;namespaceURI" facet="public" address="140340407400392" type="null"></property><property name="prefix" fullname="$template-&gt;prefix" facet="public" address="140340407401928" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="localName" fullname="$template-&gt;localName" facet="public" address="140340407401544" type="null"></property><property name="baseURI" fullname="$template-&gt;baseURI" facet="public" address="140340407400776" type="string" size="75" encoding="base64"><![CDATA[L2hvbWUvY2xhdWRpby9wdWJsaWNfaHRtbC96ZnRlc3QvcHVibGljL3RlbXBsYXRlcy9kcmFjbWEvYXNzZXRzL3dpZGdldHMueG1s]]></property><property name="textContent" fullname="$template-&gt;textContent" facet="public" address="140340407400440" type="string" size="1579" encoding="base64"><![CDATA[CiAgQ2xhdWRpbwogIERyYWNtYSB0ZW1wbGF0ZQogIAogICAgZHJhY21hCiAgICAxNDU1NDMzOTA0CiAgCiAgdGVtcGxhdGVzL2RyYWNtYS9wbHVnaW5zCiAgaHR0cDovL21hcHMuZ29vZ2xlLmNvbS9tYXBzL2FwaS9qcwogIC9wdWJsaWMvanMvanF1ZXJ5L2pxdWVyeS11aS1tYXAvbWluL2pxdWVyeS51aS5tYXAubWluLmpzCiAgCiAgICAKICAgICAgSW1tYWdpbmkKICAgICAgSW5mb3JtYXppb25pIGRpIHBhZ2luYQogICAgICBJbnRlc3RhemlvbmkKICAgICAgVGVzdGkgTXVsdGlsaW5lYQogICAgICBnYWxsZXJpYSBkaSBJbW1hZ2luaQogICAgICBUZXN0aQogICAgICBNZW51CiAgICAgIE1vZHVsaQogICAgICBEZWNvcmF6aW9uaQogICAgICBNYXBwZQogICAgICBDYXRlZ29yaWUKICAgIAogICAgCiAgICAgIAogICAgICAgIEFydGljb2xvCiAgICAgICAgdGV4dAogICAgICAgIGFydGljb2xvCiAgICAgICAgQXJ0aWNvbG8KICAgICAgICBtYWluCiAgICAgICAgYXJ0aWNsZQogICAgICAgIGFydGljbGUKICAgICAgICAvYnVpbGQvcGx1Z2luCiAgICAgIAogICAgICAKICAgICAgICBQcmVzZW50YXppb25lIEFydGljb2xvWAogICAgICAgIHRleHQKICAgICAgICBhcnRpY29sbwogICAgICAgIFByZXNlbnRhemlvbmUgQXJ0aWNvbG9YCiAgICAgICAgYXJ0aWNsZQogICAgICAgIGZhbHNlCiAgICAgICAgdGVtcGxhdGVzL2RyYWNtYS9wbHVnaW5zCiAgICAgICAgL2J1aWxkL3BsdWdpbgogICAgICAKICAgICAgCiAgICAgICAgQ29udGFjdCBGb3JtCiAgICAgICAgZm9ybQogICAgICAgIGZvcm0KICAgICAgICBNb2R1bG8gY29udGF0dG8gdmlhIGVtYWlsCiAgICAgICAgY29udGFjdAogICAgICAgIGNvbnRhY3QKICAgICAgICAvYnVpbGQvcGx1Z2luCiAgICAgIAogICAgICAKICAgICAgICBTRiBNZW51CiAgICAgICAgbWVudQogICAgICAgIG1lbnUKICAgICAgICBTdXBlci1GaXNoIE1lbnUKICAgICAgICBtZW51CiAgICAgICAgL2J1aWxkL3BsdWdpbgogICAgICAKICAgICAgCiAgICAgICAgTGluayBkaSBpbg==]]></property></property><property name="$x" fullname="$x" address="140340407401976" type="object" classname="DOMNodeList" children="1" numchildren="1" page="0" pagesize="100"><property name="length" fullname="$x-&gt;length" facet="public" address="140340406477408" type="int"><![CDATA[1]]></property></property><property name="$this" fullname="$this" address="140340406099584" type="object" classname="Application_Model_LayoutRow" children="1" numchildren="23" page="0" pagesize="100"><property name="_project" fullname="$this-&gt;_project" facet="protected" address="140340407097696" type="null"></property><property name="_serializedFields" fullname="$this-&gt;_serializedFields" facet="protected" address="140340407094520" type="array" children="1" numchildren="8"></property><property name="_accepted_version" fullname="$this-&gt;_accepted_version" facet="protected" address="140340407096296" type="array" children="1" numchildren="2"></property><property name="_allowed" fullname="$this-&gt;_allowed" facet="protected" address="140340407094568" type="array" children="1" numchildren="1"></property><property name="_project_id" fullname="$this-&gt;_project_id" facet="protected" address="140340407092728" type="null"></property><property name="_delete_prod_style" fullname="$this-&gt;_delete_prod_style" facet="protected" address="140340407092576" type="bool"><![CDATA[0]]></property><property name="_virtualColumns" fullname="$this-&gt;_virtualColumns" facet="protected" address="140340407098520" type="array" children="0" numchildren="0"></property><property name="_subsetkey" fullname="$this-&gt;_subsetkey" facet="protected" address="140340407092136" type="string" size="10" encoding="base64"><![CDATA[cHJvamVjdF9pZA==]]></property><property name="_userIdentity" fullname="$this-&gt;_userIdentity" facet="protected" address="140340407092528" type="null"></property><property name="_owner_column" fullname="$this-&gt;_owner_column" facet="protected" address="140340407091984" type="string" size="8" encoding="base64"><![CDATA[b3duZXJfaWQ=]]></property><property name="_columnValidator" fullname="$this-&gt;_columnValidator" facet="protected" address="140340407093064" type="array" children="0" numchildren="0"></property><property name="_header_columns" fullname="$this-&gt;_header_columns" facet="protected" address="140340407094368" type="array" children="1" numchildren="8"></property><property name="_depManager" fullname="$this-&gt;_depManager" facet="protected" address="140340407091272" type="null"></property><property name="_header_row" fullname="$this-&gt;_header_row" facet="protected" address="140340406490952" type="object" classname="Application_Model_Header" children="1" numchildren="17"></property><property name="_depContent" fullname="$this-&gt;_depContent" facet="protected" address="140340407093248" type="array" children="0" numchildren="0"></property><property name="_data" fullname="$this-&gt;_data" facet="protected" address="140340407174864" type="array" children="1" numchildren="21"></property><property name="_cleanData" fullname="$this-&gt;_cleanData" facet="protected" address="140340407098376" type="array" children="1" numchildren="21"></property><property name="_modifiedFields" fullname="$this-&gt;_modifiedFields" facet="protected" address="140340407105624" type="array" children="0" numchildren="0"></property><property name="_table" fullname="$this-&gt;_table" facet="protected" address="140340406498432" type="object" classname="Application_Model_LayoutTable" children="1" numchildren="32"></property><property name="_connected" fullname="$this-&gt;_connected" facet="protected" address="140340406561944" type="bool"><![CDATA[1]]></property><property name="_readOnly" fullname="$this-&gt;_readOnly" facet="protected" address="140340406562136" type="bool"><![CDATA[0]]></property><property name="_tableClass" fullname="$this-&gt;_tableClass" facet="protected" address="140340407092984" type="string" size="29" encoding="base64"><![CDATA[QXBwbGljYXRpb25fTW9kZWxfTGF5b3V0VGFibGU=]]></property><property name="_primary" fullname="$this-&gt;_primary" facet="protected" address="140340407332480" type="array" children="1" numchildren="1"></property></property></response>

<- context_get -i 12 -d 0 -c 1
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="12" context="1"><property name="$_COOKIE" fullname="$_COOKIE" address="140340379834224" type="array" children="1" numchildren="9" page="0" pagesize="100"><property name="ZFKC_showname" fullname="$_COOKIE[&#39;ZFKC_showname&#39;]" address="140340379835040" type="string" size="2" encoding="base64"><![CDATA[b24=]]></property><property name="ZFKC_showsize" fullname="$_COOKIE[&#39;ZFKC_showsize&#39;]" address="140340379835488" type="string" size="3" encoding="base64"><![CDATA[b2Zm]]></property><property name="ZFKC_showtime" fullname="$_COOKIE[&#39;ZFKC_showtime&#39;]" address="140340379835856" type="string" size="3" encoding="base64"><![CDATA[b2Zm]]></property><property name="ZFKC_order" fullname="$_COOKIE[&#39;ZFKC_order&#39;]" address="140340379836224" type="string" size="4" encoding="base64"><![CDATA[bmFtZQ==]]></property><property name="ZFKC_orderDesc" fullname="$_COOKIE[&#39;ZFKC_orderDesc&#39;]" address="140340379836592" type="string" size="3" encoding="base64"><![CDATA[b2Zm]]></property><property name="ZFKC_view" fullname="$_COOKIE[&#39;ZFKC_view&#39;]" address="140340379836960" type="string" size="6" encoding="base64"><![CDATA[dGh1bWJz]]></property><property name="ZFKC_displaySettings" fullname="$_COOKIE[&#39;ZFKC_displaySettings&#39;]" address="140340379837336" type="string" size="3" encoding="base64"><![CDATA[b2Zm]]></property><property name="UNIQUE_NAME" fullname="$_COOKIE[&#39;UNIQUE_NAME&#39;]" address="140340379837792" type="string" size="26" encoding="base64"><![CDATA[N2NsODZwNWU2YzZiNDN2ajUyNW8wZ2I5czQ=]]></property><property name="XDEBUG_SESSION" fullname="$_COOKIE[&#39;XDEBUG_SESSION&#39;]" address="140340379838256" type="string" size="5" encoding="base64"><![CDATA[MTYzNzg=]]></property></property><property name="$_ENV" fullname="$_ENV" address="140340379838864" type="array" children="0" numchildren="0" page="0" pagesize="100"></property><property name="$_FILES" fullname="$_FILES" address="140340379838640" type="array" children="0" numchildren="0" page="0" pagesize="100"></property><property name="$_GET" fullname="$_GET" address="140340379833776" type="array" children="0" numchildren="0" page="0" pagesize="100"></property><property name="$_POST" fullname="$_POST" address="140340379834000" type="array" children="0" numchildren="0" page="0" pagesize="100"></property><property name="$_REQUEST" fullname="$_REQUEST" address="140340379839088" type="array" children="0" numchildren="0" page="0" pagesize="100"></property><property name="$_SERVER" fullname="$_SERVER" address="140340379839312" type="array" children="1" numchildren="39" page="0" pagesize="100"><property name="REDIRECT_APPLICATION_ENV" fullname="$_SERVER[&#39;REDIRECT_APPLICATION_ENV&#39;]" address="140340379839816" type="string" size="11" encoding="base64"><![CDATA[ZGV2ZWxvcG1lbnQ=]]></property><property name="REDIRECT_STATUS" fullname="$_SERVER[&#39;REDIRECT_STATUS&#39;]" address="140340379840200" type="string" size="3" encoding="base64"><![CDATA[MjAw]]></property><property name="APPLICATION_ENV" fullname="$_SERVER[&#39;APPLICATION_ENV&#39;]" address="140340379840568" type="string" size="11" encoding="base64"><![CDATA[ZGV2ZWxvcG1lbnQ=]]></property><property name="HTTP_HOST" fullname="$_SERVER[&#39;HTTP_HOST&#39;]" address="140340379840936" type="string" size="12" encoding="base64"><![CDATA[emZ0ZXN0LmxvY2Fs]]></property><property name="HTTP_CONNECTION" fullname="$_SERVER[&#39;HTTP_CONNECTION&#39;]" address="140340379841304" type="string" size="10" encoding="base64"><![CDATA[a2VlcC1hbGl2ZQ==]]></property><property name="CONTENT_LENGTH" fullname="$_SERVER[&#39;CONTENT_LENGTH&#39;]" address="140340379841672" type="string" size="4" encoding="base64"><![CDATA[NTk4NQ==]]></property><property name="HTTP_ACCEPT" fullname="$_SERVER[&#39;HTTP_ACCEPT&#39;]" address="140340379842104" type="string" size="46" encoding="base64"><![CDATA[YXBwbGljYXRpb24vanNvbiwgdGV4dC9qYXZhc2NyaXB0LCAqLyo7IHE9MC4wMQ==]]></property><property name="HTTP_ORIGIN" fullname="$_SERVER[&#39;HTTP_ORIGIN&#39;]" address="140340379842488" type="string" size="19" encoding="base64"><![CDATA[aHR0cDovL3pmdGVzdC5sb2NhbA==]]></property><property name="HTTP_X_REQUESTED_WITH" fullname="$_SERVER[&#39;HTTP_X_REQUESTED_WITH&#39;]" address="140340379843008" type="string" size="14" encoding="base64"><![CDATA[WE1MSHR0cFJlcXVlc3Q=]]></property><property name="HTTP_USER_AGENT" fullname="$_SERVER[&#39;HTTP_USER_AGENT&#39;]" address="140340379843720" type="string" size="104" encoding="base64"><![CDATA[TW96aWxsYS81LjAgKFgxMTsgTGludXggeDg2XzY0KSBBcHBsZVdlYktpdC81MzcuMzYgKEtIVE1MLCBsaWtlIEdlY2tvKSBDaHJvbWUvNDkuMC4yNjIzLjg3IFNhZmFyaS81MzcuMzY=]]></property><property name="CONTENT_TYPE" fullname="$_SERVER[&#39;CONTENT_TYPE&#39;]" address="140340379844104" type="string" size="16" encoding="base64"><![CDATA[YXBwbGljYXRpb24vanNvbg==]]></property><property name="HTTP_REFERER" fullname="$_SERVER[&#39;HTTP_REFERER&#39;]" address="140340379844520" type="string" size="39" encoding="base64"><![CDATA[aHR0cDovL3pmdGVzdC5sb2NhbC9jb250ZW50L2VkaXQvaWQvMTkx]]></property><property name="HTTP_ACCEPT_ENCODING" fullname="$_SERVER[&#39;HTTP_ACCEPT_ENCODING&#39;]" address="140340379844896" type="string" size="13" encoding="base64"><![CDATA[Z3ppcCwgZGVmbGF0ZQ==]]></property><property name="HTTP_ACCEPT_LANGUAGE" fullname="$_SERVER[&#39;HTTP_ACCEPT_LANGUAGE&#39;]" address="140340379845328" type="string" size="32" encoding="base64"><![CDATA[ZW4saXQtSVQ7cT0wLjgsaXQ7cT0wLjYsZnI7cT0wLjQ=]]></property><property name="HTTP_COOKIE" fullname="$_SERVER[&#39;HTTP_COOKIE&#39;]" address="140340379845856" type="string" size="197" encoding="base64"><![CDATA[WkZLQ19zaG93bmFtZT1vbjsgWkZLQ19zaG93c2l6ZT1vZmY7IFpGS0Nfc2hvd3RpbWU9b2ZmOyBaRktDX29yZGVyPW5hbWU7IFpGS0Nfb3JkZXJEZXNjPW9mZjsgWkZLQ192aWV3PXRodW1iczsgWkZLQ19kaXNwbGF5U2V0dGluZ3M9b2ZmOyBVTklRVUVfTkFNRT03Y2w4NnA1ZTZjNmI0M3ZqNTI1bzBnYjlzNDsgWERFQlVHX1NFU1NJT049MTYzNzg=]]></property><property name="PATH" fullname="$_SERVER[&#39;PATH&#39;]" address="140340379846152" type="string" size="60" encoding="base64"><![CDATA[L3Vzci9sb2NhbC9zYmluOi91c3IvbG9jYWwvYmluOi91c3Ivc2JpbjovdXNyL2Jpbjovc2JpbjovYmlu]]></property><property name="SERVER_SIGNATURE" fullname="$_SERVER[&#39;SERVER_SIGNATURE&#39;]" address="140340379846792" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="SERVER_SOFTWARE" fullname="$_SERVER[&#39;SERVER_SOFTWARE&#39;]" address="140340379847456" type="string" size="21" encoding="base64"><![CDATA[QXBhY2hlLzIuNC43IChVYnVudHUp]]></property><property name="SERVER_NAME" fullname="$_SERVER[&#39;SERVER_NAME&#39;]" address="140340379847824" type="string" size="12" encoding="base64"><![CDATA[emZ0ZXN0LmxvY2Fs]]></property><property name="SERVER_ADDR" fullname="$_SERVER[&#39;SERVER_ADDR&#39;]" address="140340379848192" type="string" size="9" encoding="base64"><![CDATA[MTI3LjAuMC4x]]></property><property name="SERVER_PORT" fullname="$_SERVER[&#39;SERVER_PORT&#39;]" address="140340379848560" type="string" size="2" encoding="base64"><![CDATA[ODA=]]></property><property name="REMOTE_ADDR" fullname="$_SERVER[&#39;REMOTE_ADDR&#39;]" address="140340379848928" type="string" size="9" encoding="base64"><![CDATA[MTI3LjAuMC4x]]></property><property name="DOCUMENT_ROOT" fullname="$_SERVER[&#39;DOCUMENT_ROOT&#39;]" address="140340379849344" type="string" size="39" encoding="base64"><![CDATA[L2hvbWUvY2xhdWRpby9wdWJsaWNfaHRtbC96ZnRlc3QvcHVibGlj]]></property><property name="REQUEST_SCHEME" fullname="$_SERVER[&#39;REQUEST_SCHEME&#39;]" address="140340379849712" type="string" size="4" encoding="base64"><![CDATA[aHR0cA==]]></property><property name="CONTEXT_PREFIX" fullname="$_SERVER[&#39;CONTEXT_PREFIX&#39;]" address="140340379850080" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="CONTEXT_DOCUMENT_ROOT" fullname="$_SERVER[&#39;CONTEXT_DOCUMENT_ROOT&#39;]" address="140340379850504" type="string" size="39" encoding="base64"><![CDATA[L2hvbWUvY2xhdWRpby9wdWJsaWNfaHRtbC96ZnRlc3QvcHVibGlj]]></property><property name="SERVER_ADMIN" fullname="$_SERVER[&#39;SERVER_ADMIN&#39;]" address="140340379850896" type="string" size="18" encoding="base64"><![CDATA[W25vIGFkZHJlc3MgZ2l2ZW5d]]></property><property name="SCRIPT_FILENAME" fullname="$_SERVER[&#39;SCRIPT_FILENAME&#39;]" address="140340379851360" type="string" size="59" encoding="base64"><![CDATA[L2hvbWUvY2xhdWRpby9wdWJsaWNfaHRtbC96ZnRlc3QvcHVibGljL2FwaS8xLjAvanNvbnJwYy5waHA=]]></property><property name="REMOTE_PORT" fullname="$_SERVER[&#39;REMOTE_PORT&#39;]" address="140340379851728" type="string" size="5" encoding="base64"><![CDATA[Mzk2OTE=]]></property><property name="REDIRECT_URL" fullname="$_SERVER[&#39;REDIRECT_URL&#39;]" address="140340379852112" type="string" size="16" encoding="base64"><![CDATA[L2FwaS8xLjAvanNvbnJwYw==]]></property><property name="GATEWAY_INTERFACE" fullname="$_SERVER[&#39;GATEWAY_INTERFACE&#39;]" address="140340379852488" type="string" size="7" encoding="base64"><![CDATA[Q0dJLzEuMQ==]]></property><property name="SERVER_PROTOCOL" fullname="$_SERVER[&#39;SERVER_PROTOCOL&#39;]" address="140340379852864" type="string" size="8" encoding="base64"><![CDATA[SFRUUC8xLjE=]]></property><property name="REQUEST_METHOD" fullname="$_SERVER[&#39;REQUEST_METHOD&#39;]" address="140340379853760" type="string" size="4" encoding="base64"><![CDATA[UE9TVA==]]></property><property name="QUERY_STRING" fullname="$_SERVER[&#39;QUERY_STRING&#39;]" address="140340379854656" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="REQUEST_URI" fullname="$_SERVER[&#39;REQUEST_URI&#39;]" address="140340379855040" type="string" size="16" encoding="base64"><![CDATA[L2FwaS8xLjAvanNvbnJwYw==]]></property><property name="SCRIPT_NAME" fullname="$_SERVER[&#39;SCRIPT_NAME&#39;]" address="140340379855424" type="string" size="20" encoding="base64"><![CDATA[L2FwaS8xLjAvanNvbnJwYy5waHA=]]></property><property name="PHP_SELF" fullname="$_SERVER[&#39;PHP_SELF&#39;]" address="140340379855808" type="string" size="20" encoding="base64"><![CDATA[L2FwaS8xLjAvanNvbnJwYy5waHA=]]></property><property name="REQUEST_TIME_FLOAT" fullname="$_SERVER[&#39;REQUEST_TIME_FLOAT&#39;]" address="140340379855960" type="float"><![CDATA[1457769221.877]]></property><property name="REQUEST_TIME" fullname="$_SERVER[&#39;REQUEST_TIME&#39;]" address="140340379856120" type="int"><![CDATA[1457769221]]></property></property><property name="$_SESSION" fullname="$_SESSION" address="140340133580672" type="array" children="1" numchildren="3" page="0" pagesize="100"><property name="Zend_Auth" fullname="$_SESSION[&#39;Zend_Auth&#39;]" address="140340133290504" type="array" children="1" numchildren="1"></property><property name="elFinderCaches" fullname="$_SESSION[&#39;elFinderCaches&#39;]" address="140340133330184" type="array" children="1" numchildren="2"></property><property name="elFinderCaches:LAST_ACTIVITY" fullname="$_SESSION[&#39;elFinderCaches:LAST_ACTIVITY&#39;]" address="140340133350848" type="int"><![CDATA[1457766658]]></property></property></response>

<- context_get -i 13 -d 0 -c 2
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="13" context="2"><property name="ROOT_PATH" fullname="ROOT_PATH" address="140340402873072" type="string" size="32" facet="constant" encoding="base64"><![CDATA[L2hvbWUvY2xhdWRpby9wdWJsaWNfaHRtbC96ZnRlc3Q=]]></property><property name="USITE_JS_FINGERPRINT" fullname="USITE_JS_FINGERPRINT" address="140340402872432" type="int" facet="constant"><![CDATA[1447572368]]></property><property name="_ZEXEC" fullname="_ZEXEC" address="140340402872784" type="bool" facet="constant"><![CDATA[1]]></property><property name="OWNER" fullname="OWNER" address="140340402875120" type="int" facet="constant"><![CDATA[0]]></property><property name="TUTOR" fullname="TUTOR" address="140340402875264" type="int" facet="constant"><![CDATA[1]]></property><property name="MANAGER" fullname="MANAGER" address="140340402875408" type="int" facet="constant"><![CDATA[2]]></property><property name="SUPER" fullname="SUPER" address="140340402875552" type="int" facet="constant"><![CDATA[3]]></property><property name="CREATE" fullname="CREATE" address="140340402875696" type="int" facet="constant"><![CDATA[0]]></property><property name="READ" fullname="READ" address="140340402875840" type="int" facet="constant"><![CDATA[1]]></property><property name="UPDATE" fullname="UPDATE" address="140340402875984" type="int" facet="constant"><![CDATA[2]]></property><property name="DELETE" fullname="DELETE" address="140340402876128" type="int" facet="constant"><![CDATA[3]]></property><property name="DO_COMMAND" fullname="DO_COMMAND" address="140340402876272" type="int" facet="constant"><![CDATA[4]]></property><property name="PRIV_USER_AREA_DIR" fullname="PRIV_USER_AREA_DIR" address="140340402876416" type="int" facet="constant"><![CDATA[509]]></property><property name="PRIV_USER_AREA_FILE" fullname="PRIV_USER_AREA_FILE" address="140340402876560" type="int" facet="constant"><![CDATA[436]]></property><property name="CROSS_TABLE" fullname="CROSS_TABLE" address="140340402876704" type="string" size="10" facet="constant" encoding="base64"><![CDATA[Y3Jvc3N0YWJsZQ==]]></property><property name="CROSS_INSTANCES" fullname="CROSS_INSTANCES" address="140340402876848" type="string" size="14" facet="constant" encoding="base64"><![CDATA[Y3Jvc3NpbnN0YW5jZXM=]]></property><property name="ROLES_TABLE" fullname="ROLES_TABLE" address="140340402876992" type="string" size="5" facet="constant" encoding="base64"><![CDATA[cm9sZXM=]]></property><property name="USERS_TABLE" fullname="USERS_TABLE" address="140340402877136" type="string" size="5" facet="constant" encoding="base64"><![CDATA[dXNlcnM=]]></property><property name="SUBSCRIPTION_TABLE" fullname="SUBSCRIPTION_TABLE" address="140340402877280" type="string" size="12" facet="constant" encoding="base64"><![CDATA[c3Vic2NyaXB0aW9u]]></property><property name="CONTACTS_TABLE" fullname="CONTACTS_TABLE" address="140340402877424" type="string" size="15" facet="constant" encoding="base64"><![CDATA[Y29udGFjdF9kZXRhaWxz]]></property><property name="ARTICLES_TABLE" fullname="ARTICLES_TABLE" address="140340402877568" type="string" size="8" facet="constant" encoding="base64"><![CDATA[YXJ0aWNsZXM=]]></property><property name="MENU_TABLE" fullname="MENU_TABLE" address="140340402877712" type="string" size="4" facet="constant" encoding="base64"><![CDATA[bWVudQ==]]></property><property name="PROJECT_TABLE" fullname="PROJECT_TABLE" address="140340402877856" type="string" size="8" facet="constant" encoding="base64"><![CDATA[cHJvamVjdHM=]]></property><property name="MAP_TABLE" fullname="MAP_TABLE" address="140340402878000" type="string" size="3" facet="constant" encoding="base64"><![CDATA[bWFw]]></property><property name="ROUTING_RULES_TABLE" fullname="ROUTING_RULES_TABLE" address="140340402878144" type="string" size="13" facet="constant" encoding="base64"><![CDATA[cm91dGluZ19ydWxlcw==]]></property><property name="DOMAIN_TABLE" fullname="DOMAIN_TABLE" address="140340402878288" type="string" size="6" facet="constant" encoding="base64"><![CDATA[ZG9tYWlu]]></property><property name="ACL_RULES_TABLE" fullname="ACL_RULES_TABLE" address="140340402878432" type="string" size="11" facet="constant" encoding="base64"><![CDATA[cGVybWlzc2lvbnM=]]></property><property name="ACL_RESOURCES_TABLE" fullname="ACL_RESOURCES_TABLE" address="140340402878576" type="string" size="9" facet="constant" encoding="base64"><![CDATA[cmVzb3VyY2Vz]]></property><property name="SITE_PAGE" fullname="SITE_PAGE" address="140340402878720" type="string" size="8" facet="constant" encoding="base64"><![CDATA[c2l0ZXBhZ2U=]]></property><property name="LAYOUT_TABLE" fullname="LAYOUT_TABLE" address="140340402878864" type="string" size="6" facet="constant" encoding="base64"><![CDATA[bGF5b3V0]]></property><property name="LAYOUT_VIEW_TABLE" fullname="LAYOUT_VIEW_TABLE" address="140340402879008" type="string" size="5" facet="constant" encoding="base64"><![CDATA[bHZpZXc=]]></property><property name="STYLES_TABLE" fullname="STYLES_TABLE" address="140340402879152" type="string" size="6" facet="constant" encoding="base64"><![CDATA[c3R5bGVz]]></property><property name="EMAIL_SENDER_TABLE" fullname="EMAIL_SENDER_TABLE" address="140340402879296" type="string" size="12" facet="constant" encoding="base64"><![CDATA[ZW1haWxfc2VuZGVy]]></property><property name="CATEGORY_TABLE" fullname="CATEGORY_TABLE" address="140340402879440" type="string" size="10" facet="constant" encoding="base64"><![CDATA[Y2F0ZWdvcmllcw==]]></property><property name="CONTENTS_TABLE" fullname="CONTENTS_TABLE" address="140340402879584" type="string" size="8" facet="constant" encoding="base64"><![CDATA[Y29udGVudHM=]]></property><property name="CONTENT_DEP_TABLE" fullname="CONTENT_DEP_TABLE" address="140340402879728" type="string" size="8" facet="constant" encoding="base64"><![CDATA[Y29udF9kZXA=]]></property><property name="DIRINDEX_TABLE" fullname="DIRINDEX_TABLE" address="140340402879872" type="string" size="9" facet="constant" encoding="base64"><![CDATA[ZGlyX2luZGV4]]></property><property name="FILEINDEX_TABLE" fullname="FILEINDEX_TABLE" address="140340402880016" type="string" size="10" facet="constant" encoding="base64"><![CDATA[ZmlsZV9pbmRleA==]]></property><property name="MEDIADEP_TABLE" fullname="MEDIADEP_TABLE" address="140340402880160" type="string" size="9" facet="constant" encoding="base64"><![CDATA[bWVkaWFfZGVw]]></property><property name="TEMPLATE_PREFIX" fullname="TEMPLATE_PREFIX" address="140340402880304" type="string" size="4" facet="constant" encoding="base64"><![CDATA[dHBsXw==]]></property><property name="SESSION_TIMEOUT_LIST" fullname="SESSION_TIMEOUT_LIST" address="140340402880448" type="int" facet="constant"><![CDATA[300]]></property><property name="SUBDOMAIN_MENU" fullname="SUBDOMAIN_MENU" address="140340402880592" type="string" size="6" facet="constant" encoding="base64"><![CDATA[d2NtZW51]]></property><property name="WINE_COMPANIES_URL" fullname="WINE_COMPANIES_URL" address="140340402880736" type="string" size="5" facet="constant" encoding="base64"><![CDATA[d2N1cmw=]]></property><property name="NUM_CROSS_ACTIONS" fullname="NUM_CROSS_ACTIONS" address="140340402880880" type="int" facet="constant"><![CDATA[16]]></property><property name="CKEDITOR_LINK" fullname="CKEDITOR_LINK" address="140340402881024" type="string" size="37" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9ja2VkaXRvci80LjQuNy9ja2VkaXRvci5qcw==]]></property><property name="USER_AND_RESOURCE_DONT_MATCH" fullname="USER_AND_RESOURCE_DONT_MATCH" address="140340402881168" type="string" size="34" facet="constant" encoding="base64"><![CDATA[TGEgcmlzb3JzYSByaWNoaWVzdGEgbm9uIMOoIHZhbGlkYQ==]]></property><property name="RESOURCE_NOT_ON_DB" fullname="RESOURCE_NOT_ON_DB" address="140340402881312" type="string" size="40" facet="constant" encoding="base64"><![CDATA[TGEgcmlzb3JzYSBub24gw6ggcHJlc2VudGUgbmVsIGRhdGEgYmFzZQ==]]></property><property name="INVALID_REQUEST" fullname="INVALID_REQUEST" address="140340402881456" type="string" size="20" facet="constant" encoding="base64"><![CDATA[UmljaGllc3RhIG5vbiB2YWxpZGE=]]></property><property name="NOT_ALLOWED_ACCESS_WITHOUT_AUTENTICATION" fullname="NOT_ALLOWED_ACCESS_WITHOUT_AUTENTICATION" address="140340402881600" type="string" size="51" facet="constant" encoding="base64"><![CDATA[Tm90IGFsbG93ZWQgYWNjZXNzIHRvIGFydGljbGUgd2l0aG91dCBhdXRlbnRpY2F0aW9u]]></property><property name="RESOURCE_CORRECTLY_SAVED" fullname="RESOURCE_CORRECTLY_SAVED" address="140340402881744" type="string" size="24" facet="constant" encoding="base64"><![CDATA[UkVTT1VSQ0VfQ09SUkVDVExZX1NBVkVE]]></property><property name="RESOURCE_ERASED" fullname="RESOURCE_ERASED" address="140340402881888" type="string" size="18" facet="constant" encoding="base64"><![CDATA[Umlzb3JzYSBjYW5jZWxsYXRh]]></property><property name="ARTICLE_ERASED" fullname="ARTICLE_ERASED" address="140340402882032" type="string" size="19" facet="constant" encoding="base64"><![CDATA[QXJ0aWNvbG8gY2FuY2VsbGF0bw==]]></property><property name="TITLE_ALREADY_EXIST" fullname="TITLE_ALREADY_EXIST" address="140340402882176" type="string" size="22" facet="constant" encoding="base64"><![CDATA[QXJ0aWNvbG8gZ2nDoCBwcmVzZW50ZQ==]]></property><property name="RESOURCE_UNDEFINED" fullname="RESOURCE_UNDEFINED" address="140340402882320" type="string" size="20" facet="constant" encoding="base64"><![CDATA[Umlzb3JzYSBub24gZGVmaW5pdGE=]]></property><property name="EMAIL_VARIATION_SAVED" fullname="EMAIL_VARIATION_SAVED" address="140340402882464" type="string" size="133" facet="constant" encoding="base64"><![CDATA[TGEgbnVvdmEgZW1haWwgw6ggc3RhdGEgbWVtb3JpenphdGEgbWEgZGV2ZSBlc3NlcmUgYXR0aXZhdGEuIFBlciBhdHRpdmFyZSwgc2VndWlyZSBsZSBpc3RydXppb25pIG5lbGxhIGUtbWFpbCBjaGUgdmkgYWJiaWFtbyBpbnZpYXRvLg==]]></property><property name="OPERATION_NOT_ALLOWED" fullname="OPERATION_NOT_ALLOWED" address="140340402882608" type="string" size="26" facet="constant" encoding="base64"><![CDATA[T3BlcmF6aW9uZSBub24gY29uc2VudGl0YS4=]]></property><property name="PASSWORD_CHANGED_SEE_EMAIL" fullname="PASSWORD_CHANGED_SEE_EMAIL" address="140340402882752" type="string" size="26" facet="constant" encoding="base64"><![CDATA[UEFTU1dPUkRfQ0hBTkdFRF9TRUVfRU1BSUw=]]></property><property name="JQUERYUI_STRUCT_CSS" fullname="JQUERYUI_STRUCT_CSS" address="140340402882896" type="string" size="58" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9qcXVlcnkvanF1ZXJ5LXVpLTEuMTEuMy9qcXVlcnktdWkuc3RydWN0dXJlLmNzcw==]]></property><property name="JQUERYUI_DEFAULT_CSS" fullname="JQUERYUI_DEFAULT_CSS" address="140340402883040" type="string" size="66" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9qcXVlcnkvanF1ZXJ5LXVpLTEuMTEuMy9jc3MvZGVmYXVsdC9qcXVlcnktdWkudGhlbWUuY3Nz]]></property><property name="JQUERYUI_MAIN_CSS" fullname="JQUERYUI_MAIN_CSS" address="140340402883184" type="string" size="68" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9qcXVlcnkvanF1ZXJ5LXVpLTEuMTEuMy9jc3MvbGlnaHRuZXNzL2pxdWVyeS11aS50aGVtZS5jc3M=]]></property><property name="JQUERYUI_SECONDARY_CSS" fullname="JQUERYUI_SECONDARY_CSS" address="140340402883328" type="string" size="66" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9qcXVlcnkvanF1ZXJ5LXVpLTEuMTEuMy9jc3MvcmVkbW9uZC9qcXVlcnktdWkudGhlbWUuY3Nz]]></property><property name="JQUERYUI" fullname="JQUERYUI" address="140340402883472" type="string" size="47" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9qcXVlcnkvanF1ZXJ5LXVpLTEuMTEuMy9qcXVlcnktdWkuanM=]]></property><property name="JQUERY_PLUGIN_AUTORESIZE_IFRAME" fullname="JQUERY_PLUGIN_AUTORESIZE_IFRAME" address="140340402883616" type="string" size="71" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9qcXVlcnkvcGx1Z2lucy9qcXVlcnkuaWZyYW1lLWF1dG8taGVpZ2h0LnBsdWdpbi4xLjkuMS5taW4uanM=]]></property><property name="JQ_HOVER_INTENT" fullname="JQ_HOVER_INTENT" address="140340402883760" type="string" size="59" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9qcXVlcnkvcGx1Z2lucy9ob3ZlckludGVudC9qcXVlcnkuaG92ZXJJbnRlbnQuanM=]]></property><property name="JQ_SUPERFISH" fullname="JQ_SUPERFISH" address="140340402883904" type="string" size="49" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9qcXVlcnkvc3VwZXJmaXNoLzEuNy4yL2pzL3N1cGVyZmlzaC5qcw==]]></property><property name="JQ_SUPERFISH_CSS" fullname="JQ_SUPERFISH_CSS" address="140340402884048" type="string" size="51" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9qcXVlcnkvc3VwZXJmaXNoLzEuNy4yL2Nzcy9zdXBlcmZpc2guY3Nz]]></property><property name="JQ_ADMIN_SUPERFISH_CSS" fullname="JQ_ADMIN_SUPERFISH_CSS" address="140340402884192" type="string" size="20" facet="constant" encoding="base64"><![CDATA[L3N0eWxlcy9zZi1hZG1pbi5jc3M=]]></property><property name="JQ_MAIN_SUPERFISH_CSS" fullname="JQ_MAIN_SUPERFISH_CSS" address="140340402884336" type="string" size="18" facet="constant" encoding="base64"><![CDATA[L3N0eWxlcy9zZm1haW4uY3Nz]]></property><property name="HTML5SHIV" fullname="HTML5SHIV" address="140340402884480" type="string" size="39" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9odG1sNXNoaXYvMy43LjMvaHRtbDVzaGl2Lmpz]]></property><property name="HTML5SHIV_PRINT" fullname="HTML5SHIV_PRINT" address="140340402884624" type="string" size="49" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9odG1sNXNoaXYvMy43LjMvaHRtbDVzaGl2LXJwaW50c2hpdi5qcw==]]></property><property name="JQUERY" fullname="JQUERY" address="140340402884768" type="string" size="34" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9qcXVlcnkvanF1ZXJ5LTEuMTEuMy5qcw==]]></property><property name="JQUERY_COOKIE" fullname="JQUERY_COOKIE" address="140340402884912" type="string" size="34" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9qcXVlcnkvanF1ZXJ5LmNvb2tpZS5qcw==]]></property><property name="JQUERY_HOTKEYS" fullname="JQUERY_HOTKEYS" address="140340402885056" type="string" size="35" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9qcXVlcnkvanF1ZXJ5LmhvdGtleXMuanM=]]></property><property name="JSTREE" fullname="JSTREE" address="140340402885200" type="string" size="40" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9qcXVlcnkvanN0cmVlLzMuMi4xL2pzdHJlZS5qcw==]]></property><property name="JSTREE_CSS" fullname="JSTREE_CSS" address="140340402885344" type="string" size="59" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9qcXVlcnkvanN0cmVlLzMuMi4xL3RoZW1lcy9kZWZhdWx0L3N0eWxlLm1pbi5jc3M=]]></property><property name="MY_JSTREE" fullname="MY_JSTREE" address="140340402885488" type="string" size="52" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9qcXVlcnkvcGx1Z2lucy9vdnVtL2pxdWVyeS5qc3RyZWUub3Z1bS5qcw==]]></property><property name="JQGRID_BASE" fullname="JQGRID_BASE" address="140340402885632" type="string" size="30" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9qcXVlcnkvanFncmlkLzQuOC4y]]></property><property name="JQGRID_JS" fullname="JQGRID_JS" address="140340402885776" type="string" size="50" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9qcXVlcnkvanFncmlkLzQuOC4yL2pzL2pxdWVyeS5qcUdyaWQuanM=]]></property><property name="JQGRID_I18_PATH" fullname="JQGRID_I18_PATH" address="140340402885920" type="string" size="38" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9qcXVlcnkvanFncmlkLzQuOC4yL2pzL2kxOG4=]]></property><property name="JQGRID_CSS" fullname="JQGRID_CSS" address="140340402886064" type="string" size="48" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9qcXVlcnkvanFncmlkLzQuOC4yL2Nzcy91aS5qcWdyaWQuY3Nz]]></property><property name="JQ_GMAPS" fullname="JQ_GMAPS" address="140340402886208" type="string" size="56" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9qcXVlcnkvanF1ZXJ5LXVpLW1hcC9taW4vanF1ZXJ5LnVpLm1hcC5taW4uanM=]]></property><property name="GMAPS" fullname="GMAPS" address="140340402886352" type="string" size="34" facet="constant" encoding="base64"><![CDATA[aHR0cDovL21hcHMuZ29vZ2xlLmNvbS9tYXBzL2FwaS9qcw==]]></property><property name="JSON_RPC" fullname="JSON_RPC" address="140340402886496" type="string" size="43" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9qcXVlcnkvanNvbnJwYy9qcXVlcnkuanNvbnJwYy5qcw==]]></property><property name="JUSITE" fullname="JUSITE" address="140340402886640" type="string" size="38" facet="constant" encoding="base64"><![CDATA[L25vY2FjaGUvMTQ0NzU3MjM2OC9qcy9jdXN0b20vdXNpdGUuanM=]]></property><property name="EDIT_HEADER_JS" fullname="EDIT_HEADER_JS" address="140340402886784" type="string" size="45" facet="constant" encoding="base64"><![CDATA[L25vY2FjaGUvMTQ0NzU3MjM2OC9qcy9jdXN0b20vZWRpdC5oZWFkZXJzLmpz]]></property><property name="REALPATH_USITE_JS" fullname="REALPATH_USITE_JS" address="140340402887680" type="string" size="58" facet="constant" encoding="base64"><![CDATA[L2hvbWUvY2xhdWRpby9wdWJsaWNfaHRtbC96ZnRlc3QvcHVibGljL2pzL2N1c3RvbS91c2l0ZS5qcw==]]></property><property name="JQUERY_SPECTRUM_CSS" fullname="JQUERY_SPECTRUM_CSS" address="140340402887824" type="string" size="45" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9qcXVlcnkvc3BlY3RydW0tMS43LjEvc3BlY3RydW0uY3Nz]]></property><property name="JQUERY_SPECTRUM" fullname="JQUERY_SPECTRUM" address="140340402887968" type="string" size="44" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9qcXVlcnkvc3BlY3RydW0tMS43LjEvc3BlY3RydW0uanM=]]></property><property name="REQUIREJS" fullname="REQUIREJS" address="140340402888112" type="string" size="31" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9yZXF1aXJlanMvcmVxdWlyZS5qcw==]]></property><property name="JCAROUSEL_JS" fullname="JCAROUSEL_JS" address="140340402888256" type="string" size="57" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9qcXVlcnkvamNhcm91c2VsLzAuMy4zL2pxdWVyeS5qY2Fyb3VzZWwubWluLmpz]]></property><property name="JFORM_MASTER_JS" fullname="JFORM_MASTER_JS" address="140340402888400" type="string" size="49" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9qcXVlcnkvZm9ybS1tYXN0ZXIvMy41MS9qcXVlcnkuZm9ybS5qcw==]]></property><property name="ELFINDER_THEME_CSS" fullname="ELFINDER_THEME_CSS" address="140340402888544" type="string" size="39" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9lbGZpbmRlci8yLjEuNi9jc3MvdGhlbWUuY3Nz]]></property><property name="ELFINDER_MIN_CSS" fullname="ELFINDER_MIN_CSS" address="140340402888688" type="string" size="46" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9lbGZpbmRlci8yLjEuNi9jc3MvZWxmaW5kZXIubWluLmNzcw==]]></property><property name="ELFINDER_JS" fullname="ELFINDER_JS" address="140340402888832" type="string" size="45" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9lbGZpbmRlci8yLjEuNi9qcy9lbGZpbmRlci5mdWxsLmpz]]></property><property name="ELFINDER_MIN_I18N" fullname="ELFINDER_MIN_I18N" address="140340402888976" type="string" size="33" facet="constant" encoding="base64"><![CDATA[L3B1YmxpYy9qcy9lbGZpbmRlci8yLjEuNi9qcy9pMThu]]></property><property name="ADMIN_EMAIL" fullname="ADMIN_EMAIL" address="140340402889120" type="string" size="15" facet="constant" encoding="base64"><![CDATA[bm9yZXBseUBvdnVtLml0]]></property><property name="ADMIN_NICK" fullname="ADMIN_NICK" address="140340402889264" type="string" size="5" facet="constant" encoding="base64"><![CDATA[QWRtaW4=]]></property><property name="APPLICATION_ENV" fullname="APPLICATION_ENV" address="140340402889408" type="string" size="11" facet="constant" encoding="base64"><![CDATA[ZGV2ZWxvcG1lbnQ=]]></property><property name="PUBLIC_PATH" fullname="PUBLIC_PATH" address="140340402889552" type="string" size="39" facet="constant" encoding="base64"><![CDATA[L2hvbWUvY2xhdWRpby9wdWJsaWNfaHRtbC96ZnRlc3QvcHVibGlj]]></property><property name="CACHE_PATH" fullname="CACHE_PATH" address="140340402889696" type="string" size="36" facet="constant" encoding="base64"><![CDATA[L2hvbWUvY2xhdWRpby9wdWJsaWNfaHRtbC96ZnRlc3QvdG1w]]></property><property name="APPLICATION_PATH" fullname="APPLICATION_PATH" address="140340402889840" type="string" size="44" facet="constant" encoding="base64"><![CDATA[L2hvbWUvY2xhdWRpby9wdWJsaWNfaHRtbC96ZnRlc3QvYXBwbGljYXRpb24=]]></property><property name="TEST_AREA" fullname="TEST_AREA" address="140340402889984" type="string" size="4" facet="constant" encoding="base64"><![CDATA[dGVzdA==]]></property><property name="TEST_SUBDOMAIN_PATH" fullname="TEST_SUBDOMAIN_PATH" address="140340402890128" type="string" size="37" facet="constant" encoding="base64"><![CDATA[L2hvbWUvY2xhdWRpby9wdWJsaWNfaHRtbC96ZnRlc3QvdGVzdA==]]></property><property name="TEST_APPLICATION_PATH" fullname="TEST_APPLICATION_PATH" address="140340402890272" type="string" size="40" facet="constant" encoding="base64"><![CDATA[L2hvbWUvY2xhdWRpby9wdWJsaWNfaHRtbC96ZnRlc3QvYXBwdGVzdA==]]></property><property name="BUILD_USER_PATH" fullname="BUILD_USER_PATH" address="140340402890416" type="string" size="38" facet="constant" encoding="base64"><![CDATA[L2hvbWUvY2xhdWRpby9wdWJsaWNfaHRtbC96ZnRlc3QvYnVpbGQ=]]></property><property name="USERS_DATA_PATH" fullname="USERS_DATA_PATH" address="140340402890560" type="string" size="45" facet="constant" encoding="base64"><![CDATA[L2hvbWUvY2xhdWRpby9wdWJsaWNfaHRtbC96ZnRlc3QvcHVibGljL3VzZXJz]]></property><property name="TEMPLATES_PATH" fullname="TEMPLATES_PATH" address="140340402890704" type="string" size="49" facet="constant" encoding="base64"><![CDATA[L2hvbWUvY2xhdWRpby9wdWJsaWNfaHRtbC96ZnRlc3QvcHVibGljL3RlbXBsYXRlcw==]]></property><property name="LIBRARY" fullname="LIBRARY" address="140340402890848" type="string" size="40" facet="constant" encoding="base64"><![CDATA[L2hvbWUvY2xhdWRpby9wdWJsaWNfaHRtbC96ZnRlc3QvbGlicmFyeQ==]]></property><property name="CHMODE_WRITABLE_DIRECTORY" fullname="CHMODE_WRITABLE_DIRECTORY" address="140340402890992" type="int" facet="constant"><![CDATA[509]]></property></response>

<- run -i 14
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="run" transaction_id="14" status="stopping" reason="ok"></response>

<- run -i 15
Log closed at 2016-03-12 07:53:45

xdebug.log (80,084 bytes)   
Operating System
PHP Version5.5.5-5.5.9

Activities

derick

2016-12-12 00:02

administrator   ~0004019

This error comes from PHP's DOM extension, which doesn't have everything that it should have implemented.

derick

2016-12-12 00:02

administrator   ~0004020

This error comes from PHP's DOM extension, which doesn't have everything that it should have implemented.

Issue History

Date Modified Username Field Change
2016-03-12 07:57 lonejack New Issue
2016-03-12 07:57 lonejack File Added: xdebug.log
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)
2016-12-12 00:02 derick Note Added: 0004019
2016-12-12 00:02 derick Status new => resolved
2016-12-12 00:02 derick Resolution open => not fixable
2016-12-12 00:02 derick Assigned To => derick
2016-12-12 00:02 derick Note Added: 0004020
2016-12-12 00:02 derick Category (No Category) => Usage problems (Wrong Results)
2020-03-12 16:35 derick Category Usage problems (Wrong Results) => Variable Display
2020-03-12 16:38 derick Category Variable Display => Uncategorized