[Python] Wingware IDE 的 settings在哪裡?
在 ~/.wingide4 或 ~/wingide5裡
或存在Wingware IDE 的功能表 Help > About 裡面的 Settings Directory
在 ~/.wingide4 或 ~/wingide5裡
或存在Wingware IDE 的功能表 Help > About 裡面的 Settings Directory
$ sudo apt-get install php5-imap
$ sudo php5enmod imap
$ sudo service apache2 restart
Tools > Options > Php > Debugging
取消勾選 Stop at First Line
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