在PhpStorm上无法在断点上成功进行远程服务器配置中的调试

时间:2019-10-01 13:47:24

标签: php debugging phpstorm magento2

方案:我们在本地计算机中有代码,并且可以远程处理远程服务器(虚拟机)上的代码和数据库。

现在我们要调试代码。

我们已经配置了远程调试:

PHP.ini代码

[xdebug]
zend_extension="/usr/lib64/php/modules/xdebug.so"
xdebug.remote_enable=1
xdebug.remote_host=192.168.0.185 //My Local IP
#export PHP_IDE_CONFIG="192.168.0.120" // Remote IP
xdebug.remote_port=9000
xdebug.remote_log="/tmp/xdebug.log"
xdebug.remote_cookie_expire_time=10000
xdebug.remote_timeout=5000
xdebug.profiler_enable = 1
xdebug.remote_enable=on
xdebug.idekey=phpstorm-xdebug
#xdebug.remote_connect_back =On

所有操作均正常进行,直到过程结束。我们从此Link

中引用了配置

主要问题是当我们调试实例时,它无法正常工作,并且不能在断点上停止

0 个答案:

没有答案