-
-
Save phpleo/755531 to your computer and use it in GitHub Desktop.
Instalando xdebug en ubuntu via aptitude para PHP5
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
| // instalación | |
| $ sudo aptitude search php5-xdebug |
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
| // configurando | |
| $ sudo gedit /etc/php5/apache2/conf.d/xdebug.ini |
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
| // al final del editor de texto se agrega: | |
| xdebug.remote_enable=1 | |
| xdebug.remote_handler=dbgp | |
| xdebug.remote_mode=req | |
| xdebug.remote_host=127.0.0.1 | |
| xdebug.remote_port=9000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment