LAMP配置

###LAMP配置###

####ubuntu####

   需要安装的文件以及要配置的插件
   mysql php apapche2 phpmyadmin php5-curl php5-xdebug

XDebug配置:
安装CHROMIUM游览器插件,登录谷歌会自动安装。Xdebug helper

配置文件:
/etc/php5/apache2/conf.d/20-xdebug.conf
xdebug.remote_host = 127.0.0.1
xdebug.remote_enable = 1
xdebug.remote_port = 9000
xdebug.remote_handler = dbgp
xdebug.remote_mode = req

其他的自己摸索下
DBBUG PORT 默认 9000

你可能感兴趣的:(LAMP配置)