<?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; 2009 &#187; 四月</title>
	<atom:link href="http://ale.net.cn/blog/2009/04/feed/" rel="self" type="application/rss+xml" />
	<link>http://ale.net.cn/blog</link>
	<description>没有句号的梦想</description>
	<lastBuildDate>Thu, 26 Aug 2010 15:15:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>XAMPP访问出现Access forbidden!</title>
		<link>http://ale.net.cn/blog/2009/04/xampp%e8%ae%bf%e9%97%ae%e5%87%ba%e7%8e%b0access-forbidden/</link>
		<comments>http://ale.net.cn/blog/2009/04/xampp%e8%ae%bf%e9%97%ae%e5%87%ba%e7%8e%b0access-forbidden/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 09:09:13 +0000</pubDate>
		<dc:creator>ale</dc:creator>
				<category><![CDATA[软件]]></category>
		<category><![CDATA[xampp]]></category>

		<guid isPermaLink="false">http://ale.net.cn/blog/?p=17</guid>
		<description><![CDATA[同样的httpd.conf配置文件，本机上运行XAMPP，打开网站就出现错误。
Access forbidden!
You don&#8217;t have permission to access the requested directory. There is either no index document or the directory is read-protected.
If you think this is a server error, please contact the webmaster.
Error 403
解决方法
&#60;Directory /&#62;
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
&#60;/Directory&#62;
修改 Deny from all 为 Deny from allow
]]></description>
			<content:encoded><![CDATA[<p>同样的httpd.conf配置文件，本机上运行XAMPP，打开网站就出现错误。</p>
<h2>Access forbidden!</h2>
<p>You don&#8217;t have permission to access the requested directory. There is either no index document or the directory is read-protected.</p>
<p>If you think this is a server error, please contact the webmaster.</p>
<h2>Error 403</h2>
<p>解决方法</p>
<p>&lt;Directory /&gt;<br />
    Options FollowSymLinks<br />
    AllowOverride None<br />
    Order deny,allow<br />
    Deny from all<br />
&lt;/Directory&gt;</p>
<p>修改 Deny from all 为 Deny from allow</p>
]]></content:encoded>
			<wfw:commentRss>http://ale.net.cn/blog/2009/04/xampp%e8%ae%bf%e9%97%ae%e5%87%ba%e7%8e%b0access-forbidden/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Studio 5.5 中文界面设置及中文乱码解决方法</title>
		<link>http://ale.net.cn/blog/2009/04/zend-studio-%e4%b8%ad%e6%96%87%e7%95%8c%e9%9d%a2%e8%ae%be%e7%bd%ae%e5%8f%8a%e4%b8%ad%e6%96%87%e4%b9%b1%e7%a0%81%e8%a7%a3%e5%86%b3%e6%96%b9%e6%b3%95/</link>
		<comments>http://ale.net.cn/blog/2009/04/zend-studio-%e4%b8%ad%e6%96%87%e7%95%8c%e9%9d%a2%e8%ae%be%e7%bd%ae%e5%8f%8a%e4%b8%ad%e6%96%87%e4%b9%b1%e7%a0%81%e8%a7%a3%e5%86%b3%e6%96%b9%e6%b3%95/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 05:45:54 +0000</pubDate>
		<dc:creator>ale</dc:creator>
				<category><![CDATA[软件]]></category>
		<category><![CDATA[Zend Studio]]></category>

		<guid isPermaLink="false">http://ale.net.cn/blog/?p=12</guid>
		<description><![CDATA[Zend Studio 中文界面设置及中文乱码解决方法]]></description>
			<content:encoded><![CDATA[<p>更改desktop_options.xml设置。</p>
<p>desktop_options.xml一般在系统盘位置如下：C:\Documents and Settings\Administrator\ZDE\config_5.5\。</p>
<p>1、中文界面设置方法：</p>
<p>&lt;customized_property ID=&#8221;desktop.language&#8221;&gt;<br />
  &lt;locale language=&#8221;en&#8221; country=&#8221;" variant=&#8221;"/&gt;<br />
&lt;/customized_property&gt;</p>
<p>把language=&#8221;en&#8221;改为language=&#8221;zh&#8221;</p>
<p>2、中文乱码解决方法：</p>
<p>&lt;customized_property ID=&#8221;editing.encoding&#8221;&gt;<br />
   &lt;encoding name=&#8221;default&#8221;/&gt;<br />
  &lt;/customized_property&gt;</p>
<p>把encoding name=&#8221;default&#8221;改为encoding name=&#8221;UTF-8&#8243;</p>
]]></content:encoded>
			<wfw:commentRss>http://ale.net.cn/blog/2009/04/zend-studio-%e4%b8%ad%e6%96%87%e7%95%8c%e9%9d%a2%e8%ae%be%e7%bd%ae%e5%8f%8a%e4%b8%ad%e6%96%87%e4%b9%b1%e7%a0%81%e8%a7%a3%e5%86%b3%e6%96%b9%e6%b3%95/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>去除鼠标右键菜单的&#8221;用阿里旺旺发送此文件&#8230;&#8221;</title>
		<link>http://ale.net.cn/blog/2009/04/%e5%8e%bb%e9%99%a4%e9%bc%a0%e6%a0%87%e5%8f%b3%e9%94%ae%e8%8f%9c%e5%8d%95%e7%9a%84%e7%94%a8%e9%98%bf%e9%87%8c%e6%97%ba%e6%97%ba%e5%8f%91%e9%80%81%e6%ad%a4%e6%96%87%e4%bb%b6/</link>
		<comments>http://ale.net.cn/blog/2009/04/%e5%8e%bb%e9%99%a4%e9%bc%a0%e6%a0%87%e5%8f%b3%e9%94%ae%e8%8f%9c%e5%8d%95%e7%9a%84%e7%94%a8%e9%98%bf%e9%87%8c%e6%97%ba%e6%97%ba%e5%8f%91%e9%80%81%e6%ad%a4%e6%96%87%e4%bb%b6/#comments</comments>
		<pubDate>Sun, 19 Apr 2009 14:58:13 +0000</pubDate>
		<dc:creator>ale</dc:creator>
				<category><![CDATA[电脑]]></category>
		<category><![CDATA[软件]]></category>
		<category><![CDATA[旺旺]]></category>

		<guid isPermaLink="false">http://ale.net.cn/blog/?p=9</guid>
		<description><![CDATA[通过修改注册表去除鼠标右键菜单的"用阿里旺旺发送此文件..."]]></description>
			<content:encoded><![CDATA[<p>装了最新版本的阿里旺旺，右键任何文件菜单中都会出现用阿里旺旺发送此文件。点右键的时候，经常会点错，打开旺旺，旺旺的设置里又没有去除的选项，真可恶。针对经常用旺旺的用户，这个右键功能或许很人性，但并不是各个用户都是经常用旺旺的。现在都讲交互体验，给用户加了，你也得让用户可以方便地删吧。不厚道……</p>
<p>他们不给删除功能，我们自己删。自力更生，丰衣足食。删除方法为修改注册表。</p>
<p><strong>1、打开注册表</strong></p>
<p>点击开始菜单再点击运行（或windows键+r键），输入 regedit，</p>
<p><strong>2、按Ctrl+F，查找 aliimext.dll，</strong></p>
<p>会发现 aliimext.dll 在 HKEY_CLASSES_ROOT\CLSID\{0DE1378D-F811-40E6-B60A-1CC56F57D3E9}\InprocServer32下面。</p>
<p><strong>3、删除含aliimext.dll的这个项即可。<span style="color: #ff0000;">为避免意外，删除前请备份注册表</span>。</strong></p>
<p>本文操作不能彻底删除阿里旺旺右键菜单的&#8221;用阿里旺旺发送此文件&#8230;&#8221;，彻底删除方法请看底下链接。</p>
<p><a title="Permanent Link to 彻底删除邪恶的阿里旺旺右键" rel="bookmark" href="http://ale.net.cn/blog/2009/07/%e5%bd%bb%e5%ba%95%e5%88%a0%e9%99%a4%e9%82%aa%e6%81%b6%e7%9a%84%e9%98%bf%e9%87%8c%e6%97%ba%e6%97%ba%e5%8f%b3%e9%94%ae/"><span style="color: #879e36;">彻底删除邪恶的阿里旺旺右键</span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://ale.net.cn/blog/2009/04/%e5%8e%bb%e9%99%a4%e9%bc%a0%e6%a0%87%e5%8f%b3%e9%94%ae%e8%8f%9c%e5%8d%95%e7%9a%84%e7%94%a8%e9%98%bf%e9%87%8c%e6%97%ba%e6%97%ba%e5%8f%91%e9%80%81%e6%ad%a4%e6%96%87%e4%bb%b6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>一个纯属自己学习玩乐的小地盘</title>
		<link>http://ale.net.cn/blog/2009/04/%e6%88%91%e7%9a%84%e5%8d%9a%e5%ae%a2%e5%87%a0%e7%bb%8f%e5%91%a8%e6%8a%98%ef%bc%8c%e4%bb%8a%e6%97%a5%e9%87%8d%e6%96%b0%e5%86%8d%e6%9d%a5/</link>
		<comments>http://ale.net.cn/blog/2009/04/%e6%88%91%e7%9a%84%e5%8d%9a%e5%ae%a2%e5%87%a0%e7%bb%8f%e5%91%a8%e6%8a%98%ef%bc%8c%e4%bb%8a%e6%97%a5%e9%87%8d%e6%96%b0%e5%86%8d%e6%9d%a5/#comments</comments>
		<pubDate>Sun, 19 Apr 2009 14:31:23 +0000</pubDate>
		<dc:creator>ale</dc:creator>
				<category><![CDATA[自言自语]]></category>

		<guid isPermaLink="false">http://ale.net.cn/blog/?p=3</guid>
		<description><![CDATA[我的博客几经周折。建了几次，也停了几次。以前收集的众多资料也遗失殆尽。
这次重新开张，希望能保护的好一点。
一个纯属自己学习玩乐的小地盘。
]]></description>
			<content:encoded><![CDATA[<p>我的博客几经周折。建了几次，也停了几次。以前收集的众多资料也遗失殆尽。</p>
<p>这次重新开张，希望能保护的好一点。</p>
<p>一个纯属自己学习玩乐的小地盘。</p>
]]></content:encoded>
			<wfw:commentRss>http://ale.net.cn/blog/2009/04/%e6%88%91%e7%9a%84%e5%8d%9a%e5%ae%a2%e5%87%a0%e7%bb%8f%e5%91%a8%e6%8a%98%ef%bc%8c%e4%bb%8a%e6%97%a5%e9%87%8d%e6%96%b0%e5%86%8d%e6%9d%a5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
