<?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; website</title>
	<atom:link href="http://blog.it580.com/tag/website/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.it580.com</link>
	<description>一个IT从业者的枫言枫语</description>
	<lastBuildDate>Tue, 09 Mar 2010 07:03:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>zh</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<item>
		<title>优化网站的载入速度</title>
		<link>http://blog.it580.com/1457</link>
		<comments>http://blog.it580.com/1457#comments</comments>
		<pubDate>Fri, 10 Oct 2008 02:54:59 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[手记]]></category>
		<category><![CDATA[deflate]]></category>
		<category><![CDATA[expires]]></category>
		<category><![CDATA[gzip]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blog.it580.com/1457</guid>
		<description><![CDATA[最近朋友们反映网站速度比较慢，检查并处理了一下。检查发现:

空间商关闭了网站压缩
网站没有设置Expires

1.开启压缩功能,编辑.htaccess文件,加入如下代码:
&#60;ifmodule mod_deflate.c&#62;
AddOutputFilter DEFLATE html xml php js css
&#60;/ifmodule&#62;

如果不支持deflate,可以开启gzip。
&#60;IfModule mod_gzip.c&#62;     &#160; mod_gzip_on Yes      &#160; mod_gzip_dechunk Yes      &#160; mod_gzip_item_include file \.(html?&#124;txt&#124;css&#124;js&#124;php&#124;pl)$      &#160; mod_gzip_item_include handler ^cgi-script$      &#160; mod_gzip_item_include mime ^text/.*     [...]]]></description>
			<content:encoded><![CDATA[<p>最近朋友们反映网站速度比较慢，检查并处理了一下。检查发现:</p>
<ol>
<li>空间商关闭了网站压缩</li>
<li>网站没有设置Expires</li>
</ol>
<p>1.开启压缩功能,编辑.htaccess文件,加入如下代码:</p>
<blockquote><p>&lt;ifmodule mod_deflate.c&gt;</p>
<p>AddOutputFilter DEFLATE html xml php js css</p>
<p>&lt;/ifmodule&gt;</p>
</blockquote>
<p>如果不支持deflate,可以开启gzip。</p>
<blockquote><p>&lt;IfModule mod_gzip.c&gt;     <br />&#160; mod_gzip_on Yes      <br />&#160; mod_gzip_dechunk Yes      <br />&#160; mod_gzip_item_include file \.(html?|txt|css|js|php|pl)$      <br />&#160; mod_gzip_item_include handler ^cgi-script$      <br />&#160; mod_gzip_item_include mime ^text/.*      <br />&#160; mod_gzip_item_include mime ^application/x-javascript.*      <br />&#160; mod_gzip_item_exclude mime ^image/.*      <br />&#160; mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*      <br />&lt;/IfModule&gt;</p>
</blockquote>
<p>2.设置Expires,编辑.htaccess,加入如下代码:</p>
<blockquote><p>&lt;FilesMatch &quot;\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$&quot;&gt;     <br />Header set Cache-Control &quot;public&quot;      <br />Header set Expires &quot;Thu, 15 Apr 2010 20:00:00 GMT&quot;      <br />&lt;/FilesMatch&gt;</p>
</blockquote>
<p>修改后,网站速度提升50%左右。</p>
<img src="http://blog.it580.com/?ak_action=api_record_view&id=1457&type=feed" alt="" /><hr />
<p><small>© David for <a href="http://blog.it580.com">空想枫</a>, 2008. |
<a href="http://blog.it580.com/1457">Permalink</a> |
<a href="http://blog.it580.com/1457#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://blog.it580.com/1457&title=优化网站的载入速度">del.icio.us</a>
<br/>
</small></p>
	Tags: <a href="http://blog.it580.com/tag/deflate" title="deflate" rel="tag nofollow">deflate</a>, <a href="http://blog.it580.com/tag/expires" title="expires" rel="tag nofollow">expires</a>, <a href="http://blog.it580.com/tag/gzip" title="gzip" rel="tag nofollow">gzip</a>, <a href="http://blog.it580.com/tag/htaccess" title="htaccess" rel="tag nofollow">htaccess</a>, <a href="http://blog.it580.com/tag/website" title="website" rel="tag nofollow">website</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://blog.it580.com/1288" title="Dropbox:备份,分享,协作免费空间 (2008 7-15)">Dropbox:备份,分享,协作免费空间</a> (3)</li>
	<li><a href="http://blog.it580.com/1263" title="秘密消息网站-读后自毁 (2008 7-6)">秘密消息网站-读后自毁</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://blog.it580.com/1457/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dropbox:备份,分享,协作免费空间</title>
		<link>http://blog.it580.com/1288</link>
		<comments>http://blog.it580.com/1288#comments</comments>
		<pubDate>Tue, 15 Jul 2008 07:13:53 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[手记]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[disk]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blog.it580.com/1288</guid>
		<description><![CDATA[ 
主页:www.getdropbox.com
目前还在测试的一个网络空间,而和其他网络硬盘又有着明显的区别。如果你用过SVN,CVS等版本管理系统,就比较能了解差异.
Dropbox除了提供和其他网络硬盘一样的在线备份功能外,同时支持和你指定的朋友进行文件的分享,可以要用基于网络的协作.另外,提供你版本管理功能,可以了解你放在dropbox上的所有文件历史,并可以随时回退到老的历史版本.
Dropbox的使用也非常方便,安装它提供的客户端软件,在我的文档下就会有个新的文件夹&#34;My Dropbox&#34;,在这个文件夹内的文件就会被自动同步到Dropbox服务器。如果同步完成的就会显示如下图中的绿色打钩图标,还在同步中的就是蓝色的双箭头同步图标(如下图中间的文件标志).目前给测试用户的空间为2GB。
 
当然,目前测试下来也有几个弱点:

无可避免,在国内使用,速度并不快速.
同步文件必须放置于同步目录,不能同步磁盘上的其他目录或文件.
共享功能只能和好友共享,这也和它的定位有关,并不定位为网络硬盘.

如果,你也感兴趣,可以留言给我,我可以发送邀请给你.

© David for 空想枫, 2008. &#124;
Permalink &#124;
3 comments &#124;
Add to
del.icio.us


	Tags: backup, disk, dropbox, website

	Related posts
	
	PostgreSQL Windows自动备份脚本 (1)
	优化网站的载入速度 (0)
	秘密消息网站-读后自毁 (0)


]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.it580.com/wp-content/uploads/2008/07/dropbox-small-logo.gif"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="50" alt="dropbox_small_logo" src="http://blog.it580.com/wp-content/uploads/2008/07/dropbox-small-logo-thumb.gif" width="167" border="0" /></a> </p>
<p>主页:<a href="http://www.getdropbox.com" target="_blank">www.getdropbox.com</a></p>
<p>目前还在测试的一个网络空间,而和其他网络硬盘又有着明显的区别。如果你用过SVN,CVS等版本管理系统,就比较能了解差异.</p>
<p>Dropbox除了提供和其他网络硬盘一样的在线备份功能外,同时支持和你指定的朋友进行文件的分享,可以要用基于网络的协作.另外,提供你版本管理功能,可以了解你放在dropbox上的所有文件历史,并可以随时回退到老的历史版本.</p>
<p>Dropbox的使用也非常方便,安装它提供的客户端软件,在我的文档下就会有个新的文件夹&quot;My Dropbox&quot;,在这个文件夹内的文件就会被自动同步到Dropbox服务器。如果同步完成的就会显示如下图中的绿色打钩图标,还在同步中的就是蓝色的双箭头同步图标(如下图中间的文件标志).目前给测试用户的空间为2GB。</p>
<p><a href="http://blog.it580.com/wp-content/uploads/2008/07/dropbox-upfiles.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="139" alt="Dropbox_upfiles" src="http://blog.it580.com/wp-content/uploads/2008/07/dropbox-upfiles-thumb.jpg" width="376" border="0" /></a> </p>
<p>当然,目前测试下来也有几个弱点:</p>
<ol>
<li>无可避免,在国内使用,速度并不快速.</li>
<li>同步文件必须放置于同步目录,不能同步磁盘上的其他目录或文件.</li>
<li>共享功能只能和好友共享,这也和它的定位有关,并不定位为网络硬盘.</li>
</ol>
<p>如果,你也感兴趣,可以留言给我,我可以发送邀请给你.</p>
<img src="http://blog.it580.com/?ak_action=api_record_view&id=1288&type=feed" alt="" /><hr />
<p><small>© David for <a href="http://blog.it580.com">空想枫</a>, 2008. |
<a href="http://blog.it580.com/1288">Permalink</a> |
<a href="http://blog.it580.com/1288#comments">3 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://blog.it580.com/1288&title=Dropbox:备份,分享,协作免费空间">del.icio.us</a>
<br/>
</small></p>
	Tags: <a href="http://blog.it580.com/tag/backup" title="backup" rel="tag nofollow">backup</a>, <a href="http://blog.it580.com/tag/disk" title="disk" rel="tag nofollow">disk</a>, <a href="http://blog.it580.com/tag/dropbox" title="dropbox" rel="tag nofollow">dropbox</a>, <a href="http://blog.it580.com/tag/website" title="website" rel="tag nofollow">website</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://blog.it580.com/1910" title="PostgreSQL Windows自动备份脚本 (2009 2-19)">PostgreSQL Windows自动备份脚本</a> (1)</li>
	<li><a href="http://blog.it580.com/1457" title="优化网站的载入速度 (2008 10-10)">优化网站的载入速度</a> (0)</li>
	<li><a href="http://blog.it580.com/1263" title="秘密消息网站-读后自毁 (2008 7-6)">秘密消息网站-读后自毁</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://blog.it580.com/1288/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>秘密消息网站-读后自毁</title>
		<link>http://blog.it580.com/1263</link>
		<comments>http://blog.it580.com/1263#comments</comments>
		<pubDate>Sun, 06 Jul 2008 04:39:30 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[涂鸦]]></category>
		<category><![CDATA[privnote]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blog.it580.com/1263</guid>
		<description><![CDATA[ 
网站:https://privnote.com/
&#160;&#160;&#160;&#160;&#160; 当你需要发送秘密的消息时,这也许是个不错的方式。只要你确保不会有人实时截取地址并前往阅读,它是足够的。   &#160;&#160;&#160;&#160;&#160; 也许最终只会变成情侣间传送肉麻情话的系统,也是不错的用途啊。    &#160;&#160;&#160;&#160;&#160; 对我来说,如果你想知道朋友的ip地址,它也是不错的工具,随便写个消息给你朋友,发送地址给他,当你再访问这个地址时,系统就会告诉你,阅读者的ip地址.

© David for 空想枫, 2008. &#124;
Permalink &#124;
No comment &#124;
Add to
del.icio.us


	Tags: privnote, website

	Related posts
	
	优化网站的载入速度 (0)
	Dropbox:备份,分享,协作免费空间 (3)


]]></description>
			<content:encoded><![CDATA[<p><a href="https://privnote.com/" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="110" alt="privnotelogo" src="http://blog.it580.com/wp-content/uploads/2008/07/privnotelogo.png" width="301" border="0" /></a> </p>
<p>网站:<a title="https://privnote.com/" href="https://privnote.com/" target="_blank">https://privnote.com/</a></p>
<p>&#160;&#160;&#160;&#160;&#160; 当你需要发送秘密的消息时,这也许是个不错的方式。只要你确保不会有人实时截取地址并前往阅读,它是足够的。   <br />&#160;&#160;&#160;&#160;&#160; 也许最终只会变成情侣间传送肉麻情话的系统,也是不错的用途啊。    <br />&#160;&#160;&#160;&#160;&#160; 对我来说,如果你想知道朋友的ip地址,它也是不错的工具,随便写个消息给你朋友,发送地址给他,当你再访问这个地址时,系统就会告诉你,阅读者的ip地址.</p>
<img src="http://blog.it580.com/?ak_action=api_record_view&id=1263&type=feed" alt="" /><hr />
<p><small>© David for <a href="http://blog.it580.com">空想枫</a>, 2008. |
<a href="http://blog.it580.com/1263">Permalink</a> |
<a href="http://blog.it580.com/1263#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://blog.it580.com/1263&title=秘密消息网站-读后自毁">del.icio.us</a>
<br/>
</small></p>
	Tags: <a href="http://blog.it580.com/tag/privnote" title="privnote" rel="tag nofollow">privnote</a>, <a href="http://blog.it580.com/tag/website" title="website" rel="tag nofollow">website</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://blog.it580.com/1457" title="优化网站的载入速度 (2008 10-10)">优化网站的载入速度</a> (0)</li>
	<li><a href="http://blog.it580.com/1288" title="Dropbox:备份,分享,协作免费空间 (2008 7-15)">Dropbox:备份,分享,协作免费空间</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://blog.it580.com/1263/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
