Archive for the '人工自動' Category

八月 06 2010

在Linux安裝 php + mcrypt

by 分類: Linux,PHP

分享到Facebook

分享到Facebook 首先先到mcrypt網站下載為新版本 http://sourceforge.net/projects/mcrypt/files/Libmcrypt/ 下載完解壓縮 tar zxvf libmcrypt-2.5.8.tar.gz cd libmcrypt-2.5.8 先安裝 ltdl cd libltdl ./configure –enable-ltdl-install make;make install 再安裝libmcrypt套件 cd .. ./configure –disable-posix-threads make;make install 然後再去編譯php ./configure –with-mcrypt=/usr/local

目前沒有回應

七月 09 2010

jQuery 教學說明

by 分類: jQuery

分享到Facebook

分享到Facebook jQuery 1.6 下載位置 正常版本:http://code.jquery.com/jquery-1.6.js 壓縮版本:http://code.jquery.com/jquery-1.6.min.js   同時 Google 跟 Microsoft 都有提供了 CDN 服務: Google:https://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js Microsoft:http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.min.js

目前沒有回應

五月 03 2010

PHP Easter Egg

by 分類: PHP

分享到Facebook

分享到Facebook 如何關閉 PHP 彩蛋 在安裝php時預設只要在php檔案後面加上 ?=PHPE9568F36-D428-11d2-A769-00AA001ACF42(圖片) ?=PHPB8B5F2A0-3C92-11d3-A3A9-4C7B08C10000(說明) 修改php.ini 將下述 expose_php 由 On 改成 Off 即可

目前沒有回應

四月 21 2010

Linux 安裝 nginx + php + php-fpm

by 分類: 人工自動

分享到Facebook

分享到Facebook 因PHP 5.2.X並無php-fpm所以要另外做path 1.做PHP patch和重新編譯 先從PHP官網下載最新版的PHP5.2.x原始碼檔案, 還有對應5.2.x版本的PHP-FPM diff檔並做Patch, 這裡以php-5.2.17做範例 wget http://tw2.php.net/distributions/php-5.2.17.tar.gz wget http://php-fpm.org/downloads/php-5.2.17-fpm-0.5.14.diff.gz tar -zxvf php-5.2.17.tar.gz gzip -cd php-5.2.17-fpm-0.5.14.diff.gz | patch -d php-5.2.17 -p1

目前沒有回應

三月 16 2010

asp.net繁簡轉換

by 分類: ASP.net

分享到Facebook

分享到Facebook 此語法可以簡化asp.net的繁簡轉換 共用函式 "‘ "‘ 將繁體中文字轉換成簡體中文。 Function Big5ToGb(ByVal Text As String) As String ‘ 將繁體中文字轉換成簡體中文,LocaleID 設為 2052 Return StrConv(Text, VbStrConv.SimplifiedChinese, 2052) End Function 頁面輸出 Imports System.IO Partial Class index Inherits System.Web.UI.Page   "‘ "‘ 覆寫 Render 方法做繁轉簡的動作。 "‘ Protected Overrides Sub Render(ByVal writer As System.Web.UI.HtmlTextWriter) Dim sText As String Dim oStringWriter As New StringWriter() Dim [...]

目前沒有回應