2016-06-30 5 views
0

Wordpressマルチサイトで作業するためにタイトルからセットアップを使用します。私はローカルサーバー上でWebサイトを実行し、Apache、PHP、およびMySQLは別々にインストールされます。私はWebサイトにアクセスするためにURLを使用するように設定されています(hostsファイルとphp設定のいくつかの変更)。私はxamppと別の仮想マシンで同様の設定をしており、うまく動作します。 私のプロジェクトはindex.phpファイルから開始するように設定されているので、デバッグセッションを開始すると、このファイル内のブレークポイントに達するのはで、一度だけになります。ページをリロードすると、ブレークポイントは無視されます。プロジェクトプロパティ - >実行コンフィギュレーションでインデックスファイルとして別のページを割り当てると同じことが起こります。ブレークポイントは起動時に1回のみヒットします。私は、xdebug.logのブレークポイントへのパスがファイルへの実際のパスとまったく同じであることを確認しました。また、xdebug_break()を呼び出そうとしましたが、動作しませんでした。 Webサイトフォルダのアクセス権は、全員が読み書きできるように設定されています。centos 6.8 Xdebug 2.4.0 Netbeans 8.1ブレークポイントは一度だけヒットします

マイXdebugの設定

zend_extension = /usr/lib64/php/modules/xdebug.so 

[xdebug] 
debug] 
; Remote settings 
xdebug.remote_autostart=off 
xdebug.remote_enable=on 
xdebug.remote_handler=dbgp 
xdebug.remote_mode=req 
xdebug.remote_host=localhost 
xdebug.remote_port=9000 

; General 
xdebug.auto_trace=off 
xdebug.collect_includes=on 
xdebug.collect_params=off 
xdebug.collect_return=off 
xdebug.default_enable=on 
xdebug.extended_info=1 
xdebug.manual_url=http://www.php.net 
xdebug.show_local_vars=0 
xdebug.show_mem_delta=0 
xdebug.max_nesting_level=100 
xdebug.remote_log="/tmp/xdebug.log" 
;xdebug.idekey= 

; Trace options 
xdebug.trace_format=0 
xdebug.trace_output_dir=/tmp 
xdebug.trace_options=0 
xdebug.trace_output_name=crc32 

; Profiling 
xdebug.profiler_append=0 
xdebug.profiler_enable=0 
xdebug.profiler_enable_trigger=0 
xdebug.profiler_output_dir=/tmp 
xdebug.profiler_output_name=crc32 

Xdebugを私は問題を引き起こしたのか分からないが、私はニキータ・ニキティンによって最も簡単XdebugのアドオンをFirefox用インストールすることで、それを解決し

Log opened at 2016-06-30 20:30:29 
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:///var/www/html/deceptivecon.com/public_html/index.php" language="PHP" xdebug:language_version="5.4.45" protocol_version="1.0" appid="2796" idekey="netbeans-xdebug"><engine version="2.4.0"><![CDATA[Xdebug]]></engine><author><![CDATA[Derick Rethans]]></author><url><![CDATA[http://xdebug.org]]></url><copyright><![CDATA[Copyright (c) 2002-2016 by Derick Rethans]]></copyright></init> 

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

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

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

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

<- breakpoint_set -i 52 -t line -s enabled -f file:///var/www/html/deceptivecon.com/public_html/wp-content/plugins/myplugin/myplugin.php -n 409 
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="breakpoint_set" transaction_id="52" state="enabled" id="27960008"></response> 

<- breakpoint_set -i 53 -t line -s enabled -f file:///var/www/html/deceptivecon.com/public_html/wp-content/plugins/myplugin/myplugin.php -n 25 
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="breakpoint_set" transaction_id="53" state="enabled" id="27960009"></response> 

<- breakpoint_set -i 54 -t line -s enabled -f file:///var/www/html/deceptivecon.com/public_html/index.php -n 14 
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="breakpoint_set" transaction_id="54" state="enabled" id="27960010"></response> 

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

<- run -i 56 
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="run" transaction_id="56" status="break" reason="ok"><xdebug:message filename="file:///var/www/html/deceptivecon.com/public_html/index.php" lineno="14"></xdebug:message></response> 

<- stack_get -i 57 
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="stack_get" transaction_id="57"><stack where="{main}" level="0" type="file" filename="file:///var/www/html/deceptivecon.com/public_html/index.php" lineno="14"></stack></response> 

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

<- context_get -i 59 -c 0 
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="59" context="0"><property name="$asd" fullname="$asd" type="uninitialized"></property></response> 

<- context_get -i 60 -c 1 
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="60" context="1"><property name="$_COOKIE" fullname="$_COOKIE" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="wordpress_logged_in_8dc908eddc83e45e30112f8c82b2a980" fullname="$_COOKIE[&#39;wordpress_logged_in_8dc908eddc83e45e30112f8c82b2a980&#39;]" type="string" size="131" encoding="base64"><![CDATA[V2VibWFzdGVyR1B8MTQ2ODM0NDk3Mnx1NU5FUUxYeXp0WFFkVzF4ZnJUY1E4OERGbDZrYXNNMGh3ZHE2Yk5xajBxfDMwZThjNmZkZDIwZjJmMjFkNjlkZTIwYjYxMTAyOWMyNjZjMGZiMDM4MTAwNzlhNGNiZmM0YjI5OTZhOTlhMmU=]]></property></property><property name="$_ENV" fullname="$_ENV" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_FILES" fullname="$_FILES" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_GET" fullname="$_GET" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="XDEBUG_SESSION_START" fullname="$_GET[&#39;XDEBUG_SESSION_START&#39;]" type="string" size="15" encoding="base64"><![CDATA[bmV0YmVhbnMteGRlYnVn]]></property></property><property name="$_POST" fullname="$_POST" type="array" children="0" numchildren="0" page="0" pagesize="30"></property><property name="$_REQUEST" fullname="$_REQUEST" type="array" children="1" numchildren="1" page="0" pagesize="30"><property name="XDEBUG_SESSION_START" fullname="$_REQUEST[&#39;XDEBUG_SESSION_START&#39;]" type="string" size="15" encoding="base64"><![CDATA[bmV0YmVhbnMteGRlYnVn]]></property></property><property name="$_SERVER" fullname="$_SERVER" type="array" children="1" numchildren="27" page="0" pagesize="30"><property name="HTTP_HOST" fullname="$_SERVER[&#39;HTTP_HOST&#39;]" type="string" size="16" encoding="base64"><![CDATA[ZGVjZXB0aXZlY29uLmNvbQ==]]></property><property name="HTTP_USER_AGENT" fullname="$_SERVER[&#39;HTTP_USER_AGENT&#39;]" type="string" size="68" encoding="base64"><![CDATA[TW96aWxsYS81LjAgKFgxMTsgTGludXggeDg2XzY0OyBydjo0NS4wKSBHZWNrby8yMDEwMDEwMSBGaXJlZm94LzQ1LjA=]]></property><property name="HTTP_ACCEPT" fullname="$_SERVER[&#39;HTTP_ACCEPT&#39;]" type="string" size="63" encoding="base64"><![CDATA[dGV4dC9odG1sLGFwcGxpY2F0aW9uL3hodG1sK3htbCxhcHBsaWNhdGlvbi94bWw7cT0wLjksKi8qO3E9MC44]]></property><property name="HTTP_ACCEPT_LANGUAGE" fullname="$_SERVER[&#39;HTTP_ACCEPT_LANGUAGE&#39;]" type="string" size="14" encoding="base64"><![CDATA[ZW4tVVMsZW47cT0wLjU=]]></property><property name="HTTP_ACCEPT_ENCODING" fullname="$_SERVER[&#39;HTTP_ACCEPT_ENCODING&#39;]" type="string" size="13" encoding="base64"><![CDATA[Z3ppcCwgZGVmbGF0ZQ==]]></property><property name="HTTP_COOKIE" fullname="$_SERVER[&#39;HTTP_COOKIE&#39;]" type="string" size="190" encoding="base64"><![CDATA[d29yZHByZXNzX2xvZ2dlZF9pbl84ZGM5MDhlZGRjODNlNDVlMzAxMTJmOGM4MmIyYTk4MD1XZWJtYXN0ZXJHUCU3QzE0NjgzNDQ5NzIlN0N1NU5FUUxYeXp0WFFkVzF4ZnJUY1E4OERGbDZrYXNNMGh3ZHE2Yk5xajBxJTdDMzBlOGM2ZmRkMjBmMmYyMWQ2OWRlMjBiNjExMDI5YzI2NmMwZmIwMzgxMDA3OWE0Y2JmYzRiMjk5NmE5OWEyZQ==]]></property><property name="HTTP_CONNECTION" fullname="$_SERVER[&#39;HTTP_CONNECTION&#39;]" type="string" size="10" encoding="base64"><![CDATA[a2VlcC1hbGl2ZQ==]]></property><property name="PATH" fullname="$_SERVER[&#39;PATH&#39;]" type="string" size="29" encoding="base64"><![CDATA[L3NiaW46L3Vzci9zYmluOi9iaW46L3Vzci9iaW4=]]></property><property name="SERVER_SIGNATURE" fullname="$_SERVER[&#39;SERVER_SIGNATURE&#39;]" type="string" size="77" encoding="base64"><![CDATA[PGFkZHJlc3M+QXBhY2hlLzIuMi4xNSAoQ2VudE9TKSBTZXJ2ZXIgYXQgZGVjZXB0aXZlY29uLmNvbSBQb3J0IDgwPC9hZGRyZXNzPgo=]]></property><property name="SERVER_SOFTWARE" fullname="$_SERVER[&#39;SERVER_SOFTWARE&#39;]" type="string" size="22" encoding="base64"><![CDATA[QXBhY2hlLzIuMi4xNSAoQ2VudE9TKQ==]]></property><property name="SERVER_NAME" fullname="$_SERVER[&#39;SERVER_NAME&#39;]" type="string" size="16" encoding="base64"><![CDATA[ZGVjZXB0aXZlY29uLmNvbQ==]]></property><property name="SERVER_ADDR" fullname="$_SERVER[&#39;SERVER_ADDR&#39;]" type="string" size="9" encoding="base64"><![CDATA[MTI3LjAuMC4x]]></property><property name="SERVER_PORT" fullname="$_SERVER[&#39;SERVER_PORT&#39;]" type="string" size="2" encoding="base64"><![CDATA[ODA=]]></property><property name="REMOTE_ADDR" fullname="$_SERVER[&#39;REMOTE_ADDR&#39;]" type="string" size="9" encoding="base64"><![CDATA[MTI3LjAuMC4x]]></property><property name="DOCUMENT_ROOT" fullname="$_SERVER[&#39;DOCUMENT_ROOT&#39;]" type="string" size="43" encoding="base64"><![CDATA[L3Zhci93d3cvaHRtbC9kZWNlcHRpdmVjb24uY29tL3B1YmxpY19odG1sLw==]]></property><property name="SERVER_ADMIN" fullname="$_SERVER[&#39;SERVER_ADMIN&#39;]" type="string" size="16" encoding="base64"><![CDATA[YWRzQGdwYnJhbmRzLmNvbQ==]]></property><property name="SCRIPT_FILENAME" fullname="$_SERVER[&#39;SCRIPT_FILENAME&#39;]" type="string" size="52" encoding="base64"><![CDATA[L3Zhci93d3cvaHRtbC9kZWNlcHRpdmVjb24uY29tL3B1YmxpY19odG1sL2luZGV4LnBocA==]]></property><property name="REMOTE_PORT" fullname="$_SERVER[&#39;REMOTE_PORT&#39;]" type="string" size="5" encoding="base64"><![CDATA[NDUyOTY=]]></property><property name="GATEWAY_INTERFACE" fullname="$_SERVER[&#39;GATEWAY_INTERFACE&#39;]" type="string" size="7" encoding="base64"><![CDATA[Q0dJLzEuMQ==]]></property><property name="SERVER_PROTOCOL" fullname="$_SERVER[&#39;SERVER_PROTOCOL&#39;]" type="string" size="8" encoding="base64"><![CDATA[SFRUUC8xLjE=]]></property><property name="REQUEST_METHOD" fullname="$_SERVER[&#39;REQUEST_METHOD&#39;]" type="string" size="3" encoding="base64"><![CDATA[R0VU]]></property><property name="QUERY_STRING" fullname="$_SERVER[&#39;QUERY_STRING&#39;]" type="string" size="36" encoding="base64"><![CDATA[WERFQlVHX1NFU1NJT05fU1RBUlQ9bmV0YmVhbnMteGRlYnVn]]></property><property name="REQUEST_URI" fullname="$_SERVER[&#39;REQUEST_URI&#39;]" type="string" size="47" encoding="base64"><![CDATA[L2luZGV4LnBocD9YREVCVUdfU0VTU0lPTl9TVEFSVD1uZXRiZWFucy14ZGVidWc=]]></property><property name="SCRIPT_NAME" fullname="$_SERVER[&#39;SCRIPT_NAME&#39;]" type="string" size="10" encoding="base64"><![CDATA[L2luZGV4LnBocA==]]></property><property name="PHP_SELF" fullname="$_SERVER[&#39;PHP_SELF&#39;]" type="string" size="10" encoding="base64"><![CDATA[L2luZGV4LnBocA==]]></property><property name="REQUEST_TIME_FLOAT" fullname="$_SERVER[&#39;REQUEST_TIME_FLOAT&#39;]" type="float"><![CDATA[1467318629.215]]></property><property name="REQUEST_TIME" fullname="$_SERVER[&#39;REQUEST_TIME&#39;]" type="int"><![CDATA[1467318629]]></property></property></response> 

<- context_get -i 61 -c 2 
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="61" context="2"></response> 

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

Log closed at 2016-06-30 20:30:37 

答えて

0

を記録。今私はすべてのブレークポイントがヒットします。

関連する問題