Skip to content

Instantly share code, notes, and snippets.

@yamasimka83
Last active June 2, 2021 09:31
Show Gist options
  • Select an option

  • Save yamasimka83/d490a79d0f38a5c90845a195840f9290 to your computer and use it in GitHub Desktop.

Select an option

Save yamasimka83/d490a79d0f38a5c90845a195840f9290 to your computer and use it in GitHub Desktop.
Install xDebug 2.9.8
git clone git://github.com/xdebug/xdebug.git
git checkout xdebug_2_9
phpize
./configure --enable-xdebug
sudo make install
sudo service apache2 restart
sudo phpenmod xdebug
_____________________________________________________________________________________________________________________________
zend_extension=xdebug.so
xdebug.idekey ="PHPSTORM"
xdebug.remote_enable=1
xdebug.remote_host="127.0.0.1"
xdebug.remote_port=9001
xdebug.remote_autostart=1
xdebug.remote_handler="dbgp"
xdebug.remote_mode="req"
xdebug.remote_connect_back=0
xdebug.max_nesting_level = 1000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment