<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>依蘭翠絲機巧亭</title>
    <link rel="alternate" type="text/html" href="http://www.caiyutw.com/blog/" />
    <link rel="self" type="application/atom+xml" href="http://www.caiyutw.com/blog/atom.xml" />
    <id>tag:www.caiyutw.com,2007-10-17:/blog//1</id>
    <updated>2007-11-02T15:55:25Z</updated>
    <subtitle>一個編程員的筆記</subtitle>
    <generator uri="http://www.sixapart.com/movabletype/">Movable Type Publishing Platform 4.01</generator>

<entry>
    <title>HiNet 的 Transparency Proxy 和 phpBB 的關係</title>
    <link rel="alternate" type="text/html" href="http://blog.caiyutw.com/2007/11/hinet-transparency-proxy-phpbb.html" />
    <id>tag:www.caiyutw.com,2007:/blog//1.3</id>

    <published>2007-11-02T15:49:12Z</published>
    <updated>2007-11-02T15:55:25Z</updated>

    <summary>前幾天安裝 phpBB 之後，登入系統管理控制台的時候總是很快就被踢出來，無論是用 IE 7 還是 Firefox 2 都一樣。到竹貓星球去查閱，聽到有很多人說這是 HiNet 亂用 Transparency Proxy 造成的。試著向 HiNet 申請固定 IP ，結果沒用。在瀏覽器裡指定使用 HiNet 的 proxy ： proxy.hinet.net:80 ，竟然就解決問題了。結果還是搞不清楚到底怎麼回事……...</summary>
    <author>
        <name>采豫</name>
        
    </author>
    
    <category term="hinet" label="HiNet" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="phpbb" label="phpBB" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en-US" xml:base="http://www.caiyutw.com/blog/">
        <![CDATA[前幾天安裝 phpBB 之後，登入系統管理控制台的時候總是很快就被踢出來，無論是用 IE 7 還是 Firefox 2 都一樣。到<a href="http://phpbb-tw.net/phpbb/index.php">竹貓星球</a>去查閱，聽到有很多人說這是 HiNet 亂用 Transparency Proxy 造成的。<br /><br /><ol><li>試著向 HiNet 申請固定 IP ，結果沒用。</li><li>在瀏覽器裡指定使用 HiNet 的 proxy ： proxy.hinet.net:80 ，竟然就解決問題了。</li></ol><br />結果還是搞不清楚到底怎麼回事……<br /><br />]]>
        
    </content>
</entry>

<entry>
    <title>在 Windows 上安裝供 localhost 使用的 Apache</title>
    <link rel="alternate" type="text/html" href="http://blog.caiyutw.com/2007/10/-windows-localhost-apache.html" />
    <id>tag:www.caiyutw.com,2007:/blog//1.2</id>

    <published>2007-10-30T13:28:15Z</published>
    <updated>2007-10-30T14:39:58Z</updated>

    <summary>這篇文章記述的是：如何在 Windows 上安裝一個僅供 localhost （本機電腦）使用的 Apache 網頁伺服器。相關軟體版本如下：Windows XP SP2 繁體中文版Apache 2.2.6...</summary>
    <author>
        <name>采豫</name>
        
    </author>
    
    <category term="apache" label="Apache" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="localhost" label="localhost" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="windows" label="Windows" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en-US" xml:base="http://www.caiyutw.com/blog/">
        <![CDATA[這篇文章記述的是：如何在 Windows 上安裝一個僅供 localhost （本機電腦）使用的 Apache 網頁伺服器。<br /><br />相關軟體版本如下：<br /><ul><li>Windows XP SP2 繁體中文版</li><li>Apache 2.2.6</li></ul><br />]]>
        <![CDATA[<b><font style="font-size: 1.25em;">安裝</font></b><br /><br />從 <a href="http://httpd.apache.org/">Apache 官方網站</a> 下載 Windows 上的安裝檔。這要到鏡像網站上稍微找一下（比方說：<a href="http://ftp.tcc.edu.tw/pub/Apache/httpd/binaries/win32/">這裡</a>）。<br /><br />我們這次下載的檔案名稱是 apache_2.2.6-win32-x86-no_ssl.msi 。<br /><br />執行安裝程式，會出現一系列的對話盒要你填寫設定值。以下沒特別提醒的部份請選擇預設值、或憑常識判斷。<br /><br /><ul><li>Server Information</li></ul><blockquote>Network Domain 與 Server Name 都填 localhost 即可。Admin 的 email 可以填 admin@localhost 。<br /></blockquote><br /><font style="font-size: 1.25em;"><b>設定準備</b></font><br /><br />安裝目錄預設是 C:\Program Files\Apache Software Foundation\Apache2.2\ 。<br />（基本上這路徑沒必要更改）<br /><br />你必須要指定一個網頁文件根目錄。如果沒更改的話會是安裝目錄下的 htdocs 目錄，可是這樣很不方便，還是另外指定一個的好。<br />我們假設指定的路徑是 D:\WebRoot 。讓我們先在這個目錄裡新增一個名為 index.html 的檔案，內容就寫 Hello World 好了。<br /><br /><font style="font-size: 1.25em;"><b>設定步驟</b></font><br /><br />在安裝目錄下找到 conf\httpd.conf ，這是 Apache 的組態設定檔，請用文字編輯器開啟。<br /><br /><ul><li>尋找 Listen 80 ，將之改為 Listen 127.0.0.1:80 。</li><li>尋找 DocumentRoot ，應該會找到兩個地方。將這兩處找到的 C:/Program Files/Apache Software Foundation/Apache2.2/htdocs 改為 D:/WebRoot 。注意目錄的分隔字元是正斜線 / ，而非 Windows 環境下常見的反斜線 \ 。</li></ul>在 Windows 左下角（時鐘旁邊）找到 Apache Monitor 的圖示。停止 Apache service 之後再次啟動（於是 Apache 會重新載入設定檔）。<br /><br />打開任意瀏覽器，輸入網址 <a href="http://localhost/">http://localhost/</a> ，你應該可以順利看到你的 index.html 頁面。<br /><br />]]>
    </content>
</entry>

<entry>
    <title>I just finished installing Movable Type 4.01!</title>
    <link rel="alternate" type="text/html" href="http://blog.caiyutw.com/2007/10/i-just-finished-installing-mov.html" />
    <id>tag:kikumi.caiyutw.com,2007://1.1</id>

    <published>2007-10-17T13:54:05Z</published>
    <updated>2007-10-17T13:54:05Z</updated>

    <summary>Welcome to my new blog powered by Movable Type. This is the first post on my blog and was created for me automatically when I finished the installation process. But that is ok, because I will soon be creating posts...</summary>
    <author>
        <name>采豫</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-US" xml:base="http://www.caiyutw.com/blog/">
        Welcome to my new blog powered by Movable Type. This is the first post on my blog and was created for me automatically when I finished the installation process. But that is ok, because I will soon be creating posts of my own!
        
    </content>
</entry>

</feed>
