<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.3" -->
<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/"
	>

<channel>
	<title>PAGELEAF'Blog</title>
	<link>http://www.pageleaf.org</link>
	<description>Books have leafs and Trees have pages</description>
	<pubDate>Thu, 31 Jul 2008 07:11:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
	<language>en</language>
			<item>
		<title>安装了卡巴无法观看本站影视的解决方法</title>
		<link>http://www.pageleaf.org/2008/07/31/wp9/</link>
		<comments>http://www.pageleaf.org/2008/07/31/wp9/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 07:10:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://www.pageleaf.org/2008/07/31/wp9/</guid>
		<description><![CDATA[最近一直很郁闷，自己居然无法观看自己网站上的电影了，而别人却不会，百思不得其解。最后求助了WP9官方技术十二少，得知了问题所在，原来是我安装的卡巴斯基的问题。因为WP9播放器有一个超时机制，被卡吧流量扫描延迟了。以卡巴7为例，解决办法就是右键点击右下角卡巴小图标，点击设置，然后点击保护—Web反病毒，在右边的连通性中有扫描HTTP流量一项，将勾去掉，然后确定即可。如图：

]]></description>
			<content:encoded><![CDATA[<p>最近一直很郁闷，自己居然无法观看自己网站上的电影了，而别人却不会，百思不得其解。最后求助了WP9官方技术十二少，得知了问题所在，原来是我安装的卡巴斯基的问题。因为WP9播放器有一个超时机制，被卡吧流量扫描延迟了。以卡巴7为例，解决办法就是右键点击右下角卡巴小图标，点击设置，然后点击保护—Web反病毒，在右边的连通性中有扫描HTTP流量一项，将勾去掉，然后确定即可。如图：</p>
<p><a href="http://www.pageleaf.org/wp-content/uploads/2008/07/kab.jpg" title="kab.jpg" rel="lightbox"><img src="http://www.pageleaf.org/wp-content/uploads/2008/07/kab.jpg" alt="kab.jpg" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pageleaf.org/2008/07/31/wp9/feed/</wfw:commentRss>
		</item>
		<item>
		<title>关于取消TVB连续剧的通知。</title>
		<link>http://www.pageleaf.org/2008/07/16/guanyuquxiaotvblianxujudetongzhi/</link>
		<comments>http://www.pageleaf.org/2008/07/16/guanyuquxiaotvblianxujudetongzhi/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 18:36:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[personal]]></category>

		<category><![CDATA[TVB]]></category>

		<guid isPermaLink="false">http://www.pageleaf.org/2008/07/16/guanyuquxiaotvblianxujudetongzhi/</guid>
		<description><![CDATA[由于TVB电视剧涉及版权问题，导致被警告，所以删了除所有TVB连续剧，请大家见谅！
]]></description>
			<content:encoded><![CDATA[<p>由于TVB电视剧涉及版权问题，导致被警告，所以删了除所有TVB连续剧，请大家见谅！</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pageleaf.org/2008/07/16/guanyuquxiaotvblianxujudetongzhi/feed/</wfw:commentRss>
		</item>
		<item>
		<title>IIS与Apache共存</title>
		<link>http://www.pageleaf.org/2008/04/08/iisapache/</link>
		<comments>http://www.pageleaf.org/2008/04/08/iisapache/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 17:01:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[web]]></category>

		<category><![CDATA[Apache]]></category>

		<category><![CDATA[IIS]]></category>

		<category><![CDATA[共存]]></category>

		<guid isPermaLink="false">http://www.pageleaf.org/2008/04/08/iisapache/</guid>
		<description><![CDATA[修改Apache配置文件，启用Proxy模块；
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_http_module modules/mod_proxy_http.so
虚拟主机部分
  ServerAdmin xxx@xx.com.cn
  DocumentRoot D:/web/www.xx.com
  DirectoryIndex index.htm index.html
  ServerName www.xx.com
  ProxyPass / http://www.xx.com:81/               #添加这两行转到iis的81端口即可
  ProxyPassReverse / http://www.xx.com:81/        #添加这两行
  ErrorLog logs/xx-error_log
  CustomLog logs/xxx.access_log common
]]></description>
			<content:encoded><![CDATA[<p>修改Apache配置文件，启用Proxy模块；</p>
<p>LoadModule proxy_module modules/mod_proxy.so<br />
LoadModule proxy_http_module modules/mod_proxy_http.so</p>
<p>虚拟主机部分</p>
<p>  ServerAdmin xxx@xx.com.cn<br />
  DocumentRoot D:/web/www.xx.com<br />
  DirectoryIndex index.htm index.html<br />
  ServerName www.xx.com</p>
<p>  ProxyPass / http://www.xx.com:81/               #添加这两行转到iis的81端口即可<br />
  ProxyPassReverse / http://www.xx.com:81/        #添加这两行</p>
<p>  ErrorLog logs/xx-error_log<br />
  CustomLog logs/xxx.access_log common</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pageleaf.org/2008/04/08/iisapache/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ie下最后一个li不自动换行的解决方法</title>
		<link>http://www.pageleaf.org/2008/03/28/ieli/</link>
		<comments>http://www.pageleaf.org/2008/03/28/ieli/#comments</comments>
		<pubDate>Fri, 28 Mar 2008 07:53:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[web]]></category>

		<category><![CDATA[ie]]></category>

		<category><![CDATA[li]]></category>

		<guid isPermaLink="false">http://www.pageleaf.org/2008/03/28/ieli/</guid>
		<description><![CDATA[用一个样式里很少用的样式属性:white-space:nowrap;先暂且记录下,让它解决ie的换行问题.
]]></description>
			<content:encoded><![CDATA[<p>用一个样式里很少用的样式属性:white-space:nowrap;先暂且记录下,让它解决ie的换行问题.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pageleaf.org/2008/03/28/ieli/feed/</wfw:commentRss>
		</item>
		<item>
		<title>在ie6中div最小高度的解决方法</title>
		<link>http://www.pageleaf.org/2008/03/27/ie6div/</link>
		<comments>http://www.pageleaf.org/2008/03/27/ie6div/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 15:23:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[web]]></category>

		<category><![CDATA[div]]></category>

		<category><![CDATA[IE6]]></category>

		<category><![CDATA[高度]]></category>

		<guid isPermaLink="false">http://www.pageleaf.org/2008/03/27/ie6div/</guid>
		<description><![CDATA[在IE6中，使用CSS定义DIV的高度的时候经常遇到这个问题，就是当DIV的最小高度小于一定的值以后，就会发现，无论你怎么设置最小高度，Div的高度会固定在一个值不再发生变动，这个问题很是烦人。这是因为在IE6中，系统默认的并非是Div有一个默认的高度，而是你没有解决一个隐藏的参数，font-size，这个是ie6中对于Div属性中的font-size大小和你系统css中定义的font-size有很大关系，因此必须单独定义这个Div的font-size，这样才能解决这个问题。设置：font-size: 0px; 
]]></description>
			<content:encoded><![CDATA[<p>在IE6中，使用CSS定义DIV的高度的时候经常遇到这个问题，就是当DIV的最小高度小于一定的值以后，就会发现，无论你怎么设置最小高度，Div的高度会固定在一个值不再发生变动，这个问题很是烦人。这是因为在IE6中，系统默认的并非是Div有一个默认的高度，而是你没有解决一个隐藏的参数，font-size，这个是ie6中对于Div属性中的font-size大小和你系统css中定义的font-size有很大关系，因此必须单独定义这个Div的font-size，这样才能解决这个问题。设置：font-size: 0px; </p>
]]></content:encoded>
			<wfw:commentRss>http://www.pageleaf.org/2008/03/27/ie6div/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Vista和XP下IE6 IE7 IE8共存的工具:IETester</title>
		<link>http://www.pageleaf.org/2008/03/25/ietester/</link>
		<comments>http://www.pageleaf.org/2008/03/25/ietester/#comments</comments>
		<pubDate>Tue, 25 Mar 2008 04:59:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[web]]></category>

		<category><![CDATA[IE6]]></category>

		<category><![CDATA[IE7]]></category>

		<category><![CDATA[IE8]]></category>

		<category><![CDATA[IETester]]></category>

		<category><![CDATA[Vista]]></category>

		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://www.pageleaf.org/2008/03/25/ietester/</guid>
		<description><![CDATA[IETester 是一个免费的网页浏览器，他能让你的Windows XP或者VISTA同时拥有IE5.5、IE6、IE7、IE8beta1的内核，而且效果就像独立安装程序那么好。网页设计者再也不必为了不同版本的浏览器而去装什么虚拟机了！
最新的v0.2版本 : 增加了IE7 和 IE8 beta 1 !
IETester 论坛
下载 IETester v0.2

]]></description>
			<content:encoded><![CDATA[<p>IETester 是一个免费的网页浏览器，他能让你的Windows XP或者VISTA同时拥有IE5.5、IE6、IE7、IE8beta1的内核，而且效果就像独立安装程序那么好。网页设计者再也不必为了不同版本的浏览器而去装什么虚拟机了！</p>
<p><strong>最新的v0.2版本 : 增加了IE7 和 IE8 beta 1 !</strong></p>
<p><a href="http://www.my-debugbar.com/forum/" class="urllink">IETester 论坛</a></p>
<p><a href="http://www.my-debugbar.com/ietester/install-ietester-v0.2.exe">下载 IETester v0.2</a></p>
<p><a href="http://www.pageleaf.org/wp-content/uploads/2008/03/ietester.jpg" title="ietester.jpg" rel="lightbox"><img src="http://www.pageleaf.org/wp-content/uploads/2008/03/ietester.thumbnail.jpg" alt="ietester.jpg" /></a><a href="http://www.pageleaf.org/wp-content/uploads/2008/03/ietester-0_2.png" title="ietester-0_2.png"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pageleaf.org/2008/03/25/ietester/feed/</wfw:commentRss>
		</item>
		<item>
		<title>在Windows服务器上搭建MySQL+PHP环境</title>
		<link>http://www.pageleaf.org/2008/03/23/mysqlphp/</link>
		<comments>http://www.pageleaf.org/2008/03/23/mysqlphp/#comments</comments>
		<pubDate>Sat, 22 Mar 2008 18:39:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[web]]></category>

		<category><![CDATA[MySQL]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.pageleaf.org/2008/03/23/mysqlphp/</guid>
		<description><![CDATA[　　XAMPP - XAMPP是一款具有中文说明的功能全面的集成环境，XAMPP并不仅仅针对Windows，而是一个适用于Linux、Windows、Mac OS X 和Solaris 的易于安装的Apache 发行版。软件包中包含Apache 服务器、MySQL、SQLite、PHP、Perl、FileZilla FTP Server、Tomcat等等。默认安装开放了所有功能，安全性有问题，需要进行额外的安全设定。
　　WampServer - WampServe集成了Apache、MySQL、PHP、phpmyadmin，支持Apache的mod_rewrite，PHP扩展、Apache模块只需要在菜单“开启/关闭”上点点就搞定，省去了修改配置文件的麻烦。
　　AppServ - 集成了Apache、PHP、MySQL、phpMyAdmin，较为轻量。
　　总的来说，无论从安全性和性能上来讲，LAMP（Linux + Apache + MySQL + PHP）都优于WAMP（Windows + Apache + MySQL + PHP），不过由于Windows具有易用的特点，WAMP也未尝不是初学者的一个不错的选择。
转自：月光博客
]]></description>
			<content:encoded><![CDATA[<p>　　<a target="_blank" href="http://www.apachefriends.org/zh_cn/index.html">XAMPP</a> - XAMPP是一款具有中文说明的功能全面的集成环境，XAMPP并不仅仅针对Windows，而是一个适用于Linux、Windows、Mac OS X 和Solaris 的易于安装的Apache 发行版。软件包中包含Apache 服务器、MySQL、SQLite、PHP、Perl、FileZilla FTP Server、Tomcat等等。默认安装开放了所有功能，安全性有问题，需要进行额外的安全设定。</p>
<p>　　<a target="_blank" href="http://www.wampserver.com/en/">WampServer</a> - WampServe集成了Apache、MySQL、PHP、phpmyadmin，支持Apache的mod_rewrite，PHP扩展、Apache模块只需要在菜单“开启/关闭”上点点就搞定，省去了修改配置文件的麻烦。</p>
<p>　　<a target="_blank" href="http://www.appservnetwork.com">AppServ</a> - 集成了Apache、PHP、MySQL、phpMyAdmin，较为轻量。</p>
<p>　　总的来说，无论从安全性和性能上来讲，LAMP（Linux + Apache + MySQL + PHP）都优于WAMP（Windows + Apache + MySQL + PHP），不过由于Windows具有易用的特点，WAMP也未尝不是初学者的一个不错的选择。</p>
<p>转自：<a target="_blank" href="http://www.williamlong.info/">月光博客</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pageleaf.org/2008/03/23/mysqlphp/feed/</wfw:commentRss>
		</item>
		<item>
		<title>投名状(The Warlords)海报集</title>
		<link>http://www.pageleaf.org/2008/03/21/thewarlords/</link>
		<comments>http://www.pageleaf.org/2008/03/21/thewarlords/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 17:55:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[entertainment]]></category>

		<category><![CDATA[The Warlords]]></category>

		<category><![CDATA[投名状]]></category>

		<category><![CDATA[海报]]></category>

		<guid isPermaLink="false">http://www.pageleaf.org/2008/03/21/thewarlords/</guid>
		<description><![CDATA[   
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.pageleaf.org/wp-content/uploads/2008/03/thewarlords1.jpg" title="thewarlords1.jpg" rel="lightbox"><img src="http://www.pageleaf.org/wp-content/uploads/2008/03/thewarlords1.thumbnail.jpg" alt="thewarlords1.jpg" /></a> <a href="http://www.pageleaf.org/wp-content/uploads/2008/03/thewarlords3.jpg" title="thewarlords3.jpg" rel="lightbox"><img src="http://www.pageleaf.org/wp-content/uploads/2008/03/thewarlords3.thumbnail.jpg" alt="thewarlords3.jpg" /></a> <a href="http://www.pageleaf.org/wp-content/uploads/2008/03/thewarlords4.jpg" title="thewarlords4.jpg" rel="lightbox"><img src="http://www.pageleaf.org/wp-content/uploads/2008/03/thewarlords4.thumbnail.jpg" alt="thewarlords4.jpg" /></a> <a href="http://www.pageleaf.org/wp-content/uploads/2008/03/thewarlords5.jpg" title="thewarlords5.jpg" rel="lightbox"><img src="http://www.pageleaf.org/wp-content/uploads/2008/03/thewarlords5.thumbnail.jpg" alt="thewarlords5.jpg" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pageleaf.org/2008/03/21/thewarlords/feed/</wfw:commentRss>
		</item>
		<item>
		<title>蝴蝶效应(The Butterfly Effect)海报集</title>
		<link>http://www.pageleaf.org/2008/03/21/thebutterflyeffect/</link>
		<comments>http://www.pageleaf.org/2008/03/21/thebutterflyeffect/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 17:47:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[entertainment]]></category>

		<category><![CDATA[The Butterfly Effect]]></category>

		<category><![CDATA[海报]]></category>

		<category><![CDATA[蝴蝶效应]]></category>

		<guid isPermaLink="false">http://www.pageleaf.org/2008/03/21/thebutterflyeffect/</guid>
		<description><![CDATA[     
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.pageleaf.org/wp-content/uploads/2008/03/thebutterflyeffect1.jpg" title="thebutterflyeffect1.jpg" rel="lightbox"><img src="http://www.pageleaf.org/wp-content/uploads/2008/03/thebutterflyeffect1.thumbnail.jpg" alt="thebutterflyeffect1.jpg" /></a> <a href="http://www.pageleaf.org/wp-content/uploads/2008/03/thebutterflyeffect4.jpg" title="thebutterflyeffect4.jpg" rel="lightbox"><img src="http://www.pageleaf.org/wp-content/uploads/2008/03/thebutterflyeffect4.thumbnail.jpg" alt="thebutterflyeffect4.jpg" /></a> <a href="http://www.pageleaf.org/wp-content/uploads/2008/03/thebutterflyeffect5.jpg" title="thebutterflyeffect5.jpg" rel="lightbox"><img src="http://www.pageleaf.org/wp-content/uploads/2008/03/thebutterflyeffect5.thumbnail.jpg" alt="thebutterflyeffect5.jpg" /></a> <a href="http://www.pageleaf.org/wp-content/uploads/2008/03/thebutterflyeffect6.jpg" title="thebutterflyeffect6.jpg" rel="lightbox"><img src="http://www.pageleaf.org/wp-content/uploads/2008/03/thebutterflyeffect6.thumbnail.jpg" alt="thebutterflyeffect6.jpg" /></a> <a href="http://www.pageleaf.org/wp-content/uploads/2008/03/thebutterflyeffect7.jpg" title="thebutterflyeffect7.jpg"></a> <a href="http://www.pageleaf.org/wp-content/uploads/2008/03/thebutterflyeffect8.jpg" title="thebutterflyeffect8.jpg"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pageleaf.org/2008/03/21/thebutterflyeffect/feed/</wfw:commentRss>
		</item>
		<item>
		<title>换成WP了！</title>
		<link>http://www.pageleaf.org/2008/03/20/wordpress/</link>
		<comments>http://www.pageleaf.org/2008/03/20/wordpress/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 12:04:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[personal]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.pageleaf.org/2008/03/20/wordpress/</guid>
		<description><![CDATA[之前的cn域名到期了，换成org，索性就程序也换了，模板也换下，哈哈！

]]></description>
			<content:encoded><![CDATA[<p>之前的cn域名到期了，换成org，索性就程序也换了，模板也换下，哈哈！</p>
<p><a href="http://www.pageleaf.org/wp-content/uploads/2008/03/post-13353-11817744501.jpg" title="post-13353-11817744501.jpg" rel="lightbox"><img src="http://www.pageleaf.org/wp-content/uploads/2008/03/post-13353-11817744501.jpg" alt="post-13353-11817744501.jpg" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pageleaf.org/2008/03/20/wordpress/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
