<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Anistar RIA Blog &#187; Apserver</title>
	<atom:link href="http://blog.riaproject.com/tag/apserver-mis/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.riaproject.com</link>
	<description>Rich Internet Application 知識誌</description>
	<lastBuildDate>Wed, 21 Dec 2011 05:43:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>利用Windows的Hosts設定來測試網站</title>
		<link>http://blog.riaproject.com/server-setting/235.html</link>
		<comments>http://blog.riaproject.com/server-setting/235.html#comments</comments>
		<pubDate>Thu, 21 Feb 2008 07:24:06 +0000</pubDate>
		<dc:creator>anistar</dc:creator>
				<category><![CDATA[伺服器架設]]></category>
		<category><![CDATA[Apserver]]></category>
		<category><![CDATA[Windows服務設定]]></category>
		<category><![CDATA[網頁]]></category>

		<guid isPermaLink="false">http://blog.riaproject.com/?p=235</guid>
		<description><![CDATA[因為我接的大多是較為複雜的案子，可能需要同時編寫Server端和Client端的程式，當然功能測試也是非常重要的一環，所以今天我來分享一些測試系統的小技巧。 顧客的網站我大多在我的Lab Server上做測試，為了開發方便所以我所採用的是Windows Server(可以同時開發JSP,ASP.NET,PHP,ColdFusion&#8230;)，每個客戶的的案子當然就放在Web Server的虛擬伺服器上，要測試的時候很多人可能會有點傷腦經。 其實這個不是問題，只要是MIS都會知道Windows裡面有個hosts的檔案，可以讓使用者自己去調整IP的對應方式，例如你可以在瀏覽器中輸入http://localhost，這其實等同你輸入http://127.0.0.1，為什麼會這樣呢？原因就在於在hosts中有描述localhost的domain name其實是要對應到127.0.0.1這個IP的，所以若你想要將某個domain name對應到自己的測試環境，只要去修改這個設定檔就可以了，而不需要去動到整個網路環境。  這個檔案的位置在 C:WINDOWSsystem32driversetchosts ，找到後用Notepad打開就可以直接編輯了，例如下例，我們將 http://blog.riaproject.com 直接指定到 127.0.0.1，只需要這樣做： # Copyright (c) 1993-1999 Microsoft Corp. # # This is a sample HOSTS file used by Microsoft TCP/IP for Windows. # # This file contains the mappings of IP addresses to host names. Each # entry should be kept on an [...]]]></description>
		<wfw:commentRss>http://blog.riaproject.com/server-setting/235.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>更改Windows Server遠端連線(Terminal Service)的port</title>
		<link>http://blog.riaproject.com/server-setting/117.html</link>
		<comments>http://blog.riaproject.com/server-setting/117.html#comments</comments>
		<pubDate>Wed, 11 Jul 2007 16:07:17 +0000</pubDate>
		<dc:creator>anistar</dc:creator>
				<category><![CDATA[伺服器架設]]></category>
		<category><![CDATA[Apserver]]></category>
		<category><![CDATA[Setting]]></category>
		<category><![CDATA[Windows服務設定]]></category>
		<category><![CDATA[常識]]></category>

		<guid isPermaLink="false">http://blog.riaproject.com/?p=117</guid>
		<description><![CDATA[今天剛好建議朋友將架好的Server改遠端連線的連接埠(port)，順便記錄下來供未來找該答案的人參考： 一般Windows Server的「遠端桌面」預設用3389連接埠傳輸，但是如果你想更改的話可以用Regedit來進行修改。 到註冊表中的HKEY_LOCAL_MACHINE -&#62; System -&#62; CurrentControlSet -&#62; Control -&#62; TerminalServer -&#62; WinStations -&#62; RDP-Tcp中將DWORD值PortNumber，由原來的3389改為任何的數值即可，假設改成 1234，那以後要連線的時候，就可以在連線時輸入http://mydomain.com:1234　。]]></description>
		<wfw:commentRss>http://blog.riaproject.com/server-setting/117.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache 2.2.4 與 PHP 5.2.1 設定配置</title>
		<link>http://blog.riaproject.com/php-mysql/109.html</link>
		<comments>http://blog.riaproject.com/php-mysql/109.html#comments</comments>
		<pubDate>Tue, 03 Jul 2007 03:41:56 +0000</pubDate>
		<dc:creator>anistar</dc:creator>
				<category><![CDATA[PHP/Mysql]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Apserver]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://blog.riaproject.com/?p=109</guid>
		<description><![CDATA[本文紀錄Apache 2.2.4與PHP5.2.1在httpd.conf的設定： 要使用php5和mysql，要在httpd.conf的設定中加入以下的代碼： LoadFile C:phplibmysql.dll LoadModule php5_module "C:phpphp5apache2_2.dll" PHPIniDir "C:serverphp" AddType application/x-httpd-php .php LoadFile行用來啟用mysql，否則的話要將libmysql.dll複製到windows目錄下，一般為了方便且乾淨起見，最好使用LoadFile指令會較好。 下邊3行用來啟用php5.2.1。 實際安裝目錄不同者請自行修正目錄位置，如果不需要使用mysql則可以不用設定第1行。]]></description>
		<wfw:commentRss>http://blog.riaproject.com/php-mysql/109.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP5.X 的時區設定 (Xoops時區問題可參考)</title>
		<link>http://blog.riaproject.com/php-mysql/108.html</link>
		<comments>http://blog.riaproject.com/php-mysql/108.html#comments</comments>
		<pubDate>Fri, 29 Jun 2007 08:52:03 +0000</pubDate>
		<dc:creator>anistar</dc:creator>
				<category><![CDATA[PHP/Mysql]]></category>
		<category><![CDATA[Apserver]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[常識]]></category>

		<guid isPermaLink="false">http://blog.riaproject.com/?p=108</guid>
		<description><![CDATA[之前幫公司架設了一套Xoops的系統在Run，今天被告知系統上的時間都不對，真糟，人不是我殺的啊，我了不起只有幫Open Source改過PHP的程式來達到客製化的目的，時區到底是哪裡再給我搞鬼，一開始我曾經懷疑過Xoops是不是出問題了，我找過了時區設定，在一行行的程式碼當中找來找去(沒辦法，程式又不是我起頭的，只好土法煉鋼)，結果都找不出原因，搞到我頭破血流的時候，突然想到該不會是PHP給我出問題吧&#8230; 叮咚，沒錯，還真的是PHP這個老大哥給我出狀況，我真的好希望PHP能夠統一和人性化一點，不然每一版的狀況還真的不太一樣，真的會搞死人，言歸正傳，後來把PHP的時區設定給改過來，終於才把這件事情搞定。 在PHP5.X的版本中，其時區是內定在美國，因此要額外調整才會正確的執行出來。 原本設定如下： [Date] ; Defines the default timezone used by the date functions ;date.timezone = 要設成台灣的時區請改為： [Date] ; Defines the default timezone used by the date functions date.timezone = Asia/Taipei 如果你跟我一樣遇到這樣的狀況，可能是PHP的問題，別急著錯怪Xoops啊，抱歉Xoops，我今天錯怪你了.   *笑*  ]]></description>
		<wfw:commentRss>http://blog.riaproject.com/php-mysql/108.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>想學標準的HTML,SQL,JavaScript…哪裡去?</title>
		<link>http://blog.riaproject.com/cool-game/60.html</link>
		<comments>http://blog.riaproject.com/cool-game/60.html#comments</comments>
		<pubDate>Fri, 13 Apr 2007 02:18:41 +0000</pubDate>
		<dc:creator>anistar</dc:creator>
				<category><![CDATA[酷站/遊戲]]></category>
		<category><![CDATA[Apserver]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[酷站]]></category>

		<guid isPermaLink="false">http://blog.riaproject.com/index.php/2007/04/13/w3c-school/</guid>
		<description><![CDATA[雖然近年來軟體實在是太方便了，所以越來越少人願意去學一些很根本的東西，例如像是HTML，SQL，JavaScript&#8230;等；但是如果要建立一些稍微進階的功能，這些基礎可萬萬少不了，我分享一個站，他有提供一些簡單的教學，重點是這些教學都是"標準"的語法，這點可就非常重要了，因為你不會想寫出來的東西太特別不能用吧。 該網站的網址為 http://www.w3schools.com/ 若您想要分別到不同主題的內容，您可以參考下列的網址： HTML: http://www.w3schools.com/html/html_quiz.asp XHTML: http://www.w3schools.com/xhtml/xhtml_quiz.asp CSS: http://www.w3schools.com/css/css_quiz.asp XML: http://www.w3schools.com/xml/xml_quiz.asp JAVASCRIPT: http://www.w3schools.com/js/js_quiz.asp SQL: http://www.w3schools.com/sql/sql_quiz.asp PHP: http://www.w3schools.com/php/php_quiz.asp ASP: http://www.w3schools.com/asp/asp_quiz.asp 還有更多請自行連接觀看。]]></description>
		<wfw:commentRss>http://blog.riaproject.com/cool-game/60.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Apache伺服器的存取權限設定</title>
		<link>http://blog.riaproject.com/server-setting/49.html</link>
		<comments>http://blog.riaproject.com/server-setting/49.html#comments</comments>
		<pubDate>Wed, 04 Apr 2007 17:39:55 +0000</pubDate>
		<dc:creator>anistar</dc:creator>
				<category><![CDATA[伺服器架設]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Apserver]]></category>

		<guid isPermaLink="false">http://blog.riaproject.com/index.php/2007/04/05/apache-setting/</guid>
		<description><![CDATA[接續之前的文章，上次我們設定了Apache的虛擬伺服器，這樣我們就可以在一個IP下建立多個網站，若是要加入存取權限的話，那還需要多加一些描述才行，不然訪問的用戶可是可以輕易的對您的網站做列表的動作，這樣不行嗎？當然不行，這可是一個安全性上的缺失啊。 在Apache中要設定存取權限，就要使用Directory標籤，如下方的描述： Options -Indexes -FollowSymLinks AllowOverride None Order allow,deny Allow from all #Deny from all 這樣就能有效的阻止使用者在你的網站上隨易的亂晃，使用者若是輸入一個不存在的檔案，也不會出現列表的狀況，而是出現無法存取，下次我們再來談其他細部的設定。]]></description>
		<wfw:commentRss>http://blog.riaproject.com/server-setting/49.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP上實作重新導引(Redirect)</title>
		<link>http://blog.riaproject.com/php-mysql/46.html</link>
		<comments>http://blog.riaproject.com/php-mysql/46.html#comments</comments>
		<pubDate>Wed, 28 Mar 2007 03:43:58 +0000</pubDate>
		<dc:creator>anistar</dc:creator>
				<category><![CDATA[PHP/Mysql]]></category>
		<category><![CDATA[Apserver]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://blog.riaproject.com/index.php/2007/03/28/php-redirect/</guid>
		<description><![CDATA[要重新導引其實可以用 JavaScript 來編寫，例如下段程式碼就是讓連進來的使用者會前往某處： location.href("sompage.html"); 但是這樣會有一些問題存在，例如只要當使用者停用 JavaScript 這招就會失效了，所以若使用 PHP 就不會有這樣的困擾，在 PHP 中要從新導引，可以寫下方的程式碼： header("location:login.php"); ?&#62; 另外要提醒一點，就是如果您希望網頁一近來就直接轉向，可以寫在 標籤之前，這樣就不會到一半才做跳頁動作。]]></description>
		<wfw:commentRss>http://blog.riaproject.com/php-mysql/46.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>檔案類型判斷 MIME TYPE</title>
		<link>http://blog.riaproject.com/tips/44.html</link>
		<comments>http://blog.riaproject.com/tips/44.html#comments</comments>
		<pubDate>Fri, 23 Mar 2007 16:13:01 +0000</pubDate>
		<dc:creator>anistar</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Apserver]]></category>
		<category><![CDATA[網頁]]></category>

		<guid isPermaLink="false">http://blog.riaproject.com/index.php/2007/03/24/file-mimetype/</guid>
		<description><![CDATA[要檢查檔案型態，用副檔名可不是一個好辦法，例如 movie.jpg 不見得就真的是一個 jpg 檔案，有可能是篡改副檔名的偽裝檔案，所以最準確的方法是去參考 MIME TYPE ，就可以在檔案上傳時檢測檔案的真正身分，這個方法適用任何的 Server Language (ASP.NET, PHP, ColdFusion, JSP&#8230;)。  Form Mime Type List MIME Type                          Extension ----------------------------------+---------------------------------- animation/narrative                nml application/activemessage application/andrew-inset application/applefile application/atomicmail application/dca-rft application/dec-dx application/dsptype                tsp application/fastman                lcc application/font-tdpfr             pfr pfr application/futuresplash           spl application/mac-binhex40           hqx application/mac-compactpro         cpt application/macwriteii application/mspowerpoint           pot pps ppt ppz application/msword application/news-message-id application/news-transmission application/octet-stream           bin class [...]]]></description>
		<wfw:commentRss>http://blog.riaproject.com/tips/44.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Free ColdFusion引擎</title>
		<link>http://blog.riaproject.com/coldfusion/6.html</link>
		<comments>http://blog.riaproject.com/coldfusion/6.html#comments</comments>
		<pubDate>Mon, 05 Mar 2007 02:20:39 +0000</pubDate>
		<dc:creator>anistar</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Apserver]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[J2ee]]></category>
		<category><![CDATA[軟體新聞]]></category>

		<guid isPermaLink="false">http://blog.riaproject.com/?p=5</guid>
		<description><![CDATA[昨天經小竹的介紹，才知道原來有人正在默默的支持著ColdFusion這項技術，或許有人不知道什麼是ColdFusion，這樣好了，我簡單的稍微說明一下，ColdFusion目前是由Adobe公司所開發持有的網站開發技術，他的目的就像PHP, ASP.net, JSP等是相同的，就是為了建構出動態網站系統而存在的，但是ColdFusion它不但是以JAVA平台(J2EE)為執行平台，而且程式語法更加精簡，讓原來需要寫幾十行的程式，在短短幾行中就能完成任務了。 那為什麼這麼好的軟體在台灣知名度為什麼並不響亮呢？我想這是因為台灣長久以來都籠罩在某家軟體廠商的市場底下，大家似乎比較熟析它的作業系統與開發工具，而且似乎大家比較喜歡免費的軟體，再來不可諱言的的確在台灣這塊地區的宣傳不夠，所以知名度並沒有像其他軟體這麼的高，不過我必須說，他試一個非常棒的語言，在歐美國家,中國大陸,日本等地都非常紅，光看原廠的Online-help語言版本就可以證明這件事了(在這邊偷喊一下，台灣加油啊~)，它不僅簡單，還能將您的軟體開發時間縮短1/10以上(這是我個人的經驗)，如果您有興趣的話，絕對推薦玩一玩。 講遠了，這個網站的作者非常了不起，提供了免費的ColdFusion引擎提供給網友使用，這們棒的東西不幫他宣傳一下，真是對不起大家了(我跟網站作者不認識喔!絕對沒有打廣告的嫌疑 )，目前版本支援到ColdFusion MX，有在用的程式開發員應該很高興吧，您可以到[ http://www.smithproject.org/download.cfm ]下載使用，過些日子我再來將測試的心得跟各位做個報告。  下載位置已更新為 http://www.smithproject.org/smith_download.cfm]]></description>
		<wfw:commentRss>http://blog.riaproject.com/coldfusion/6.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

