View Issue Details

IDProjectCategoryView StatusLast Update
0001185XdebugUncategorizedpublic2016-09-10 09:17
Reporterjfilipczyk Assigned Toderick  
PriorityimmediateSeverityblockReproducibilityalways
Status resolvedResolutionsuspended 
Product Version2.3.3 
Summary0001185: Dockerized Xdebug breaks on access to class static property
Description

I've a problem with xdebug in my dev environment

FROM library/php:5.5-apache

RUN apt-get -qqy update && apt-get -qqy install \ 
               libpq-dev \
               libmcrypt-dev \
               libxml2-dev \
               ssl-cert \
               vim \
               git \
               mc \
        && rm -r /var/lib/apt/lists/*

# compile and add xdebug
RUN pecl install xdebug \
    && echo "zend_extension=xdebug.so" >> "/usr/local/etc/php/conf.d/xdebug.ini"

# configure apache and vhosts
RUN a2enmod rewrite ssl \
        && a2ensite 000-default default-ssl

ENV APACHE_RUN_USER www-data
ENV APACHE_RUN_GROUP www-data
ENV APACHE_LOG_DIR /var/log/apache2
ENV APACHE_RUN_DIR /var/run/apache2
ENV APACHE_PID_FILE /var/run/apache2/apache2.pid
ENV APACHE_LOCK_DIR /var/lock/apache2

CMD ["apache2-foreground"]

Xdebug settings:

[xdebug]
xdebug.remote_enable=1
xdebug.remote_autostart=0
xdebug.remote_host=172.17.42.1
xdebug.remote_port=9000

Everything works good but one thing. When debbuging code:

<?php
class A {
    static private $a;

    static public function init() {
        self::$a = 123;
    }
}

A::init();

If i set breakpoint on self::$a = 123; or step into the line then i get:

Fatal error: Access to undeclared static property: A::$a

If i don't step into that line debugging session continous without any problem.
I tried Xdebug 2.2.x - 2.3.x. It always breaks.

TagsNo tags attached.
Operating SystemDocker container based on debian jessie
PHP Version5.5.30-5.5.34

Relationships

has duplicate 0001337 resolvedderick Dockerized Xdebug breaks on access to class static property 

Activities

gelbehexe

2015-09-21 12:03

reporter   ~0003176

I have this problem too. I'm usually using self compiled PHP with the newest 5.4.x, 5.5.x and 5.6.x. versions.
The problem occurs always, no matter if I use the cgi, php-fpm or cli variant of php on debian linux or mac osx.
It was the reason why I am using Zend Debugger for now, hoping to be able to switch back to xdebug as soon as possible, since it's way faster.

id02009

2015-11-25 06:26

reporter   ~0003267

I'm experiencing the same - my docker config is here https://github.com/pawlik/magento-on-docker

I never experienced this bug on ubuntu virtualbox on which I installed xdebug as ubuntu package (apt-get install php5-xdebug). Might be a hint?

derick

2015-12-19 12:46

administrator   ~0003366

I need an xdebug remote debug log to go with this, as I am not seeing a problem going through the debug steps by hand. You can make that by setting xdebug.remote_log=/tmp/xdebug.log in php.ini. Please make this setting, then use the same script as you used in the Description and reproduce the issue. Attach the log that was generated as /tmp/xdebug.log.

cheers,
Derick

nachinius

2015-12-20 17:59

reporter   ~0003367

Last edited: 2015-12-20 18:00

Hi Derick, and thanks. Let me know if you need something more.

For reference, I put the files i used to product this here: https://github.com/nachinius/xdebug-issue-1185
The log is there too (https://raw.githubusercontent.com/nachinius/xdebug-issue-1185/master/xdebug.log)

@nachinius

Log opened at 2015-12-20 17:50:00
I: Checking remote connect back address.
I: Remote address found, connecting to 192.168.99.1:9000.
I: Connected to client. :-)
-> <init xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; fileuri="file:///var/www/html/index.php" language="PHP" protocol_version="1.0" appid="8" idekey="ECLIPSE_DBGP"><engine version="2.3.3"><![CDATA[Xdebug]]></engine><author><![CDATA[Derick Rethans]]></author><url><![CDATA[http://xdebug.org]]>&lt;/url>&lt;copyright>&lt;![CDATA[Copyright (c) 2002-2015 by Derick Rethans]]></copyright></init>

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

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

<- feature_set -i 109 -n max_children -v 51
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="feature_set" transaction_id="109" feature="max_children" success="1"></response>

<- feature_set -i 110 -n max_data -v 1024
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="feature_set" transaction_id="110" feature="max_data" success="1"></response>

<- feature_get -i 111 -n encoding
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="feature_get" transaction_id="111" feature_name="encoding" supported="1"><![CDATA[iso-8859-1]]></response>

<- feature_get -i 112 -n supports_async
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="feature_get" transaction_id="112" feature_name="supports_async" supported="1"><![CDATA[0]]></response>

<- stdout -i 113 -c 1
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="stdout" transaction_id="113" success="1"></response>

<- stderr -i 114 -c 1
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="stderr" transaction_id="114" success="0"></response>

<- step_into -i 115
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="step_into" transaction_id="115" status="break" reason="ok"><xdebug:message filename="file:///var/www/html/index.php" lineno="2"></xdebug:message></response>

<- stack_get -i 116
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="stack_get" transaction_id="116"><stack where="{main}" level="0" type="file" filename="file:///var/www/html/index.php" lineno="2"></stack></response>

<- context_get -i 117 -c 1
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="context_get" transaction_id="117" context="1"><property name="$_COOKIE" fullname="$_COOKIE" address="140065211255008" type="array" children="0" numchildren="0" page="0" pagesize="51"></property><property name="$_ENV" fullname="$_ENV" address="140065211255456" type="array" children="1" numchildren="19" page="0" pagesize="51"><property name="APACHE_PID_FILE" fullname="$_ENV['APACHE_PID_FILE']" address="140065211255640" type="string" size="28" encoding="base64"><![CDATA[L3Zhci9ydW4vYXBhY2hlMi9hcGFjaGUyLnBpZA==]]></property><property name="HOSTNAME" fullname="$_ENV['HOSTNAME']" address="140065211255872" type="string" size="12" encoding="base64"><![CDATA[NDBjZTgxN2Y3Mjhm]]></property><property name="APACHE_RUN_USER" fullname="$_ENV['APACHE_RUN_USER']" address="140065211256024" type="string" size="8" encoding="base64"><![CDATA[d3d3LWRhdGE=]]></property><property name="PHP_INI_DIR" fullname="$_ENV['PHP_INI_DIR']" address="140065211256216" type="string" size="18" encoding="base64"><![CDATA[L3Vzci9sb2NhbC9ldGMvcGhw]]></property><property name="PHP_FILENAME" fullname="$_ENV['PHP_FILENAME']" address="140065211256408" type="string" size="17" encoding="base64"><![CDATA[cGhwLTUuNi4xNi50YXIueHo=]]></property><property name="APACHE_LOG_DIR" fullname="$_ENV['APACHE_LOG_DIR']" address="140065211256600" type="string" size="16" encoding="base64"><![CDATA[L3Zhci9sb2cvYXBhY2hlMg==]]></property><property name="PATH" fullname="$_ENV['PATH']" address="140065211256832" type="string" size="60" encoding="base64"><![CDATA[L3Vzci9sb2NhbC9zYmluOi91c3IvbG9jYWwvYmluOi91c3Ivc2JpbjovdXNyL2Jpbjovc2JpbjovYmlu]]></property><property name="GPG_KEYS" fullname="$_ENV['GPG_KEYS']" address="140065211257080" type="string" size="81" encoding="base64"><![CDATA[MEJENzhCNUY5NzUwMEQ0NTA4MzhGOTVERkU4NTdEOUE5MEQ5MEVDMSA2RTRGNkFCMzIxRkRDMDdGMkMzMzJFM0FDMkJGMEJDNDMzQ0ZDOEIz]]></property><property name="PWD" fullname="$_ENV['PWD']" address="140065211257264" type="string" size="13" encoding="base64"><![CDATA[L3Zhci93d3cvaHRtbA==]]></property><property name="APACHE_RUN_GROUP" fullname="$_ENV['APACHE_RUN_GROUP']" address="140065211257584" type="string" size="8" encoding="base64"><![CDATA[d3d3LWRhdGE=]]></property><property name="SHLVL" fullname="$_ENV['SHLVL']" address="140065211257776" type="string" size="1" encoding="base64"><![CDATA[MA==]]></property><property name="HOME" fullname="$_ENV['HOME']" address="140065211257952" type="string" size="5" encoding="base64"><![CDATA[L3Jvb3Q=]]></property><property name="PHP_SHA256" fullname="$_ENV['PHP_SHA256']" address="140065211258184" type="string" size="64" encoding="base64"><![CDATA[OGVmNDMyNzFkOWJkOGNjOGY4ZDQwN2QzYmE1NjlkZTlmYTE0YTI4OTg1YWU5N2M3NjA4NWJiNTBkNTk3ZGU5OA==]]></property><property name="XDEBUG_INI" fullname="$_ENV['XDEBUG_INI']" address="140065211258392" type="string" size="36" encoding="base64"><![CDATA[L3Vzci9sb2NhbC9ldGMvcGhwL2NvbmYuZC94ZGVidWcuaW5p]]></property><property name="PHP_EXTRA_BUILD_DEPS" fullname="$_ENV['PHP_EXTRA_BUILD_DEPS']" address="140065211258576" type="string" size="11" encoding="base64"><![CDATA[YXBhY2hlMi1kZXY=]]></property><property name="APACHE_LOCK_DIR" fullname="$_ENV['APACHE_LOCK_DIR']" address="140065211258776" type="string" size="17" encoding="base64"><![CDATA[L3Zhci9sb2NrL2FwYWNoZTI=]]></property><property name="APACHE_RUN_DIR" fullname="$_ENV['APACHE_RUN_DIR']" address="140065211258968" type="string" size="16" encoding="base64"><![CDATA[L3Zhci9ydW4vYXBhY2hlMg==]]></property><property name="PHP_VERSION" fullname="$_ENV['PHP_VERSION']" address="140065211259424" type="string" size="6" encoding="base64"><![CDATA[NS42LjE2]]></property><property name="PHP_EXTRA_CONFIGURE_ARGS" fullname="$_ENV['PHP_EXTRA_CONFIGURE_ARGS']" address="140065211259608" type="string" size="12" encoding="base64"><![CDATA[LS13aXRoLWFweHMy]]></property></property><property name="$_FILES" fullname="$_FILES" address="140065211255232" type="array" children="0" numchildren="0" page="0" pagesize="51"></property><property name="$_GET" fullname="$_GET" address="140065211252864" type="array" children="1" numchildren="2" page="0" pagesize="51"><property name="XDEBUG_SESSION_START" fullname="$_GET['XDEBUG_SESSION_START']" address="140065211253576" type="string" size="12" encoding="base64"><![CDATA[RUNMSVBTRV9EQkdQ]]></property><property name="KEY" fullname="$_GET['KEY']" address="140065211254024" type="string" size="14" encoding="base64"><![CDATA[MTQ1MDYzMzc5OTg3NTQ=]]></property></property><property name="$_POST" fullname="$_POST" address="140065211254784" type="array" children="0" numchildren="0" page="0" pagesize="51"></property><property name="$_REQUEST" fullname="$_REQUEST" address="140065211259864" type="array" children="1" numchildren="2" page="0" pagesize="51"><property name="XDEBUG_SESSION_START" fullname="$_REQUEST['XDEBUG_SESSION_START']" address="140065211253576" type="string" size="12" encoding="base64"><![CDATA[RUNMSVBTRV9EQkdQ]]></property><property name="KEY" fullname="$_REQUEST['KEY']" address="140065211254024" type="string" size="14" encoding="base64"><![CDATA[MTQ1MDYzMzc5OTg3NTQ=]]></property></property><property name="$_SERVER" fullname="$_SERVER" address="140065211260296" type="array" children="1" numchildren="32" page="0" pagesize="51"><property name="HTTP_HOST" fullname="$_SERVER['HTTP_HOST']" address="140065211260864" type="string" size="14" encoding="base64"><![CDATA[MTkyLjE2OC45OS4xMDA=]]></property><property name="HTTP_CONNECTION" fullname="$_SERVER['HTTP_CONNECTION']" address="140065211261312" type="string" size="10" encoding="base64"><![CDATA[a2VlcC1hbGl2ZQ==]]></property><property name="HTTP_ACCEPT" fullname="$_SERVER['HTTP_ACCEPT']" address="140065211261808" type="string" size="74" encoding="base64"><![CDATA[dGV4dC9odG1sLGFwcGxpY2F0aW9uL3hodG1sK3htbCxhcHBsaWNhdGlvbi94bWw7cT0wLjksaW1hZ2Uvd2VicCwqLyo7cT0wLjg=]]></property><property name="HTTP_UPGRADE_INSECURE_REQUESTS" fullname="$_SERVER['HTTP_UPGRADE_INSECURE_REQUESTS']" address="140065211262192" type="string" size="1" encoding="base64"><![CDATA[MQ==]]></property><property name="HTTP_USER_AGENT" fullname="$_SERVER['HTTP_USER_AGENT']" address="140065211262656" type="string" size="120" encoding="base64"><![CDATA[TW96aWxsYS81LjAgKE1hY2ludG9zaDsgSW50ZWwgTWFjIE9TIFggMTBfMTFfMikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzQ2LjAuMjQ5MC44MCBTYWZhcmkvNTM3LjM2]]></property><property name="HTTP_ACCEPT_ENCODING" fullname="$_SERVER['HTTP_ACCEPT_ENCODING']" address="140065211263048" type="string" size="19" encoding="base64"><![CDATA[Z3ppcCwgZGVmbGF0ZSwgc2RjaA==]]></property><property name="HTTP_ACCEPT_LANGUAGE" fullname="$_SERVER['HTTP_ACCEPT_LANGUAGE']" address="140065211263480" type="string" size="32" encoding="base64"><![CDATA[ZW4tVVMsZW47cT0wLjgsZXM7cT0wLjYsZnI7cT0wLjQ=]]></property><property name="PATH" fullname="$_SERVER['PATH']" address="140065211263944" type="string" size="60" encoding="base64"><![CDATA[L3Vzci9sb2NhbC9zYmluOi91c3IvbG9jYWwvYmluOi91c3Ivc2JpbjovdXNyL2Jpbjovc2JpbjovYmlu]]></property><property name="SERVER_SIGNATURE" fullname="$_SERVER['SERVER_SIGNATURE']" address="140065211264424" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="SERVER_SOFTWARE" fullname="$_SERVER['SERVER_SOFTWARE']" address="140065211264992" type="string" size="33" encoding="base64"><![CDATA[QXBhY2hlLzIuNC4xMCAoRGViaWFuKSBQSFAvNS42LjE2]]></property><property name="SERVER_NAME" fullname="$_SERVER['SERVER_NAME']" address="140065211265360" type="string" size="14" encoding="base64"><![CDATA[MTkyLjE2OC45OS4xMDA=]]></property><property name="SERVER_ADDR" fullname="$_SERVER['SERVER_ADDR']" address="140065211265728" type="string" size="10" encoding="base64"><![CDATA[MTcyLjE3LjAuMg==]]></property><property name="SERVER_PORT" fullname="$_SERVER['SERVER_PORT']" address="140065211266096" type="string" size="2" encoding="base64"><![CDATA[ODA=]]></property><property name="REMOTE_ADDR" fullname="$_SERVER['REMOTE_ADDR']" address="140065211266464" type="string" size="12" encoding="base64"><![CDATA[MTkyLjE2OC45OS4x]]></property><property name="DOCUMENT_ROOT" fullname="$_SERVER['DOCUMENT_ROOT']" address="140065211266832" type="string" size="13" encoding="base64"><![CDATA[L3Zhci93d3cvaHRtbA==]]></property><property name="REQUEST_SCHEME" fullname="$_SERVER['REQUEST_SCHEME']" address="140065211267200" type="string" size="4" encoding="base64"><![CDATA[aHR0cA==]]></property><property name="CONTEXT_PREFIX" fullname="$_SERVER['CONTEXT_PREFIX']" address="140065211267808" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="CONTEXT_DOCUMENT_ROOT" fullname="$_SERVER['CONTEXT_DOCUMENT_ROOT']" address="140065211268456" type="string" size="13" encoding="base64"><![CDATA[L3Zhci93d3cvaHRtbA==]]></property><property name="SERVER_ADMIN" fullname="$_SERVER['SERVER_ADMIN']" address="140065211268848" type="string" size="19" encoding="base64"><![CDATA[d2VibWFzdGVyQGxvY2FsaG9zdA==]]></property><property name="SCRIPT_FILENAME" fullname="$_SERVER['SCRIPT_FILENAME']" address="140065211269232" type="string" size="23" encoding="base64"><![CDATA[L3Zhci93d3cvaHRtbC9pbmRleC5waHA=]]></property><property name="REMOTE_PORT" fullname="$_SERVER['REMOTE_PORT']" address="140065211269600" type="string" size="5" encoding="base64"><![CDATA[NTEzOTE=]]></property><property name="GATEWAY_INTERFACE" fullname="$_SERVER['GATEWAY_INTERFACE']" address="140065211269976" type="string" size="7" encoding="base64"><![CDATA[Q0dJLzEuMQ==]]></property><property name="SERVER_PROTOCOL" fullname="$_SERVER['SERVER_PROTOCOL']" address="140065211270352" type="string" size="8" encoding="base64"><![CDATA[SFRUUC8xLjE=]]></property><property name="REQUEST_METHOD" fullname="$_SERVER['REQUEST_METHOD']" address="140065211270720" type="string" size="3" encoding="base64"><![CDATA[R0VU]]></property><property name="QUERY_STRING" fullname="$_SERVER['QUERY_STRING']" address="140065211271096" type="string" size="52" encoding="base64"><![CDATA[WERFQlVHX1NFU1NJT05fU1RBUlQ9RUNMSVBTRV9EQkdQJktFWT0xNDUwNjMzNzk5ODc1NA==]]></property><property name="REQUEST_URI" fullname="$_SERVER['REQUEST_URI']" address="140065211271544" type="string" size="54" encoding="base64"><![CDATA[Lz9YREVCVUdfU0VTU0lPTl9TVEFSVD1FQ0xJUFNFX0RCR1AmS0VZPTE0NTA2MzM3OTk4NzU0]]></property><property name="SCRIPT_NAME" fullname="$_SERVER['SCRIPT_NAME']" address="140065211271912" type="string" size="10" encoding="base64"><![CDATA[L2luZGV4LnBocA==]]></property><property name="PHP_SELF" fullname="$_SERVER['PHP_SELF']" address="140065211272280" type="string" size="10" encoding="base64"><![CDATA[L2luZGV4LnBocA==]]></property><property name="REQUEST_TIME_FLOAT" fullname="$_SERVER['REQUEST_TIME_FLOAT']" address="140065211272432" type="float"><![CDATA[1450633800.505]]></property><property name="REQUEST_TIME" fullname="$_SERVER['REQUEST_TIME']" address="140065211272592" type="int"><![CDATA[1450633800]]></property><property name="argv" fullname="$_SERVER['argv']" address="140065211272744" type="array" children="1" numchildren="1" page="0" pagesize="51"><property name="0" fullname="$_SERVER['argv'][0]" address="140065211272880" type="string" size="52" encoding="base64"><![CDATA[WERFQlVHX1NFU1NJT05fU1RBUlQ9RUNMSVBTRV9EQkdQJktFWT0xNDUwNjMzNzk5ODc1NA==]]></property></property><property name="argc" fullname="$_SERVER['argc']" address="140065211273088" type="int"><![CDATA[1]]></property></property></response>

<- context_get -i 118 -d 0
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="context_get" transaction_id="118" context="0"></response>

<- step_into -i 119
-> <stream xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; type="stdout" encoding="base64"><![CDATA[d29ya2luZw==]]></stream>

-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="step_into" transaction_id="119" status="break" reason="ok"><xdebug:message filename="file:///var/www/html/index.php" lineno="3"></xdebug:message></response>

<- stack_get -i 120
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="stack_get" transaction_id="120"><stack where="{main}" level="0" type="file" filename="file:///var/www/html/index.php" lineno="3"></stack></response>

<- context_get -i 121 -c 1
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="context_get" transaction_id="121" context="1"><property name="$_COOKIE" fullname="$_COOKIE" address="140065211255008" type="array" children="0" numchildren="0" page="0" pagesize="51"></property><property name="$_ENV" fullname="$_ENV" address="140065211255456" type="array" children="1" numchildren="19" page="0" pagesize="51"><property name="APACHE_PID_FILE" fullname="$_ENV['APACHE_PID_FILE']" address="140065211255640" type="string" size="28" encoding="base64"><![CDATA[L3Zhci9ydW4vYXBhY2hlMi9hcGFjaGUyLnBpZA==]]></property><property name="HOSTNAME" fullname="$_ENV['HOSTNAME']" address="140065211255872" type="string" size="12" encoding="base64"><![CDATA[NDBjZTgxN2Y3Mjhm]]></property><property name="APACHE_RUN_USER" fullname="$_ENV['APACHE_RUN_USER']" address="140065211256024" type="string" size="8" encoding="base64"><![CDATA[d3d3LWRhdGE=]]></property><property name="PHP_INI_DIR" fullname="$_ENV['PHP_INI_DIR']" address="140065211256216" type="string" size="18" encoding="base64"><![CDATA[L3Vzci9sb2NhbC9ldGMvcGhw]]></property><property name="PHP_FILENAME" fullname="$_ENV['PHP_FILENAME']" address="140065211256408" type="string" size="17" encoding="base64"><![CDATA[cGhwLTUuNi4xNi50YXIueHo=]]></property><property name="APACHE_LOG_DIR" fullname="$_ENV['APACHE_LOG_DIR']" address="140065211256600" type="string" size="16" encoding="base64"><![CDATA[L3Zhci9sb2cvYXBhY2hlMg==]]></property><property name="PATH" fullname="$_ENV['PATH']" address="140065211256832" type="string" size="60" encoding="base64"><![CDATA[L3Vzci9sb2NhbC9zYmluOi91c3IvbG9jYWwvYmluOi91c3Ivc2JpbjovdXNyL2Jpbjovc2JpbjovYmlu]]></property><property name="GPG_KEYS" fullname="$_ENV['GPG_KEYS']" address="140065211257080" type="string" size="81" encoding="base64"><![CDATA[MEJENzhCNUY5NzUwMEQ0NTA4MzhGOTVERkU4NTdEOUE5MEQ5MEVDMSA2RTRGNkFCMzIxRkRDMDdGMkMzMzJFM0FDMkJGMEJDNDMzQ0ZDOEIz]]></property><property name="PWD" fullname="$_ENV['PWD']" address="140065211257264" type="string" size="13" encoding="base64"><![CDATA[L3Zhci93d3cvaHRtbA==]]></property><property name="APACHE_RUN_GROUP" fullname="$_ENV['APACHE_RUN_GROUP']" address="140065211257584" type="string" size="8" encoding="base64"><![CDATA[d3d3LWRhdGE=]]></property><property name="SHLVL" fullname="$_ENV['SHLVL']" address="140065211257776" type="string" size="1" encoding="base64"><![CDATA[MA==]]></property><property name="HOME" fullname="$_ENV['HOME']" address="140065211257952" type="string" size="5" encoding="base64"><![CDATA[L3Jvb3Q=]]></property><property name="PHP_SHA256" fullname="$_ENV['PHP_SHA256']" address="140065211258184" type="string" size="64" encoding="base64"><![CDATA[OGVmNDMyNzFkOWJkOGNjOGY4ZDQwN2QzYmE1NjlkZTlmYTE0YTI4OTg1YWU5N2M3NjA4NWJiNTBkNTk3ZGU5OA==]]></property><property name="XDEBUG_INI" fullname="$_ENV['XDEBUG_INI']" address="140065211258392" type="string" size="36" encoding="base64"><![CDATA[L3Vzci9sb2NhbC9ldGMvcGhwL2NvbmYuZC94ZGVidWcuaW5p]]></property><property name="PHP_EXTRA_BUILD_DEPS" fullname="$_ENV['PHP_EXTRA_BUILD_DEPS']" address="140065211258576" type="string" size="11" encoding="base64"><![CDATA[YXBhY2hlMi1kZXY=]]></property><property name="APACHE_LOCK_DIR" fullname="$_ENV['APACHE_LOCK_DIR']" address="140065211258776" type="string" size="17" encoding="base64"><![CDATA[L3Zhci9sb2NrL2FwYWNoZTI=]]></property><property name="APACHE_RUN_DIR" fullname="$_ENV['APACHE_RUN_DIR']" address="140065211258968" type="string" size="16" encoding="base64"><![CDATA[L3Zhci9ydW4vYXBhY2hlMg==]]></property><property name="PHP_VERSION" fullname="$_ENV['PHP_VERSION']" address="140065211259424" type="string" size="6" encoding="base64"><![CDATA[NS42LjE2]]></property><property name="PHP_EXTRA_CONFIGURE_ARGS" fullname="$_ENV['PHP_EXTRA_CONFIGURE_ARGS']" address="140065211259608" type="string" size="12" encoding="base64"><![CDATA[LS13aXRoLWFweHMy]]></property></property><property name="$_FILES" fullname="$_FILES" address="140065211255232" type="array" children="0" numchildren="0" page="0" pagesize="51"></property><property name="$_GET" fullname="$_GET" address="140065211252864" type="array" children="1" numchildren="2" page="0" pagesize="51"><property name="XDEBUG_SESSION_START" fullname="$_GET['XDEBUG_SESSION_START']" address="140065211253576" type="string" size="12" encoding="base64"><![CDATA[RUNMSVBTRV9EQkdQ]]></property><property name="KEY" fullname="$_GET['KEY']" address="140065211254024" type="string" size="14" encoding="base64"><![CDATA[MTQ1MDYzMzc5OTg3NTQ=]]></property></property><property name="$_POST" fullname="$_POST" address="140065211254784" type="array" children="0" numchildren="0" page="0" pagesize="51"></property><property name="$_REQUEST" fullname="$_REQUEST" address="140065211259864" type="array" children="1" numchildren="2" page="0" pagesize="51"><property name="XDEBUG_SESSION_START" fullname="$_REQUEST['XDEBUG_SESSION_START']" address="140065211253576" type="string" size="12" encoding="base64"><![CDATA[RUNMSVBTRV9EQkdQ]]></property><property name="KEY" fullname="$_REQUEST['KEY']" address="140065211254024" type="string" size="14" encoding="base64"><![CDATA[MTQ1MDYzMzc5OTg3NTQ=]]></property></property><property name="$_SERVER" fullname="$_SERVER" address="140065211260296" type="array" children="1" numchildren="32" page="0" pagesize="51"><property name="HTTP_HOST" fullname="$_SERVER['HTTP_HOST']" address="140065211260864" type="string" size="14" encoding="base64"><![CDATA[MTkyLjE2OC45OS4xMDA=]]></property><property name="HTTP_CONNECTION" fullname="$_SERVER['HTTP_CONNECTION']" address="140065211261312" type="string" size="10" encoding="base64"><![CDATA[a2VlcC1hbGl2ZQ==]]></property><property name="HTTP_ACCEPT" fullname="$_SERVER['HTTP_ACCEPT']" address="140065211261808" type="string" size="74" encoding="base64"><![CDATA[dGV4dC9odG1sLGFwcGxpY2F0aW9uL3hodG1sK3htbCxhcHBsaWNhdGlvbi94bWw7cT0wLjksaW1hZ2Uvd2VicCwqLyo7cT0wLjg=]]></property><property name="HTTP_UPGRADE_INSECURE_REQUESTS" fullname="$_SERVER['HTTP_UPGRADE_INSECURE_REQUESTS']" address="140065211262192" type="string" size="1" encoding="base64"><![CDATA[MQ==]]></property><property name="HTTP_USER_AGENT" fullname="$_SERVER['HTTP_USER_AGENT']" address="140065211262656" type="string" size="120" encoding="base64"><![CDATA[TW96aWxsYS81LjAgKE1hY2ludG9zaDsgSW50ZWwgTWFjIE9TIFggMTBfMTFfMikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzQ2LjAuMjQ5MC44MCBTYWZhcmkvNTM3LjM2]]></property><property name="HTTP_ACCEPT_ENCODING" fullname="$_SERVER['HTTP_ACCEPT_ENCODING']" address="140065211263048" type="string" size="19" encoding="base64"><![CDATA[Z3ppcCwgZGVmbGF0ZSwgc2RjaA==]]></property><property name="HTTP_ACCEPT_LANGUAGE" fullname="$_SERVER['HTTP_ACCEPT_LANGUAGE']" address="140065211263480" type="string" size="32" encoding="base64"><![CDATA[ZW4tVVMsZW47cT0wLjgsZXM7cT0wLjYsZnI7cT0wLjQ=]]></property><property name="PATH" fullname="$_SERVER['PATH']" address="140065211263944" type="string" size="60" encoding="base64"><![CDATA[L3Vzci9sb2NhbC9zYmluOi91c3IvbG9jYWwvYmluOi91c3Ivc2JpbjovdXNyL2Jpbjovc2JpbjovYmlu]]></property><property name="SERVER_SIGNATURE" fullname="$_SERVER['SERVER_SIGNATURE']" address="140065211264424" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="SERVER_SOFTWARE" fullname="$_SERVER['SERVER_SOFTWARE']" address="140065211264992" type="string" size="33" encoding="base64"><![CDATA[QXBhY2hlLzIuNC4xMCAoRGViaWFuKSBQSFAvNS42LjE2]]></property><property name="SERVER_NAME" fullname="$_SERVER['SERVER_NAME']" address="140065211265360" type="string" size="14" encoding="base64"><![CDATA[MTkyLjE2OC45OS4xMDA=]]></property><property name="SERVER_ADDR" fullname="$_SERVER['SERVER_ADDR']" address="140065211265728" type="string" size="10" encoding="base64"><![CDATA[MTcyLjE3LjAuMg==]]></property><property name="SERVER_PORT" fullname="$_SERVER['SERVER_PORT']" address="140065211266096" type="string" size="2" encoding="base64"><![CDATA[ODA=]]></property><property name="REMOTE_ADDR" fullname="$_SERVER['REMOTE_ADDR']" address="140065211266464" type="string" size="12" encoding="base64"><![CDATA[MTkyLjE2OC45OS4x]]></property><property name="DOCUMENT_ROOT" fullname="$_SERVER['DOCUMENT_ROOT']" address="140065211266832" type="string" size="13" encoding="base64"><![CDATA[L3Zhci93d3cvaHRtbA==]]></property><property name="REQUEST_SCHEME" fullname="$_SERVER['REQUEST_SCHEME']" address="140065211267200" type="string" size="4" encoding="base64"><![CDATA[aHR0cA==]]></property><property name="CONTEXT_PREFIX" fullname="$_SERVER['CONTEXT_PREFIX']" address="140065211267808" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="CONTEXT_DOCUMENT_ROOT" fullname="$_SERVER['CONTEXT_DOCUMENT_ROOT']" address="140065211268456" type="string" size="13" encoding="base64"><![CDATA[L3Zhci93d3cvaHRtbA==]]></property><property name="SERVER_ADMIN" fullname="$_SERVER['SERVER_ADMIN']" address="140065211268848" type="string" size="19" encoding="base64"><![CDATA[d2VibWFzdGVyQGxvY2FsaG9zdA==]]></property><property name="SCRIPT_FILENAME" fullname="$_SERVER['SCRIPT_FILENAME']" address="140065211269232" type="string" size="23" encoding="base64"><![CDATA[L3Zhci93d3cvaHRtbC9pbmRleC5waHA=]]></property><property name="REMOTE_PORT" fullname="$_SERVER['REMOTE_PORT']" address="140065211269600" type="string" size="5" encoding="base64"><![CDATA[NTEzOTE=]]></property><property name="GATEWAY_INTERFACE" fullname="$_SERVER['GATEWAY_INTERFACE']" address="140065211269976" type="string" size="7" encoding="base64"><![CDATA[Q0dJLzEuMQ==]]></property><property name="SERVER_PROTOCOL" fullname="$_SERVER['SERVER_PROTOCOL']" address="140065211270352" type="string" size="8" encoding="base64"><![CDATA[SFRUUC8xLjE=]]></property><property name="REQUEST_METHOD" fullname="$_SERVER['REQUEST_METHOD']" address="140065211270720" type="string" size="3" encoding="base64"><![CDATA[R0VU]]></property><property name="QUERY_STRING" fullname="$_SERVER['QUERY_STRING']" address="140065211271096" type="string" size="52" encoding="base64"><![CDATA[WERFQlVHX1NFU1NJT05fU1RBUlQ9RUNMSVBTRV9EQkdQJktFWT0xNDUwNjMzNzk5ODc1NA==]]></property><property name="REQUEST_URI" fullname="$_SERVER['REQUEST_URI']" address="140065211271544" type="string" size="54" encoding="base64"><![CDATA[Lz9YREVCVUdfU0VTU0lPTl9TVEFSVD1FQ0xJUFNFX0RCR1AmS0VZPTE0NTA2MzM3OTk4NzU0]]></property><property name="SCRIPT_NAME" fullname="$_SERVER['SCRIPT_NAME']" address="140065211271912" type="string" size="10" encoding="base64"><![CDATA[L2luZGV4LnBocA==]]></property><property name="PHP_SELF" fullname="$_SERVER['PHP_SELF']" address="140065211272280" type="string" size="10" encoding="base64"><![CDATA[L2luZGV4LnBocA==]]></property><property name="REQUEST_TIME_FLOAT" fullname="$_SERVER['REQUEST_TIME_FLOAT']" address="140065211272432" type="float"><![CDATA[1450633800.505]]></property><property name="REQUEST_TIME" fullname="$_SERVER['REQUEST_TIME']" address="140065211272592" type="int"><![CDATA[1450633800]]></property><property name="argv" fullname="$_SERVER['argv']" address="140065211272744" type="array" children="1" numchildren="1" page="0" pagesize="51"><property name="0" fullname="$_SERVER['argv'][0]" address="140065211272880" type="string" size="52" encoding="base64"><![CDATA[WERFQlVHX1NFU1NJT05fU1RBUlQ9RUNMSVBTRV9EQkdQJktFWT0xNDUwNjMzNzk5ODc1NA==]]></property></property><property name="argc" fullname="$_SERVER['argc']" address="140065211273088" type="int"><![CDATA[1]]></property></property></response>

<- context_get -i 122 -d 0
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="context_get" transaction_id="122" context="0"></response>

<- step_into -i 123
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="step_into" transaction_id="123" status="break" reason="ok"><xdebug:message filename="file:///var/www/html/index.php" lineno="11"></xdebug:message></response>

<- stack_get -i 124
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="stack_get" transaction_id="124"><stack where="{main}" level="0" type="file" filename="file:///var/www/html/index.php" lineno="11"></stack></response>

<- context_get -i 125 -c 1
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="context_get" transaction_id="125" context="1"><property name="$_COOKIE" fullname="$_COOKIE" address="140065211255008" type="array" children="0" numchildren="0" page="0" pagesize="51"></property><property name="$_ENV" fullname="$_ENV" address="140065211255456" type="array" children="1" numchildren="19" page="0" pagesize="51"><property name="APACHE_PID_FILE" fullname="$_ENV['APACHE_PID_FILE']" address="140065211255640" type="string" size="28" encoding="base64"><![CDATA[L3Zhci9ydW4vYXBhY2hlMi9hcGFjaGUyLnBpZA==]]></property><property name="HOSTNAME" fullname="$_ENV['HOSTNAME']" address="140065211255872" type="string" size="12" encoding="base64"><![CDATA[NDBjZTgxN2Y3Mjhm]]></property><property name="APACHE_RUN_USER" fullname="$_ENV['APACHE_RUN_USER']" address="140065211256024" type="string" size="8" encoding="base64"><![CDATA[d3d3LWRhdGE=]]></property><property name="PHP_INI_DIR" fullname="$_ENV['PHP_INI_DIR']" address="140065211256216" type="string" size="18" encoding="base64"><![CDATA[L3Vzci9sb2NhbC9ldGMvcGhw]]></property><property name="PHP_FILENAME" fullname="$_ENV['PHP_FILENAME']" address="140065211256408" type="string" size="17" encoding="base64"><![CDATA[cGhwLTUuNi4xNi50YXIueHo=]]></property><property name="APACHE_LOG_DIR" fullname="$_ENV['APACHE_LOG_DIR']" address="140065211256600" type="string" size="16" encoding="base64"><![CDATA[L3Zhci9sb2cvYXBhY2hlMg==]]></property><property name="PATH" fullname="$_ENV['PATH']" address="140065211256832" type="string" size="60" encoding="base64"><![CDATA[L3Vzci9sb2NhbC9zYmluOi91c3IvbG9jYWwvYmluOi91c3Ivc2JpbjovdXNyL2Jpbjovc2JpbjovYmlu]]></property><property name="GPG_KEYS" fullname="$_ENV['GPG_KEYS']" address="140065211257080" type="string" size="81" encoding="base64"><![CDATA[MEJENzhCNUY5NzUwMEQ0NTA4MzhGOTVERkU4NTdEOUE5MEQ5MEVDMSA2RTRGNkFCMzIxRkRDMDdGMkMzMzJFM0FDMkJGMEJDNDMzQ0ZDOEIz]]></property><property name="PWD" fullname="$_ENV['PWD']" address="140065211257264" type="string" size="13" encoding="base64"><![CDATA[L3Zhci93d3cvaHRtbA==]]></property><property name="APACHE_RUN_GROUP" fullname="$_ENV['APACHE_RUN_GROUP']" address="140065211257584" type="string" size="8" encoding="base64"><![CDATA[d3d3LWRhdGE=]]></property><property name="SHLVL" fullname="$_ENV['SHLVL']" address="140065211257776" type="string" size="1" encoding="base64"><![CDATA[MA==]]></property><property name="HOME" fullname="$_ENV['HOME']" address="140065211257952" type="string" size="5" encoding="base64"><![CDATA[L3Jvb3Q=]]></property><property name="PHP_SHA256" fullname="$_ENV['PHP_SHA256']" address="140065211258184" type="string" size="64" encoding="base64"><![CDATA[OGVmNDMyNzFkOWJkOGNjOGY4ZDQwN2QzYmE1NjlkZTlmYTE0YTI4OTg1YWU5N2M3NjA4NWJiNTBkNTk3ZGU5OA==]]></property><property name="XDEBUG_INI" fullname="$_ENV['XDEBUG_INI']" address="140065211258392" type="string" size="36" encoding="base64"><![CDATA[L3Vzci9sb2NhbC9ldGMvcGhwL2NvbmYuZC94ZGVidWcuaW5p]]></property><property name="PHP_EXTRA_BUILD_DEPS" fullname="$_ENV['PHP_EXTRA_BUILD_DEPS']" address="140065211258576" type="string" size="11" encoding="base64"><![CDATA[YXBhY2hlMi1kZXY=]]></property><property name="APACHE_LOCK_DIR" fullname="$_ENV['APACHE_LOCK_DIR']" address="140065211258776" type="string" size="17" encoding="base64"><![CDATA[L3Zhci9sb2NrL2FwYWNoZTI=]]></property><property name="APACHE_RUN_DIR" fullname="$_ENV['APACHE_RUN_DIR']" address="140065211258968" type="string" size="16" encoding="base64"><![CDATA[L3Zhci9ydW4vYXBhY2hlMg==]]></property><property name="PHP_VERSION" fullname="$_ENV['PHP_VERSION']" address="140065211259424" type="string" size="6" encoding="base64"><![CDATA[NS42LjE2]]></property><property name="PHP_EXTRA_CONFIGURE_ARGS" fullname="$_ENV['PHP_EXTRA_CONFIGURE_ARGS']" address="140065211259608" type="string" size="12" encoding="base64"><![CDATA[LS13aXRoLWFweHMy]]></property></property><property name="$_FILES" fullname="$_FILES" address="140065211255232" type="array" children="0" numchildren="0" page="0" pagesize="51"></property><property name="$_GET" fullname="$_GET" address="140065211252864" type="array" children="1" numchildren="2" page="0" pagesize="51"><property name="XDEBUG_SESSION_START" fullname="$_GET['XDEBUG_SESSION_START']" address="140065211253576" type="string" size="12" encoding="base64"><![CDATA[RUNMSVBTRV9EQkdQ]]></property><property name="KEY" fullname="$_GET['KEY']" address="140065211254024" type="string" size="14" encoding="base64"><![CDATA[MTQ1MDYzMzc5OTg3NTQ=]]></property></property><property name="$_POST" fullname="$_POST" address="140065211254784" type="array" children="0" numchildren="0" page="0" pagesize="51"></property><property name="$_REQUEST" fullname="$_REQUEST" address="140065211259864" type="array" children="1" numchildren="2" page="0" pagesize="51"><property name="XDEBUG_SESSION_START" fullname="$_REQUEST['XDEBUG_SESSION_START']" address="140065211253576" type="string" size="12" encoding="base64"><![CDATA[RUNMSVBTRV9EQkdQ]]></property><property name="KEY" fullname="$_REQUEST['KEY']" address="140065211254024" type="string" size="14" encoding="base64"><![CDATA[MTQ1MDYzMzc5OTg3NTQ=]]></property></property><property name="$_SERVER" fullname="$_SERVER" address="140065211260296" type="array" children="1" numchildren="32" page="0" pagesize="51"><property name="HTTP_HOST" fullname="$_SERVER['HTTP_HOST']" address="140065211260864" type="string" size="14" encoding="base64"><![CDATA[MTkyLjE2OC45OS4xMDA=]]></property><property name="HTTP_CONNECTION" fullname="$_SERVER['HTTP_CONNECTION']" address="140065211261312" type="string" size="10" encoding="base64"><![CDATA[a2VlcC1hbGl2ZQ==]]></property><property name="HTTP_ACCEPT" fullname="$_SERVER['HTTP_ACCEPT']" address="140065211261808" type="string" size="74" encoding="base64"><![CDATA[dGV4dC9odG1sLGFwcGxpY2F0aW9uL3hodG1sK3htbCxhcHBsaWNhdGlvbi94bWw7cT0wLjksaW1hZ2Uvd2VicCwqLyo7cT0wLjg=]]></property><property name="HTTP_UPGRADE_INSECURE_REQUESTS" fullname="$_SERVER['HTTP_UPGRADE_INSECURE_REQUESTS']" address="140065211262192" type="string" size="1" encoding="base64"><![CDATA[MQ==]]></property><property name="HTTP_USER_AGENT" fullname="$_SERVER['HTTP_USER_AGENT']" address="140065211262656" type="string" size="120" encoding="base64"><![CDATA[TW96aWxsYS81LjAgKE1hY2ludG9zaDsgSW50ZWwgTWFjIE9TIFggMTBfMTFfMikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzQ2LjAuMjQ5MC44MCBTYWZhcmkvNTM3LjM2]]></property><property name="HTTP_ACCEPT_ENCODING" fullname="$_SERVER['HTTP_ACCEPT_ENCODING']" address="140065211263048" type="string" size="19" encoding="base64"><![CDATA[Z3ppcCwgZGVmbGF0ZSwgc2RjaA==]]></property><property name="HTTP_ACCEPT_LANGUAGE" fullname="$_SERVER['HTTP_ACCEPT_LANGUAGE']" address="140065211263480" type="string" size="32" encoding="base64"><![CDATA[ZW4tVVMsZW47cT0wLjgsZXM7cT0wLjYsZnI7cT0wLjQ=]]></property><property name="PATH" fullname="$_SERVER['PATH']" address="140065211263944" type="string" size="60" encoding="base64"><![CDATA[L3Vzci9sb2NhbC9zYmluOi91c3IvbG9jYWwvYmluOi91c3Ivc2JpbjovdXNyL2Jpbjovc2JpbjovYmlu]]></property><property name="SERVER_SIGNATURE" fullname="$_SERVER['SERVER_SIGNATURE']" address="140065211264424" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="SERVER_SOFTWARE" fullname="$_SERVER['SERVER_SOFTWARE']" address="140065211264992" type="string" size="33" encoding="base64"><![CDATA[QXBhY2hlLzIuNC4xMCAoRGViaWFuKSBQSFAvNS42LjE2]]></property><property name="SERVER_NAME" fullname="$_SERVER['SERVER_NAME']" address="140065211265360" type="string" size="14" encoding="base64"><![CDATA[MTkyLjE2OC45OS4xMDA=]]></property><property name="SERVER_ADDR" fullname="$_SERVER['SERVER_ADDR']" address="140065211265728" type="string" size="10" encoding="base64"><![CDATA[MTcyLjE3LjAuMg==]]></property><property name="SERVER_PORT" fullname="$_SERVER['SERVER_PORT']" address="140065211266096" type="string" size="2" encoding="base64"><![CDATA[ODA=]]></property><property name="REMOTE_ADDR" fullname="$_SERVER['REMOTE_ADDR']" address="140065211266464" type="string" size="12" encoding="base64"><![CDATA[MTkyLjE2OC45OS4x]]></property><property name="DOCUMENT_ROOT" fullname="$_SERVER['DOCUMENT_ROOT']" address="140065211266832" type="string" size="13" encoding="base64"><![CDATA[L3Zhci93d3cvaHRtbA==]]></property><property name="REQUEST_SCHEME" fullname="$_SERVER['REQUEST_SCHEME']" address="140065211267200" type="string" size="4" encoding="base64"><![CDATA[aHR0cA==]]></property><property name="CONTEXT_PREFIX" fullname="$_SERVER['CONTEXT_PREFIX']" address="140065211267808" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="CONTEXT_DOCUMENT_ROOT" fullname="$_SERVER['CONTEXT_DOCUMENT_ROOT']" address="140065211268456" type="string" size="13" encoding="base64"><![CDATA[L3Zhci93d3cvaHRtbA==]]></property><property name="SERVER_ADMIN" fullname="$_SERVER['SERVER_ADMIN']" address="140065211268848" type="string" size="19" encoding="base64"><![CDATA[d2VibWFzdGVyQGxvY2FsaG9zdA==]]></property><property name="SCRIPT_FILENAME" fullname="$_SERVER['SCRIPT_FILENAME']" address="140065211269232" type="string" size="23" encoding="base64"><![CDATA[L3Zhci93d3cvaHRtbC9pbmRleC5waHA=]]></property><property name="REMOTE_PORT" fullname="$_SERVER['REMOTE_PORT']" address="140065211269600" type="string" size="5" encoding="base64"><![CDATA[NTEzOTE=]]></property><property name="GATEWAY_INTERFACE" fullname="$_SERVER['GATEWAY_INTERFACE']" address="140065211269976" type="string" size="7" encoding="base64"><![CDATA[Q0dJLzEuMQ==]]></property><property name="SERVER_PROTOCOL" fullname="$_SERVER['SERVER_PROTOCOL']" address="140065211270352" type="string" size="8" encoding="base64"><![CDATA[SFRUUC8xLjE=]]></property><property name="REQUEST_METHOD" fullname="$_SERVER['REQUEST_METHOD']" address="140065211270720" type="string" size="3" encoding="base64"><![CDATA[R0VU]]></property><property name="QUERY_STRING" fullname="$_SERVER['QUERY_STRING']" address="140065211271096" type="string" size="52" encoding="base64"><![CDATA[WERFQlVHX1NFU1NJT05fU1RBUlQ9RUNMSVBTRV9EQkdQJktFWT0xNDUwNjMzNzk5ODc1NA==]]></property><property name="REQUEST_URI" fullname="$_SERVER['REQUEST_URI']" address="140065211271544" type="string" size="54" encoding="base64"><![CDATA[Lz9YREVCVUdfU0VTU0lPTl9TVEFSVD1FQ0xJUFNFX0RCR1AmS0VZPTE0NTA2MzM3OTk4NzU0]]></property><property name="SCRIPT_NAME" fullname="$_SERVER['SCRIPT_NAME']" address="140065211271912" type="string" size="10" encoding="base64"><![CDATA[L2luZGV4LnBocA==]]></property><property name="PHP_SELF" fullname="$_SERVER['PHP_SELF']" address="140065211272280" type="string" size="10" encoding="base64"><![CDATA[L2luZGV4LnBocA==]]></property><property name="REQUEST_TIME_FLOAT" fullname="$_SERVER['REQUEST_TIME_FLOAT']" address="140065211272432" type="float"><![CDATA[1450633800.505]]></property><property name="REQUEST_TIME" fullname="$_SERVER['REQUEST_TIME']" address="140065211272592" type="int"><![CDATA[1450633800]]></property><property name="argv" fullname="$_SERVER['argv']" address="140065211272744" type="array" children="1" numchildren="1" page="0" pagesize="51"><property name="0" fullname="$_SERVER['argv'][0]" address="140065211272880" type="string" size="52" encoding="base64"><![CDATA[WERFQlVHX1NFU1NJT05fU1RBUlQ9RUNMSVBTRV9EQkdQJktFWT0xNDUwNjMzNzk5ODc1NA==]]></property></property><property name="argc" fullname="$_SERVER['argc']" address="140065211273088" type="int"><![CDATA[1]]></property></property></response>

<- context_get -i 126 -d 0
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="context_get" transaction_id="126" context="0"></response>

<- step_into -i 127
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="step_into" transaction_id="127" status="break" reason="ok"><xdebug:message filename="file:///var/www/html/index.php" lineno="7"></xdebug:message></response>

<- stack_get -i 128
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="stack_get" transaction_id="128"><stack where="A::init" level="0" type="file" filename="file:///var/www/html/index.php" lineno="7"></stack><stack where="{main}" level="1" type="file" filename="file:///var/www/html/index.php" lineno="11"></stack></response>

<- context_get -i 129 -c 1
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="context_get" transaction_id="129" context="1"><property name="$_COOKIE" fullname="$_COOKIE" address="140065211255008" type="array" children="0" numchildren="0" page="0" pagesize="51"></property><property name="$_ENV" fullname="$_ENV" address="140065211255456" type="array" children="1" numchildren="19" page="0" pagesize="51"><property name="APACHE_PID_FILE" fullname="$_ENV['APACHE_PID_FILE']" address="140065211255640" type="string" size="28" encoding="base64"><![CDATA[L3Zhci9ydW4vYXBhY2hlMi9hcGFjaGUyLnBpZA==]]></property><property name="HOSTNAME" fullname="$_ENV['HOSTNAME']" address="140065211255872" type="string" size="12" encoding="base64"><![CDATA[NDBjZTgxN2Y3Mjhm]]></property><property name="APACHE_RUN_USER" fullname="$_ENV['APACHE_RUN_USER']" address="140065211256024" type="string" size="8" encoding="base64"><![CDATA[d3d3LWRhdGE=]]></property><property name="PHP_INI_DIR" fullname="$_ENV['PHP_INI_DIR']" address="140065211256216" type="string" size="18" encoding="base64"><![CDATA[L3Vzci9sb2NhbC9ldGMvcGhw]]></property><property name="PHP_FILENAME" fullname="$_ENV['PHP_FILENAME']" address="140065211256408" type="string" size="17" encoding="base64"><![CDATA[cGhwLTUuNi4xNi50YXIueHo=]]></property><property name="APACHE_LOG_DIR" fullname="$_ENV['APACHE_LOG_DIR']" address="140065211256600" type="string" size="16" encoding="base64"><![CDATA[L3Zhci9sb2cvYXBhY2hlMg==]]></property><property name="PATH" fullname="$_ENV['PATH']" address="140065211256832" type="string" size="60" encoding="base64"><![CDATA[L3Vzci9sb2NhbC9zYmluOi91c3IvbG9jYWwvYmluOi91c3Ivc2JpbjovdXNyL2Jpbjovc2JpbjovYmlu]]></property><property name="GPG_KEYS" fullname="$_ENV['GPG_KEYS']" address="140065211257080" type="string" size="81" encoding="base64"><![CDATA[MEJENzhCNUY5NzUwMEQ0NTA4MzhGOTVERkU4NTdEOUE5MEQ5MEVDMSA2RTRGNkFCMzIxRkRDMDdGMkMzMzJFM0FDMkJGMEJDNDMzQ0ZDOEIz]]></property><property name="PWD" fullname="$_ENV['PWD']" address="140065211257264" type="string" size="13" encoding="base64"><![CDATA[L3Zhci93d3cvaHRtbA==]]></property><property name="APACHE_RUN_GROUP" fullname="$_ENV['APACHE_RUN_GROUP']" address="140065211257584" type="string" size="8" encoding="base64"><![CDATA[d3d3LWRhdGE=]]></property><property name="SHLVL" fullname="$_ENV['SHLVL']" address="140065211257776" type="string" size="1" encoding="base64"><![CDATA[MA==]]></property><property name="HOME" fullname="$_ENV['HOME']" address="140065211257952" type="string" size="5" encoding="base64"><![CDATA[L3Jvb3Q=]]></property><property name="PHP_SHA256" fullname="$_ENV['PHP_SHA256']" address="140065211258184" type="string" size="64" encoding="base64"><![CDATA[OGVmNDMyNzFkOWJkOGNjOGY4ZDQwN2QzYmE1NjlkZTlmYTE0YTI4OTg1YWU5N2M3NjA4NWJiNTBkNTk3ZGU5OA==]]></property><property name="XDEBUG_INI" fullname="$_ENV['XDEBUG_INI']" address="140065211258392" type="string" size="36" encoding="base64"><![CDATA[L3Vzci9sb2NhbC9ldGMvcGhwL2NvbmYuZC94ZGVidWcuaW5p]]></property><property name="PHP_EXTRA_BUILD_DEPS" fullname="$_ENV['PHP_EXTRA_BUILD_DEPS']" address="140065211258576" type="string" size="11" encoding="base64"><![CDATA[YXBhY2hlMi1kZXY=]]></property><property name="APACHE_LOCK_DIR" fullname="$_ENV['APACHE_LOCK_DIR']" address="140065211258776" type="string" size="17" encoding="base64"><![CDATA[L3Zhci9sb2NrL2FwYWNoZTI=]]></property><property name="APACHE_RUN_DIR" fullname="$_ENV['APACHE_RUN_DIR']" address="140065211258968" type="string" size="16" encoding="base64"><![CDATA[L3Zhci9ydW4vYXBhY2hlMg==]]></property><property name="PHP_VERSION" fullname="$_ENV['PHP_VERSION']" address="140065211259424" type="string" size="6" encoding="base64"><![CDATA[NS42LjE2]]></property><property name="PHP_EXTRA_CONFIGURE_ARGS" fullname="$_ENV['PHP_EXTRA_CONFIGURE_ARGS']" address="140065211259608" type="string" size="12" encoding="base64"><![CDATA[LS13aXRoLWFweHMy]]></property></property><property name="$_FILES" fullname="$_FILES" address="140065211255232" type="array" children="0" numchildren="0" page="0" pagesize="51"></property><property name="$_GET" fullname="$_GET" address="140065211252864" type="array" children="1" numchildren="2" page="0" pagesize="51"><property name="XDEBUG_SESSION_START" fullname="$_GET['XDEBUG_SESSION_START']" address="140065211253576" type="string" size="12" encoding="base64"><![CDATA[RUNMSVBTRV9EQkdQ]]></property><property name="KEY" fullname="$_GET['KEY']" address="140065211254024" type="string" size="14" encoding="base64"><![CDATA[MTQ1MDYzMzc5OTg3NTQ=]]></property></property><property name="$_POST" fullname="$_POST" address="140065211254784" type="array" children="0" numchildren="0" page="0" pagesize="51"></property><property name="$_REQUEST" fullname="$_REQUEST" address="140065211259864" type="array" children="1" numchildren="2" page="0" pagesize="51"><property name="XDEBUG_SESSION_START" fullname="$_REQUEST['XDEBUG_SESSION_START']" address="140065211253576" type="string" size="12" encoding="base64"><![CDATA[RUNMSVBTRV9EQkdQ]]></property><property name="KEY" fullname="$_REQUEST['KEY']" address="140065211254024" type="string" size="14" encoding="base64"><![CDATA[MTQ1MDYzMzc5OTg3NTQ=]]></property></property><property name="$_SERVER" fullname="$_SERVER" address="140065211260296" type="array" children="1" numchildren="32" page="0" pagesize="51"><property name="HTTP_HOST" fullname="$_SERVER['HTTP_HOST']" address="140065211260864" type="string" size="14" encoding="base64"><![CDATA[MTkyLjE2OC45OS4xMDA=]]></property><property name="HTTP_CONNECTION" fullname="$_SERVER['HTTP_CONNECTION']" address="140065211261312" type="string" size="10" encoding="base64"><![CDATA[a2VlcC1hbGl2ZQ==]]></property><property name="HTTP_ACCEPT" fullname="$_SERVER['HTTP_ACCEPT']" address="140065211261808" type="string" size="74" encoding="base64"><![CDATA[dGV4dC9odG1sLGFwcGxpY2F0aW9uL3hodG1sK3htbCxhcHBsaWNhdGlvbi94bWw7cT0wLjksaW1hZ2Uvd2VicCwqLyo7cT0wLjg=]]></property><property name="HTTP_UPGRADE_INSECURE_REQUESTS" fullname="$_SERVER['HTTP_UPGRADE_INSECURE_REQUESTS']" address="140065211262192" type="string" size="1" encoding="base64"><![CDATA[MQ==]]></property><property name="HTTP_USER_AGENT" fullname="$_SERVER['HTTP_USER_AGENT']" address="140065211262656" type="string" size="120" encoding="base64"><![CDATA[TW96aWxsYS81LjAgKE1hY2ludG9zaDsgSW50ZWwgTWFjIE9TIFggMTBfMTFfMikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzQ2LjAuMjQ5MC44MCBTYWZhcmkvNTM3LjM2]]></property><property name="HTTP_ACCEPT_ENCODING" fullname="$_SERVER['HTTP_ACCEPT_ENCODING']" address="140065211263048" type="string" size="19" encoding="base64"><![CDATA[Z3ppcCwgZGVmbGF0ZSwgc2RjaA==]]></property><property name="HTTP_ACCEPT_LANGUAGE" fullname="$_SERVER['HTTP_ACCEPT_LANGUAGE']" address="140065211263480" type="string" size="32" encoding="base64"><![CDATA[ZW4tVVMsZW47cT0wLjgsZXM7cT0wLjYsZnI7cT0wLjQ=]]></property><property name="PATH" fullname="$_SERVER['PATH']" address="140065211263944" type="string" size="60" encoding="base64"><![CDATA[L3Vzci9sb2NhbC9zYmluOi91c3IvbG9jYWwvYmluOi91c3Ivc2JpbjovdXNyL2Jpbjovc2JpbjovYmlu]]></property><property name="SERVER_SIGNATURE" fullname="$_SERVER['SERVER_SIGNATURE']" address="140065211264424" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="SERVER_SOFTWARE" fullname="$_SERVER['SERVER_SOFTWARE']" address="140065211264992" type="string" size="33" encoding="base64"><![CDATA[QXBhY2hlLzIuNC4xMCAoRGViaWFuKSBQSFAvNS42LjE2]]></property><property name="SERVER_NAME" fullname="$_SERVER['SERVER_NAME']" address="140065211265360" type="string" size="14" encoding="base64"><![CDATA[MTkyLjE2OC45OS4xMDA=]]></property><property name="SERVER_ADDR" fullname="$_SERVER['SERVER_ADDR']" address="140065211265728" type="string" size="10" encoding="base64"><![CDATA[MTcyLjE3LjAuMg==]]></property><property name="SERVER_PORT" fullname="$_SERVER['SERVER_PORT']" address="140065211266096" type="string" size="2" encoding="base64"><![CDATA[ODA=]]></property><property name="REMOTE_ADDR" fullname="$_SERVER['REMOTE_ADDR']" address="140065211266464" type="string" size="12" encoding="base64"><![CDATA[MTkyLjE2OC45OS4x]]></property><property name="DOCUMENT_ROOT" fullname="$_SERVER['DOCUMENT_ROOT']" address="140065211266832" type="string" size="13" encoding="base64"><![CDATA[L3Zhci93d3cvaHRtbA==]]></property><property name="REQUEST_SCHEME" fullname="$_SERVER['REQUEST_SCHEME']" address="140065211267200" type="string" size="4" encoding="base64"><![CDATA[aHR0cA==]]></property><property name="CONTEXT_PREFIX" fullname="$_SERVER['CONTEXT_PREFIX']" address="140065211267808" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="CONTEXT_DOCUMENT_ROOT" fullname="$_SERVER['CONTEXT_DOCUMENT_ROOT']" address="140065211268456" type="string" size="13" encoding="base64"><![CDATA[L3Zhci93d3cvaHRtbA==]]></property><property name="SERVER_ADMIN" fullname="$_SERVER['SERVER_ADMIN']" address="140065211268848" type="string" size="19" encoding="base64"><![CDATA[d2VibWFzdGVyQGxvY2FsaG9zdA==]]></property><property name="SCRIPT_FILENAME" fullname="$_SERVER['SCRIPT_FILENAME']" address="140065211269232" type="string" size="23" encoding="base64"><![CDATA[L3Zhci93d3cvaHRtbC9pbmRleC5waHA=]]></property><property name="REMOTE_PORT" fullname="$_SERVER['REMOTE_PORT']" address="140065211269600" type="string" size="5" encoding="base64"><![CDATA[NTEzOTE=]]></property><property name="GATEWAY_INTERFACE" fullname="$_SERVER['GATEWAY_INTERFACE']" address="140065211269976" type="string" size="7" encoding="base64"><![CDATA[Q0dJLzEuMQ==]]></property><property name="SERVER_PROTOCOL" fullname="$_SERVER['SERVER_PROTOCOL']" address="140065211270352" type="string" size="8" encoding="base64"><![CDATA[SFRUUC8xLjE=]]></property><property name="REQUEST_METHOD" fullname="$_SERVER['REQUEST_METHOD']" address="140065211270720" type="string" size="3" encoding="base64"><![CDATA[R0VU]]></property><property name="QUERY_STRING" fullname="$_SERVER['QUERY_STRING']" address="140065211271096" type="string" size="52" encoding="base64"><![CDATA[WERFQlVHX1NFU1NJT05fU1RBUlQ9RUNMSVBTRV9EQkdQJktFWT0xNDUwNjMzNzk5ODc1NA==]]></property><property name="REQUEST_URI" fullname="$_SERVER['REQUEST_URI']" address="140065211271544" type="string" size="54" encoding="base64"><![CDATA[Lz9YREVCVUdfU0VTU0lPTl9TVEFSVD1FQ0xJUFNFX0RCR1AmS0VZPTE0NTA2MzM3OTk4NzU0]]></property><property name="SCRIPT_NAME" fullname="$_SERVER['SCRIPT_NAME']" address="140065211271912" type="string" size="10" encoding="base64"><![CDATA[L2luZGV4LnBocA==]]></property><property name="PHP_SELF" fullname="$_SERVER['PHP_SELF']" address="140065211272280" type="string" size="10" encoding="base64"><![CDATA[L2luZGV4LnBocA==]]></property><property name="REQUEST_TIME_FLOAT" fullname="$_SERVER['REQUEST_TIME_FLOAT']" address="140065211272432" type="float"><![CDATA[1450633800.505]]></property><property name="REQUEST_TIME" fullname="$_SERVER['REQUEST_TIME']" address="140065211272592" type="int"><![CDATA[1450633800]]></property><property name="argv" fullname="$_SERVER['argv']" address="140065211272744" type="array" children="1" numchildren="1" page="0" pagesize="51"><property name="0" fullname="$_SERVER['argv'][0]" address="140065211272880" type="string" size="52" encoding="base64"><![CDATA[WERFQlVHX1NFU1NJT05fU1RBUlQ9RUNMSVBTRV9EQkdQJktFWT0xNDUwNjMzNzk5ODc1NA==]]></property></property><property name="argc" fullname="$_SERVER['argc']" address="140065211273088" type="int"><![CDATA[1]]></property></property></response>

<- context_get -i 130 -d 0
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="context_get" transaction_id="130" context="0"><property name="$a" fullname="$a" type="uninitialized"></property><property name="::" fullname="::" type="object" classname="A" children="1" numchildren="1"><property name="::a" fullname="::a" address="140065211280352" type="null" facet="static private"></property></property></response>

<- step_into -i 131
-> <stream xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; type="stdout" encoding="base64"><![CDATA[PGJyIC8+Cjxmb250IHNpemU9JzEnPjx0YWJsZSBjbGFzcz0neGRlYnVnLWVycm9yIHhlLWZhdGFsLWVycm9yJyBkaXI9J2x0cicgYm9yZGVyPScxJyBjZWxsc3BhY2luZz0nMCcgY2VsbHBhZGRpbmc9JzEnPgo8dHI+PHRoIGFsaWduPSdsZWZ0JyBiZ2NvbG9yPScjZjU3OTAwJyBjb2xzcGFuPSI1Ij48c3BhbiBzdHlsZT0nYmFja2dyb3VuZC1jb2xvcjogI2NjMDAwMDsgY29sb3I6ICNmY2U5NGY7IGZvbnQtc2l6ZTogeC1sYXJnZTsnPiggISApPC9zcGFuPiBGYXRhbCBlcnJvcjogQWNjZXNzIHRvIHVuZGVjbGFyZWQgc3RhdGljIHByb3BlcnR5OiBBOjokYSBpbiAvdmFyL3d3dy9odG1sL2luZGV4LnBocCBvbiBsaW5lIDxpPjc8L2k+PC90aD48L3RyPgo8dHI+PHRoIGFsaWduPSdsZWZ0JyBiZ2NvbG9yPScjZTliOTZlJyBjb2xzcGFuPSc1Jz5DYWxsIFN0YWNrPC90aD48L3RyPgo8dHI+PHRoIGFsaWduPSdjZW50ZXInIGJnY29sb3I9JyNlZWVlZWMnPiM8L3RoPjx0aCBhbGlnbj0nbGVmdCcgYmdjb2xvcj0nI2VlZWVlYyc+VGltZTwvdGg+PHRoIGFsaWduPSdsZWZ0JyBiZ2NvbG9yPScjZWVlZWVjJz5NZW1vcnk8L3RoPjx0aCBhbGlnbj0nbGVmdCcgYmdjb2xvcj0nI2VlZWVlYyc+RnVuY3Rpb248L3RoPjx0aCBhbGlnbj0nbGVmdCcgYmdjb2xvcj0nI2VlZWVlYyc+TG9jYXRpb248L3RoPjwvdHI+Cjx0cj48dGQgYmdjb2xvcj0nI2VlZWVlYycgYWxpZ249J2NlbnRlcic+MTwvdGQ+PHRkIGJnY29sb3I9JyNlZWVlZWMnIGFsaWduPSdjZW50ZXInPjAuMDExNjwvdGQ+PHRkIGJnY29sb3I9JyNlZWVlZWMnIGFsaWduPSdyaWdodCc+MjMxNzkyPC90ZD48dGQgYmdjb2xvcj0nI2VlZWVlYyc+e21haW59KCAgKTwvdGQ+PHRkIHRpdGxlPScvdmFyL3d3dy9odG1sL2luZGV4LnBocCcgYmdjb2xvcj0nI2VlZWVlYyc+Li4uL2luZGV4LnBocDxiPjo8L2I+MDwvdGQ+PC90cj4KPHRyPjx0ZCBiZ2NvbG9yPScjZWVlZWVjJyBhbGlnbj0nY2VudGVyJz4yPC90ZD48dGQgYmdjb2xvcj0nI2VlZWVlYycgYWxpZ249J2NlbnRlcic+Mi45MzgzPC90ZD48dGQgYmdjb2xvcj0nI2VlZWVlYycgYWxpZ249J3JpZ2h0Jz4yMzE5ODQ8L3RkPjx0ZCBiZ2NvbG9yPScjZWVlZWVjJz5BOjppbml0KCAgKTwvdGQ+PHRkIHRpdGxlPScvdmFyL3d3dy9odG1sL2luZGV4LnBocCcgYmdjb2xvcj0nI2VlZWVlYyc+Li4uL2luZGV4LnBocDxiPjo8L2I+MTE8L3RkPjwvdHI+CjwvdGFibGU+PC9mb250Pgo=]]></stream>

-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="step_into" transaction_id="131" status="stopping" reason="ok"></response>

<- stop -i 132
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="stop" transaction_id="132" status="stopped" reason="ok"></response>

Log closed at 2015-12-20 17:50:05

derick

2016-02-11 19:07

administrator   ~0003486

I've just tried this again, with the code and log provided, but I can not reproduce. I get the right output, both with PHP 5.5.24/Xdebug 2.3.3, and PHP 7.0.2/Xdebug 2.4.0RC4.

There must be something in your environment, or perhaps you PHP binary that messes things up, but as long as I can't reproduce this, I can't fix it.

I'm going to suspend this issue until there is new information. What would be best is a set-up without docker, that I can SSH into. The docker containers do not provide enough tools and make it too difficult to debug this unfortunately.

Issue History

Date Modified Username Field Change
2015-09-20 20:46 jfilipczyk New Issue
2015-09-21 12:03 gelbehexe Note Added: 0003176
2015-11-20 17:57 derick Target Version => 2.4.1
2015-11-25 06:26 id02009 Note Added: 0003267
2015-12-19 12:46 derick Note Added: 0003366
2015-12-19 12:46 derick Assigned To => derick
2015-12-19 12:46 derick Status new => feedback
2015-12-20 17:59 nachinius Note Added: 0003367
2015-12-20 18:00 nachinius Note Edited: 0003367
2016-02-11 19:07 derick Note Added: 0003486
2016-02-11 19:07 derick Status feedback => resolved
2016-02-11 19:07 derick Resolution open => suspended
2016-07-31 12:36 derick Category Usage problems => Usage problems (Crashes)
2016-07-31 12:38 derick Category Usage problems (Crashes) => Usage problems (Wrong Results)
2016-08-01 20:29 derick Target Version 2.4.1 => 2.4.2
2016-08-01 20:30 derick Target Version 2.4.2 =>
2016-11-16 18:37 derick Relationship added has duplicate 0001337
2020-03-12 16:35 derick Category Usage problems (Wrong Results) => Variable Display
2020-03-12 16:38 derick Category Variable Display => Uncategorized