2016年4月19日 星期二

[Python] Wingware IDE 的 settings在哪裡?

在 ~/.wingide4 或 ~/wingide5裡

或存在Wingware IDE 的功能表 Help > About 裡面的 Settings Directory

2016年4月18日 星期一

[PHP][Ubuntu] 安裝php5-imap

$ sudo apt-get install php5-imap

$ sudo php5enmod imap

$ sudo service apache2 restart

[Ubuntu][PHP][NetBeans] NetBeans Debug PHP 時不要中斷在第一行

Tools > Options > Php > Debugging
取消勾選 Stop at First Line

[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