Skip to content

Instantly share code, notes, and snippets.

@phpleo
Created December 26, 2010 17:45
Show Gist options
  • Select an option

  • Save phpleo/755531 to your computer and use it in GitHub Desktop.

Select an option

Save phpleo/755531 to your computer and use it in GitHub Desktop.
Instalando xdebug en ubuntu via aptitude para PHP5
// instalación
$ sudo aptitude search php5-xdebug
// configurando
$ sudo gedit /etc/php5/apache2/conf.d/xdebug.ini
// 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