ElementaryOS(Ubuntu 16.04.2)とphp7、およびApache2でxdebugを実行する際に問題が発生しました。
Sudo apt-get install php-xdebug
でインストールしました。インストールでエラーは報告されませんでした。私は追加しました
xdebug.remote_enable=1
xdebug.remote_Host=127.0.0.1
xdebug.remote_connect_back=1 ; Not safe for production servers
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_autostart=true
/etc/php/7.0/Apache2/php.ini
へ。
zend_extension="/path/to/xdebug.so"
のようなxdebug.soファイルの場所も追加する必要があります。しかし、インストール後にxdebug.soを見つけることができませんでした。
Xdebug.soがどこにあるか、php7.0がリリースされてから手順が変更されていることを誰かが知っていますか?ほとんどの説明/ヘルプは、オンラインのphp5のようです。
ありがとう。
XDebugがインストールされていることを確認します。
php -m
locate xdebug.so
を実行します
私には/usr/lib/php/20151012/xdebug.so
が返されますが、20151012
は将来変更される可能性があります。
locate
が何も返さない場合や、locateをインストールした直後の場合は、Sudo updatedb
を実行する必要があります
新しいバージョンの場合は、xdebugファイル名を追加するだけです。例:
zend_extension=xdebug.so
xdebug.default_enable = 1
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_port=9000
...
動作しない場合は、次のようなLinuxのfindコマンドを使用します。
find / -name "xdebug.so"
このコマンドは何をしますか?
Phpinfo()でファイルを作成します。アイテムextension_dirを見つけます。そこにxdebug.soがどこにあるかがわかります。鉱山は:
/usr/local/lib/php/extensions/no-debug-non-zts-20170718