Linux安装xdebug.(Debian,Ubuntu)
1: 首先还是下载
猛击这里下载xdebug-2.1.2.tgz
我下载到downloads目录. 在/home/yourName/Downloads/这里.
2:解压编译
cd 进去Downloads目录后 依次运行下面的命令
- cd xdebug-2.1.2
- phpize
- sudo apt-get install php5-dev
这个过程有几分钟.主要是网速慢 - -)
- ./configure
- make
- make install
会有这个界面
- See any operating system documentation about shared libraries for
- more information, such as the ld(1) and ld.so(8) manual pages.
- ----------------------------------------------------------------------
- Installing shared extensions: /usr/lib/php5/20090626+lfs/
- +----------------------------------------------------------------------+
- | |
- | INSTALLATION INSTRUCTIONS |
- | ========================= |
- | |
- | See http://xdebug.org/install.php#configure-php for instructions |
- | on how to enable Xdebug for PHP. |
- | |
- | Documentation is available online as well: |
- | - A list of all settings: http://xdebug.org/docs-settings.php |
- | - A list of all functions: http://xdebug.org/docs-functions.php |
- | - Profiling instructions: http://xdebug.org/docs-profiling2.php |
- | - Remote debugging: http://xdebug.org/docs-debugger.php |
- | |
- | |
- | NOTE: Please disregard the message |
- | You should add "extension=xdebug.so" to php.ini |
- | that is emitted by the PECL installer. This does not work for |
- | Xdebug. |
- | |
- +----------------------------------------------------------------------+
如果make install出现失败,检查是否有权限.切换到root权限再执行
终端
- gvim /etc/php5/apache5/php.ini
- zend_extension = /usr/lib/php5/20090626+lfs/xdebug.so
如果不能修改php.ini,切换下账户用root来修改.
重启apache
- sudo /etc/init.d/apache2 restart
4:查看phpinfo
在最开头有zend那里出现安装成功
在最开头有zend那里出现
- This program makes use of the Zend Scripting Language Engine:
- Zend Engine v2.3.0, Copyright (c) 1998-2010 Zend Technologies
- with Xdebug v2.1.2, Copyright (c) 2002-2011, by Derick Rethans
相关推荐
lemonzhangyan 2020-09-17
codeDig 2020-09-15
chenhaimeimeng 2020-09-15
icysonyk 2020-09-15
RemixGdc 2020-08-15
nicelife 2020-06-27
zhaowj00 2020-06-06
缘起宇轩阁 2020-04-22
xiaocainiao0 2020-04-22
nicelife 2020-03-26
poplpsure 2020-02-10
nicelife 2019-12-25
amberom 2019-12-05
ipromiser 2019-11-19
MXstudying 2019-11-17
spinachcqb 2019-11-04
ROES 2011-05-05
很青的青蛙 2010-10-07
lff 2008-11-05