我无法使用xdebug配置Lando

时间:2019-11-27 22:27:17

标签: xdebug lando

我正在尝试使用Lando Drupal网站设置Xdebug。我尝试了许多不同的lando配置,但是无论如何我都无法让xdebug出现在我的phpinfo中。我当前的配置是:

name: content-engine-1
recipe: pantheon
config:
  framework: drupal8
  site: content-engine-1
  id: bdfe297a-e96b-401d-b932-158854085e0e
  xdebug: true
  php: .lando.php.ini
services:
  appserver:
    xdebug: true
    overrides:
      environment:
        PHP_IDE_CONFIG: "serverName=appserver"

这是.lando.php.ini文件

xdebug.remote_enable=true
xdebug.remote_host="127.0.0.1"
xdebug.remote_handler=dbgp
xdebug.remote_port=9000
xdebug.remote_log="/var/tmp/xdebug.log"
xdebug.remote_autostart=true

这是phpinfo()的输出: phpinfo output

1 个答案:

答案 0 :(得分:0)