Last active
June 2, 2021 09:31
-
-
Save yamasimka83/d490a79d0f38a5c90845a195840f9290 to your computer and use it in GitHub Desktop.
Install xDebug 2.9.8
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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