Skip to content

Instantly share code, notes, and snippets.

@aoopvn
Forked from croxton/gist:4073583
Created November 9, 2016 03:55
Show Gist options
  • Save aoopvn/ab5c7058229b1b71e2814100660395f5 to your computer and use it in GitHub Desktop.
Save aoopvn/ab5c7058229b1b71e2814100660395f5 to your computer and use it in GitHub Desktop.
Install xdebug 2.2.0 for AMPPS on OSX
Grab the 'PHP Remote Debugging Client' (the pre-complied xdebug binary for OSX) from here:
http://code.activestate.com/komodo/remotedebugging/
Unzip it, find the folder that corresponds to the version of PHP you want to install it for and copy the xdebug.so file from there into your php extensions folder in the relevant PHP version directory. E.g. for PHP 5.4:
/Applications/AMPSS/php-5.4/lib/extensions/ext/
Now open PHP.ini in a text editor:
/Applications/AMPSS/php-5.4/etc/php.ini
And add this line towards the bottom of the file, just above the dynamic extensions section:
zend_extension = /Applications/AMPPS/php-5.4/lib/extensions/ext/xdebug.so
Restart Apache, and you're done.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment