[Ubuntu][PHP][Netbeans] 使NetBeans可以中斷php code
1. 安裝 xdebug
$ sudo apt-get install php5-xdebug
2. 找出 xdebug.so 的位置
$ dpkg-query -L php5-xdebug
3. 在 /etc/php5/apache2/php.ini 中加入以下內容
zend_extension=/<在步驟2找到位置>/xdebug.so
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
4. apache2 要重開
$ sudo service apache2 restart
5. 設定NetBeans的
Project properties > Run Configuration > Run As --> Local Web Site
參考 http://wiki.netbeans.org/HowToConfigureXDebug
沒有留言:
張貼留言