Last active
August 29, 2015 13:56
-
-
Save nukesaq88/9223379 to your computer and use it in GitHub Desktop.
php and xdebug install memo on CentOS6
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
| # install | |
| sudo yum -y -v install php php-common php-cli php-pdo php-mbstring php-mcrypt php-mysql php-fpm | |
| # install xdebug | |
| #sudo yum -y -v install php-devel php-pear gcc gcc-c++ autoconf automake | |
| #sudo pecl install Xdebug | |
| #add below to /etc/php.d/xdebug.ini | |
| #zend_extension=/usr/lib64/php/modules/xdebug.so | |
| #xdebug.default_enable=1 | |
| #xdebug.remote_enable=1 | |
| #xdebug.remote_port=9001 | |
| #xdebug.remote_handler=dbgp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment