Xdebug installation avec php 5.6 et Ubuntu
Tout d’abord il faut installer le package xdebug pour php5.6
sudo apt-get install php-xdebug
Ensuit il faut activer celui-ci pour être accessible avec PhpStorm par exemple
Editer le fichier
sudo nano /etc/php/5.6/mods-available/xdebug.ini
et ajouter les lignes suivantes
xdebug.remote_enable = on xdebug.remote_connect_back = on xdebug.idekey = "vagrant"
Publicités
Le service php a besoin d’être redemarrer
sudo service php5.6-fpm restart
Pour controller si tout va bien
php -v PHP 5.6.31-1~ubuntu14.04.1+deb.sury.org+1 (cli) Copyright (c) 1997-2016 The PHP Group Zend Engine v2.6.0, Copyright (c) 1998-2016 Zend Technologies with Zend OPcache v7.0.6-dev, Copyright (c) 1999-2016, by Zend Technologies with Xdebug v2.5.5, Copyright (c) 2002-2017, by Derick Rethans
Publicités