Skip to content

Instantly share code, notes, and snippets.

@asanikovich
Forked from hollodotme/Install-php7.md
Last active May 24, 2018 14:45
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save asanikovich/32e317674524ad4eff2b8141b2b1e64b to your computer and use it in GitHub Desktop.
Save asanikovich/32e317674524ad4eff2b8141b2b1e64b to your computer and use it in GitHub Desktop.
Installing xdebug for php7.1 on Ubuntu 14.04

Install xdebug extension

# Download stable release of xdebug from https://xdebug.org/download.php
wget -c "https://xdebug.org/files/xdebug-2.5.3.tgz"
# Extract archive
tar -xf xdebug-2.5.3.tgz

cd xdebug-2.5.3/

# build extension
phpize
./configure
make && make install

Enable the extension:

echo "zend_extension=xdebug.so" > /etc/php/7.1/mods-available/xdebug.ini

ln -sf /etc/php/7.1/mods-available/xdebug.ini /etc/php/7.1/fpm/conf.d/20-xdebug.ini
ln -sf /etc/php/7.1/mods-available/xdebug.ini /etc/php/7.1/cli/conf.d/20-xdebug.ini

service php7.1-fpm restart

# Check it
php -m | grep -i xdebug

# should print:
xdebug
Xdebug
Copy link

ghost commented Nov 26, 2017

move where ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment