Advertisement
IchHabRecht

[BASH] Install xdebug on centos

Jan 31st, 2014
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.28 KB | None | 0 0
  1. wget "http://xdebug.org/files/xdebug-2.2.3.tgz"
  2. tar -xvzf xdebug-2.2.3.tgz
  3. cd xdebug-2.2.3
  4. phpize
  5. yum -l
  6. yum search php5-dev
  7. yum search php|grep dev
  8. yum install php-devel
  9. yum search phpize
  10. phpize
  11. ./configure
  12. make
  13. cp modules/xdebug.so /usr/lib64/php/modules
  14. vim /etc/php.ini
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement