PhpStorm 10.0.2 破解 地址:http://jingyan.baidu.com/article/20095761cbef40cb0721b417.html (亲测有效)
PhpStorm 9 注册码 key license 地址:http://www.phpjiayuan.com/87/446.htmlphp
远程调试的意思是客户端网页浏览服务器地址源码,在客户端能够直接调试服务器端代码运行状况。
1. 在服务器端安装 XDebug ,而且配置路径。
2. 在客户端安装 phpstorm 配置调试路径html
一, 安装 XDebug
1. 下载xdebug。访问http://xdebug.org/download.php,下载对应的xdebug源代码。
2. tar -xvf xdebug-2.3.2.tgz
3. cd xdebug
4. 运行php目录/bin/phpize
5. 配置./configure –enable-xdebug –with-php-config=/php的bin路径/php-config
6. make
7. make installlaravel
二, 配置 XDebug
在php.ini文件中增长以下配置:web
[xdebug] xdebug.idekey=PHPSTORM xdebug.remote_connect_back = 1 //若是开启此,将忽略下面的 xdebug.remote_host 的参数 xdebug.remote_host=10.129.157.29 //注意这里是,客户端的ip<即IDE的机器的ip,不是你的web server> xdebug.remote_enable=on xdebug.remote_port = 9000 //注意这里是,客户端的端口<即IDE的机器的ip,不是你的web server>