Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
xdebugをインストールしましたが、phpinfo()でインストールされていることがわかります(ただし、オフになっています)。
ただし、サーバー/ Apache2全体で有効にするのではなく、1つの仮想ホストで有効にするだけです。
これどうやってするの?
次の値で xdebug を設定できphp.iniます。off
php.ini
off
zend_extension=/usr/lib/php/modules/xdebug.so xdebug.remote_enable off xdebug.remote_port 9000 xdebug.idekey PHP-XDEBUG
.htaccessディレクティブでのみオンにします:
.htaccess
php_flag xdebug.remote_enable on