推薦好書-流量的秘密

這本書就是介紹 Google Analytics 服務操作使用的一本好書, 除了教學操作使用外, 更清楚地介紹有關在 Google Analytics 內的各種參數的背後意義.

雖然用 Google Analytics 這麼久了, 不過還是有很多好用的功能沒有用到, 這本書充份揭露及介紹這套免費又好用的流量分析工具, 有在使用 Google Analytics 的用戶, 一定得看看的一本好書.

另外關於網站經營及行銷人員, 也務必了解這本書內寫的許多概念及網站流量的意義, 之所以書名叫做”流量的秘密”就是希望大家在看統計數字之外, 還能學習及了解這些數字的意義, 並進一步優化及整理網站內容並如何”善待”來訪的訪客.

可以看看博客來的介紹:

流量的秘密

更新php到5.2.6

為能配合這次的 wordpress 3.2 的升級, 把用很久的 php4.4.4 更新上來到 php5.2.6

wordpress 3.2  php 的最低需求是 5.2.4, 所以先升到這個版本, 花了一些時間整理掉許多不用的站台及資料庫, 並一併升級 mysql 版本. 一樣是使用 appserv 在 windows 上的環境執行, 並安裝的 eAccelerator, 用來加速 php 的執行效率.

如何讓IIS只佔用指定IP

在 IIS 中的站台設定, 可以明確地指定單一站台的 IP及 PORT, 不過無論如何設定, 預設 IIS 就會在發起 SERVICE 時, 佔用 0.0.0.0 這個 IP (也就是全部的 IP), 若是希望 IIS 不要佔用這個 IP (也就是希望能和其他佔用 80 PORT 的 SERVICE, 如 APACHE 共同使用同一台主機的狀況下), 可以利用 Support Tools 內的 httpcfg 工具來進行操作, 詳細步驟如下:

1. Click Start, and then click Run.
2. Type cmd, and then click OK to open a command prompt.
3. Type the following, where xxx.xxx.x.x is the IP address you want to add:

httpcfg set iplisten -i xxx.xxx.x.x
When this succeeds, Httpcfg returns the following:
HttpSetServiceConfiguration completed with 0To view additional status codes, see the Httpcfg help.

4. After the IP address is added, use the following command to list it:

httpcfg query iplisten
Httpcfg returns the following:
IP :xxx.xxx.x.x

5. From the command prompt, stop the HTTP service and its dependent services. To do this, type the following string at the command prompt:

net stop http /y

6. From the command prompt, restart the HTTP service and it dependent services. To do this, type the following string at the command prompt:

net start w3svc
Note When you start w3svc, all services that were stopped when HTTP was stopped will start.

進行指定 IP 的操作後, 之後 IIS 就只會佔用指定的 IP, 而不會佔用全部的預設 IP 0.0.0.0 囉! 請參考微軟 KB 資料: http://support.microsoft.com/kb/813368