<?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>胡說八道的生活，亂七八糟的世界！ &#187; Blog</title>
	<atom:link href="http://blog.twera.com/tag/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.twera.com</link>
	<description>我不在家裡上網ＰＴＴ，就是在籃球場上打籃球；我不在籃球場上打籃球，就是在往籃球場的路上！</description>
	<lastBuildDate>Sun, 05 Feb 2012 15:01:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>[WP] 關閉WP文章多版本及修改自動儲存文章時間</title>
		<link>http://blog.twera.com/2012-01-22/673</link>
		<comments>http://blog.twera.com/2012-01-22/673#comments</comments>
		<pubDate>Sun, 22 Jan 2012 00:59:32 +0000</pubDate>
		<dc:creator>nonsense</dc:creator>
				<category><![CDATA[My WordPress]]></category>
		<category><![CDATA[教學相長]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WP]]></category>
		<category><![CDATA[教學]]></category>

		<guid isPermaLink="false">http://blog.twera.com/?p=673</guid>
		<description><![CDATA[瀏覽人數：20「文章多版本」對於常修改文章的人來說，或許是個方便的工具，但是對我來說，在BLOG裡看到就是覺得很礙眼，所以就要找方法來解決它。 編輯「wp_cofing」檔，第91行， define(&#8216;WP_POST_REVISIONS&#8217;, true ); &#160; 更改為 define(&#8216;WP_POST_REVISIONS&#8217;, false ); 這樣就可以關閉文章多版本的功能囉。 至於「文章自動儲存」功能，這也是很方便的工具，可以預防不小心斷線，剛剛所打的心血全部泡湯，不過這對我來說，也算是多餘，所以也要想辦法關掉它，但是網路上所找到的方法，是修改自動儲存的時間，原本是每60秒即自動儲存，可以依據個人喜好，修改自動儲存時間。小弟則是修改為一天86400秒，僅供參考。 同樣編輯「wp_cofing」檔，第81行， define(&#8216;AUTOSAVE_INTERVAL&#8217;, 60 ); &#160; 更改為 define(&#8216;AUTOSAVE_INTERVAL&#8217;, 86400 ); 這樣就大功告成囉 。 如果不會修改「wp_cofing」檔，則可以使用「WP-Optimize」外掛來做清除的動作，想到的時候點一下，就可以輕鬆消除紀錄囉！]]></description>
		<wfw:commentRss>http://blog.twera.com/2012-01-22/673/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[WP] 網域轉址</title>
		<link>http://blog.twera.com/2012-01-21/645</link>
		<comments>http://blog.twera.com/2012-01-21/645#comments</comments>
		<pubDate>Sat, 21 Jan 2012 01:39:04 +0000</pubDate>
		<dc:creator>nonsense</dc:creator>
				<category><![CDATA[My WordPress]]></category>
		<category><![CDATA[教學相長]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WP]]></category>
		<category><![CDATA[教學]]></category>

		<guid isPermaLink="false">http://blog.twera.com/?p=645</guid>
		<description><![CDATA[瀏覽人數：69最近網路空間出現一些問題，整個網站都消失了，還好在事發的前幾天剛好有做備份，雖然損失了幾篇文章，不過大致上都還能復原，算是不幸中的大幸！所以平日真的要勤備份啊！ 另外還要搬家到另外一個網路空間上，這又是另一件工程了。 也順便為網站重新設定新的網址，不過更改網址對我來說似乎不是一件簡單的事，因為就我的網站來說，不只要變動主網址(nonsense.twera.com)，還要將以往的其他網址自動轉到新的網址(blog.twera.com)，連帶還要將底下所有連結做自動變更，這似乎是一件大工程啊！ 之前有在網路上請教先進如何變更網址，一般建議使用修改 .htaccess 的方式來做轉址，這就像在 cpanel 後台做網域設定，不過在 .htaccess 裡，可以做更多種更自由的設定，當然，這也不是我會的功夫(菸)，所以只好求助於網路囉。 簡單來說，就我的網站，主要是變動以下幾個字串： RewriteEngine on RewriteCond %{HTTP_HOST} ^nonsense.twera.com$ [NC,OR] RewriteCond %{HTTP_HOST} ^nonsense.twbbs.org$ [NC] RewriteRule ^(.*)$ http://blog.twera.com/$1 [R=301,L] 如此，我全部的舊文章網址，未來就會自動轉向新的網址了！(不要問我為什麼，因為我也不知道…) EX: 　　 　http://nonsense.twera.com/2011-10-19/637 自動轉到　 http://blog.twera.com/2011-10-19/637 另外，我還發現可以轉到不同的網路空間呢，也是使用同樣的方式即可囉！ 後記，目前是將wp整個資料放在網路空間的根目錄(public_html)底下，未來想放在資料夾裡，改成 public_html/wp 的方式，但是要讓網址架構裡面不會出現/，不過這種轉址我就不會了。之前有請網友幫忙過，但是自己沒慧根，還是學不會。 &#160;]]></description>
		<wfw:commentRss>http://blog.twera.com/2012-01-21/645/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[軟體] Blog 離線編輯器</title>
		<link>http://blog.twera.com/2010-01-22/446</link>
		<comments>http://blog.twera.com/2010-01-22/446#comments</comments>
		<pubDate>Fri, 22 Jan 2010 14:07:23 +0000</pubDate>
		<dc:creator>nonsense</dc:creator>
				<category><![CDATA[資訊分享]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Windows Live Writer]]></category>
		<category><![CDATA[WLW]]></category>
		<category><![CDATA[Zoundry Raven]]></category>
		<category><![CDATA[軟體]]></category>
		<category><![CDATA[離線編輯器]]></category>

		<guid isPermaLink="false">http://blog.twera.com/?p=446</guid>
		<description><![CDATA[瀏覽人數：642目前網路上最常用的兩款Blog離線編輯器就是：Zoundry Raven 及 Windows Live Writer (簡稱WLW)。這兩款軟體各有千秋，我也沒時間介紹，有興趣的人自己在用免安裝版試用看看吧。 之前有使用過，不過一直沒繼續使用。現在，我又打算拿出來了，因為看上它可以隨時備份自己打過的文章，加上如果有貼圖片的話，可以快速幫我上傳圖片到網路空間，就不需要我自己再手動設置了，說穿了就是懶啊！ 目前我是使用Zoundry Raven，還滿方便的！ 以下附上Zoundry Raven 及 Windows Live Writer 的介紹及免安裝版： Zoundry Raven 介紹、免裝版 Windows Live Writer 介紹、免安裝版]]></description>
		<wfw:commentRss>http://blog.twera.com/2010-01-22/446/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

