Pages

2011/10/20

【jQuery】Uploadify發生HTTP ERROR的解法


I got a different http error: HTTP undefined or HTTP 500. After 4 hours of searching the web, I found the answer.
It is because the server uses Mod_Security. To turn it off, add these lines to .htacess file
<Ifmodule mod_php5.c>
SecFilterEngine "off"
SecFilterScanPOST "off"</Ifmodule>

2011/06/22

筆記一下,jQuery UI tabs change from text link


var $tabs = jQuery('#tabs').tabs(); // first tab selected

jQuery('#gotab2').click(function() { // bind click event to link
      $tabs.tabs('select', 1); // switch to third tab
      return false;
});

2011/06/16

筆記一下,簡單的jQuery換圖


$("img").bind("click", function() {
    var src = ($(this).attr("src") === "img1_on.jpg")
                    ? "img2_on.jpg" 
                    : "img1_on.jpg";
    $(this).attr("src", src);
});

2011/05/26

CSS語法中組合符號的用法

E F {description here}
代表著 F 元素被 E 元素包住,不管直接或間接,都套用此規則

ex.
div p {color: red;}

<div>
    <p>123</p>
</div>
<div>
   <span><p>456</p></span>
</div>

這樣123會是紅的,456也是紅的

2011/05/24

Windows Update 80246008錯誤的解法 ( BITS, COM+ Event System )

最近遇到這個問題,也花了一些時間在解,記錄一下過程。

【症狀】

Windows Update無法更新,報錯代碼 80246008

【解法】

google一下發現可能的原因就是BITS(Background Intelligent Transfer Service)服務沒有起來

而這個服務有相依性依存在 COM+ Event SystemRemote Procedure Call 這兩個服務上面

檢查了一下發現我的COM+ Event System竟然消失了!難怪BITS怎麼樣也起不來。