Google Code Prettify

顯示具有 web 標籤的文章。 顯示所有文章
顯示具有 web 標籤的文章。 顯示所有文章

星期二, 11月 01, 2011

Remove babylon, Searchqu toolbar (IE, Firefox) 救回被綁架首頁

恐怖的Babylon Toolbar.. 有次不小心安裝網路軟體之後,這個Babylon週邊的相關套件...
開始綁架IE與firefox...還有chrome.... :`(
明顯特徵就是Babylon,還有其他(Searchqu)會綁架新開啟頁 ...
Babylon的惡行還不僅是這樣....,Firefox的搜尋引擎或跳到http://int.search-results.com/也同時被坑殺...
意思是: 若使用新版的firefox於網址列...輸入: 關鍵字 ... 第一個找的就是Babylon.. (囧

for IE 解法:

星期四, 5月 05, 2011

XAMPP + PHP 安全 環境設置

目的:
  • 想要改變XAMPP之localhost登錄的port
  • 設定XAMPP加入安全防護密碼
  • 保持設計PHP網頁的獨立性,避免XAMPP升級時,可能影響到原先PHP網頁的檔案
 做法:
1. 關於XAMPP加入安全防護密碼,請參考 http://www.ps3w.net/pages/?/document/xampp/quide-xamppsecurity.html

2. 點擊 http://localhost/security/xamppsecurity.php 設定完XAMMP root密碼與目錄保護後,請先關掉XAMPP Control Panel再做變更的設置,需更改些xampp內些檔案設定:
  • 更改phpMyAdmin的設定,位於\...\xampp\phpMyAdmin\config.inc.php,打開這個"config.inc.php"檔,
    • 將原本 $cfg['Servers'][$i]['auth_type']     = 'cookie'; -> 更改:$cfg['Servers'][$i]['auth_type']     = 'http';  //HTTP MySQL authentification
  • 將httpd.conf預設port:80改成:8080,位於\...\xampp\apache\conf\httpd.conf,打開這個"httpd.conf"檔
    • 原本 Listen 80 -> 更改:Listen 8080
    • 原本 ServerName localhost:80 -> 更改:ServerName localhost:8080
  • 保持網頁設計的獨立性,將apache的httpd.conf設置Alias指向目標folder,位於\...\xampp\apache\conf\httpd.conf,打開這個"httpd.conf"檔,在文件的最後,添加Alias /myphp "D:\tools\workspace\myphp"
    <Directory "D:\SVN\tools\eclipse-php-helios-win32\workspace\myPHP">
      AllowOverride None
      Options None
      Order allow,deny
      Allow from all
    </Directory>
參考資料:
http://www.apachefriends.org/zh_tw/xampp-windows.html
http://www.iteye.com/topic/607956

星期三, 2月 16, 2011

Apache wookie能同時運作google gadgets和W3C widget的下載安裝法

Apache Wookie是個Apache軟體基金會(Apache Software Foundation, ASF)孕運的project,同時提供Google Wave gadgets 和W3C widget packages的服務器(wookie 0.9版接近100%通過W3C Widgets conformance tests),Apache Wookie為server應用 - 為可下載和安裝Web應用或run單機版(stand-alone)的server。

管理者可上傳符合W3Cwidget封裝規格的Widget包,且使用REST API。典型的應用方法就是plugin此實作的REST API,且能讓用戶從畫廊(gallery)選擇可尋找到的idget加入用戶網頁中。

取得Apache Wookie source可查看W3C widget source code簡單範本,下載和運行Apache Wookie需要先安裝SVN,安裝可參考Wookie downloading and installing網頁或依照底下的指令