phpstormにてxdebugによるリモートデバッグを行いたいのですが、
ブレークポイントを貼ってもデバッグがが止まってくれない状態です。
通常のphpの実行は出来ています。
ご存じの方、どなたか教えてただけないでしょうか?
よろしくお願いいたします。
php.iniにてログ出力の設定を行い
phpstormにてデバッグをしたところ、以下のログが出ました。
Log opened at 2017-11-24 11:28:48
I: Connecting to configured address/port: 192.168.33.1:9001.
E: Time-out connecting to client. :-(
Log closed at 2017-11-24 11:28:48
設定ファイルでは以下の箇所を変更をしました。
○/etc/php.ini
[xdebug] zend_extension="/usr/lib64/php/modules/xdebug.so" xdebug.default_enable = on xdebug.idekey = "phpstorm" xdebug.remote_enable = on xdebug.remote_autostart = on xdebug.remote_port=9001 xdebug.remote_host=192.168.33.1 xdebug.remote_log=/var/log/xdebug_remote.log
○/vagrant/Vagrant
config.vm.synced_folder "./src", "/vagrant/src"
○/etc/httpd/conf/httpd.conf
<Directory "/vagrant/src">
仮想マシンのアドレスは192.168.33.79です。
回答1件
あなたの回答
tips
プレビュー