无法使用PhpStorm,WAMP&amp ;;调试WordPress。虚拟主机

时间:2017-11-10 10:33:04

标签: phpstorm wamp xdebug vhosts

网上有很多可能的设置和演示,但我无法让调试器工作(没有任何反应!)

Windows设置

WAMP安装:

C:\Wamp

项目文件夹:

"E:\Users\Rix\Offline Drive\Web Ghianda\Wordpress"

vhosts.conf:

<VirtualHost *>
    DocumentRoot "E:\Users\Rix\Offline Drive\Web Ghianda\Wordpress"
    ServerName ghiandalocal.com
      <Directory "E:\Users\Rix\Offline Drive\Web Ghianda\Wordpress">
        Order allow,deny
        Allow from all
      </Directory>
  </VirtualHost>

PhpStorm配置设置(也尝试将127.0.0.1更改为ghiandalocal.com):

enter image description here

PHP.ini Xdebug部分

[xdebug]
zend_extension=c:\wamp\bin\php\php7.0.4\ext\php_xdebug-2.5.4-7.0-vc14.dll
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_host=127.0.0.1:81
xdebug.remote_port=9000
xdebug.remote_autostart=1
xdebug.remote_connect_back=0
xdebug.profiler_enable=0
xdebug.profiler_enable_trigger=0
xdebug.profiler_output_name=cachegrind.out.%s.%t
xdebug.profiler_output_dir="C:/wamp/tmp/xdebug"
xdebug.trace_output_dir="C:/wamp/tmp/xdebug"
xdebug.idekey=PHPSTORM

PHPInfo:https://ibb.co/cmA5Lw

1 个答案:

答案 0 :(得分:0)

检查Phpinfo,我意识到PHP正在从另一个文件夹加载php.ini,因此没有加载xdebug设置。 感谢LazyOne启发解决方案的途径