<?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; 网站相关</title>
	<atom:link href="http://www.chenxi.info/category/website/feed" rel="self" type="application/rss+xml" />
	<link>http://www.chenxi.info</link>
	<description>互联网和IT技术文章</description>
	<lastBuildDate>Tue, 27 Jul 2010 08:28:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>解决ewebeditor 2.8免费版在IE8下按钮无效的问题</title>
		<link>http://www.chenxi.info/ewebeditor-free-ie8.html</link>
		<comments>http://www.chenxi.info/ewebeditor-free-ie8.html#comments</comments>
		<pubDate>Tue, 13 Apr 2010 07:18:38 +0000</pubDate>
		<dc:creator>chenxi.info</dc:creator>
				<category><![CDATA[网站相关]]></category>

		<guid isPermaLink="false">http://www.chenxi.info/?p=398</guid>
		<description><![CDATA[解决ewebeditor 2.8免费版在IE8下按钮无效的问题]]></description>
			<content:encoded><![CDATA[<p>找到编辑器目录下include文件夹中的Editor.js文件，将其中的：</p>
<p><code> if (element.YUSERONCLICK) eval(element.YUSERONCLICK + "anonymous()");<br />
</code></p>
<p>改为如下：</p>
<p><code>   if((navigator.appVersion.match(/MSIE 7./i)=='MSIE 7.' &amp;&amp; navigator.appVersion.match(/Trident/i)=='Trident') || navigator.appVersion.match(/MSIE 8./i)=='MSIE 8.')<br />
   {<br />
      if (element.YUSERONCLICK) eval(element.YUSERONCLICK + "onclick(event)");<br />
   }else{<br />
      if (element.YUSERONCLICK) eval(element.YUSERONCLICK + "anonymous()");<br />
   }</code></p>
<p>这样就可以在IE6/7/8下面同时使用了。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chenxi.info/ewebeditor-free-ie8.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>利用javascript进行301重定向</title>
		<link>http://www.chenxi.info/javascript-301-redirect.html</link>
		<comments>http://www.chenxi.info/javascript-301-redirect.html#comments</comments>
		<pubDate>Fri, 05 Feb 2010 02:39:21 +0000</pubDate>
		<dc:creator>chenxi.info</dc:creator>
				<category><![CDATA[网站相关]]></category>
		<category><![CDATA[301]]></category>

		<guid isPermaLink="false">http://www.chenxi.info/?p=373</guid>
		<description><![CDATA[鉴于目前国内网络环境形势严峻，一些需要更换域名的朋友可以使用301重定向不影响以前域名的访问和搜索引擎的收录。]]></description>
			<content:encoded><![CDATA[<p>鉴于目前国内网络环境形势严峻，一些需要更换域名的朋友可以使用301重定向不影响以前域名的访问和搜索引擎的收录。</p>
<p>301重定向（也叫301转向，301跳转）对网站优化所起的作用是不可忽视的，尤其是针对SE（搜索引擎）处理网站页面权重的时候，更加显得重要。网站换了新域名，默认首页需要跳转等，从SEO角度来说，我们都建议使用301重定向，而不是JS跳转或META REFRESH或302转向，这些很容易引来SE的惩罚。<span id="more-373"></span></p>
<p><strong>什么是301重定向呢？</strong></p>
<p>301重定向是当用户或搜索引擎向网站服务器发出浏览请求时，服务器返回的HTTP数据流中头信息 (header)中的状态码的一种，表示本网页永久性转移到另一个地址。其它常见的状态码还包括，200表示一切正常，404网页找不到，302暂时转向，等等。</p>
<p><strong>为什么要用301转向？</strong></p>
<p>网址转向方法主要包括：301转向，302转向，JavaScript转向，PHP/ASP/CGI转向，META REFRESH网页META刷新等。302转向可能会有URL规范化问题。其它方法都是常用的作弊手法，当然不是说不可以正当地用，方法本身没有错，但被作弊者用多了，搜索引擎对这些可疑的转向都很敏感。何必冒险呢。</p>
<p>javascript的301重定向代码</p>
<p><code>&lt;script language=javascript&gt;<br />
if (document.domain =='yourolddomain') <br />
    this.location = "http://yourdomain" + this.location.pathname + this.location.search;<br />
&lt;/script&gt;<br />
</code></p>
<p>ASP下的301重定向</p>
<p><code>&lt;%@ Language=VBScript %&gt;</p>
<p>&lt;%</p>
<p>Response.Status="301 Moved Permanently"</p>
<p>Response.AddHeader "Location","http://yourdomain"</p>
<p>%&gt;<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chenxi.info/javascript-301-redirect.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>使用Linux主机的几点注意事项</title>
		<link>http://www.chenxi.info/linux-host-note.html</link>
		<comments>http://www.chenxi.info/linux-host-note.html#comments</comments>
		<pubDate>Wed, 20 Jan 2010 02:20:40 +0000</pubDate>
		<dc:creator>chenxi.info</dc:creator>
				<category><![CDATA[经验技巧]]></category>
		<category><![CDATA[网站相关]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.chenxi.info/?p=369</guid>
		<description><![CDATA[最近越来越多的朋友在使用国外主机，而国外很大一部分主机都是Linux主机，往往把PHP程序上传到空间总是出现各种问题，现在把几点需要注意的列出来和大家分享。]]></description>
			<content:encoded><![CDATA[<p>最近越来越多的朋友在使用国外主机，而国外很大一部分主机都是Linux主机，往往把PHP程序（如discuz和wordpress等等）上传到空间总是出现各种问题，现在把几点需要注意的列出来和大家分享：</p>
<p>一、不要使用记事本编辑wp-config.php和.htaccess<br />
用记事本编辑wp-config.php和.htaccess，会改变结构编码，这里推荐大家使用Notepad++</p>
<p>二、上传的时候使用二进制上传<br />
基本上的PHP程序都要求二进制上传，推荐大家使用Cuteftp或是使用FlashFXP。<br />
Cuteftp设置方法：站点管理器——找到你需要编辑的站点——属性——类型——传输类型——二进制，确定即可。<br />
FlashFXP设置方法：会话——传输模式——二进制。</p>
<p>注意以上两点，我想应该不会有什么问题了。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chenxi.info/linux-host-note.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>雅虎特价域名注册仅需1.99美元</title>
		<link>http://www.chenxi.info/yahoo-domain-199-dollar.html</link>
		<comments>http://www.chenxi.info/yahoo-domain-199-dollar.html#comments</comments>
		<pubDate>Mon, 30 Nov 2009 13:39:37 +0000</pubDate>
		<dc:creator>chenxi.info</dc:creator>
				<category><![CDATA[网站相关]]></category>
		<category><![CDATA[域名]]></category>

		<guid isPermaLink="false">http://www.chenxi.info/?p=319</guid>
		<description><![CDATA[雅虎仍可注册到 1.99 美元的域名，包括 .COM .NET .ORG .BIZ .INFO .US 六种后缀。]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.chenxi.info/wp-content/uploads/2009/11/yahoo-small-business.gif"><img class="alignnone size-full wp-image-324" title="yahoo-small-business" src="http://www.chenxi.info/wp-content/uploads/2009/11/yahoo-small-business.gif" alt="yahoo-small-business" width="328" height="33" /></a></p>
<p>虽然目前域名价格不高，不过雅虎仍可注册到 1.99 美元的域名，包括 .COM .NET .ORG .BIZ .INFO .US 六种后缀。</p>
<p><a href="http://www.chenxi.info/wp-content/uploads/2009/11/yahoo199.jpg"><img class="alignnone size-full wp-image-320" title="yahoo199" src="http://www.chenxi.info/wp-content/uploads/2009/11/yahoo199.jpg" alt="yahoo199" width="500" height="399" /></a></p>
<p>注册优惠链接：<a href="http://smallbusiness.yahoo.com/domains/?p=BESTDEAL" target="_blank">http://smallbusiness.yahoo.com/domains/?p=BESTDEAL</a></p>
<p>当然，你需要一个雅虎账号，并且每个账号只允许注册一个域名。在付款方面，目前Yahoo仅支持信用卡或PayPal付款，Yahoo的域名只适合第一年这次，以后续费就很贵，发现第二年续费要$34.95，不过没事，域名注册超过60天就可以转出，可以转到name.com或者Godaddy都可以，当然转到国内也可以。</p>
<p>目前已经注册一个了，感觉还不错，如果有朋友不方便注册我可以代注册。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chenxi.info/yahoo-domain-199-dollar.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>域名管理控制面板地址汇总</title>
		<link>http://www.chenxi.info/domain-control-panel-address.html</link>
		<comments>http://www.chenxi.info/domain-control-panel-address.html#comments</comments>
		<pubDate>Mon, 07 Sep 2009 05:50:32 +0000</pubDate>
		<dc:creator>chenxi.info</dc:creator>
				<category><![CDATA[网站相关]]></category>
		<category><![CDATA[域名]]></category>

		<guid isPermaLink="false">http://www.chenxi.info/?p=224</guid>
		<description><![CDATA[ENOM域名控制面板：http://access.enom.com/
商务中国域名控制面板：http://www.bizcn.com/domainportal
CNOBIN域名控制面板：http://www.cnobin.com/domainportal
新网互联域名控制面板：http://mgt.dns.com.cn/
新网域名控制面板：http://dcp.xinnet.com/
ONLINENIC域名控制面板：http://www.dns-diy.com/
通联无限域名控制面板：http://partner.topbiz.cn/manage/management.htm
万网域名控制面板：http://diy.hichina.com/cgi-bin/login
中资源域名控制面板：http://domain.cnolnic.com/
时代互联域名控制面板：http://www.todaynic.com/domainscp/domainLogin.php
]]></description>
			<content:encoded><![CDATA[<p>ENOM域名控制面板：<a href="http://access.enom.com/" target="_blank">http://access.enom.com/</a></p>
<p>商务中国域名控制面板：<a href="http://www.bizcn.com/domainportal" target="_blank">http://www.bizcn.com/domainportal</a></p>
<p>CNOBIN域名控制面板：<a href="http://www.cnobin.com/domainportal" target="_blank">http://www.cnobin.com/domainportal</a></p>
<p>新网互联域名控制面板：<a href="http://mgt.dns.com.cn/" target="_blank">http://mgt.dns.com.cn/</a></p>
<p>新网域名控制面板：<a href="http://dcp.xinnet.com/" target="_blank">http://dcp.xinnet.com/</a></p>
<p>ONLINENIC域名控制面板：<a href="http://www.dns-diy.com/" target="_blank">http://www.dns-diy.com/</a></p>
<p>通联无限域名控制面板：<a href="http://partner.topbiz.cn/manage/management.htm" target="_blank">http://partner.topbiz.cn/manage/management.htm</a></p>
<p>万网域名控制面板：<a href="http://diy.hichina.com/cgi-bin/login" target="_blank">http://diy.hichina.com/cgi-bin/login</a></p>
<p>中资源域名控制面板：<a href="http://domain.cnolnic.com/" target="_blank">http://domain.cnolnic.com/</a></p>
<p>时代互联域名控制面板：<a href="http://www.todaynic.com/domainscp/domainLogin.php" target="_blank">http://www.todaynic.com/domainscp/domainLogin.php</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chenxi.info/domain-control-panel-address.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jmail不能使用gmail邮箱发邮件</title>
		<link>http://www.chenxi.info/jmail-gmail.html</link>
		<comments>http://www.chenxi.info/jmail-gmail.html#comments</comments>
		<pubDate>Wed, 26 Aug 2009 08:11:21 +0000</pubDate>
		<dc:creator>chenxi.info</dc:creator>
				<category><![CDATA[经验技巧]]></category>
		<category><![CDATA[网站相关]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[jmail]]></category>

		<guid isPermaLink="false">http://www.chenxi.info/?p=211</guid>
		<description><![CDATA[虽然Gmail和Google企业邮箱开放SMTP，地址为smtp.gmail.com，也支持outlook或foxmail收发邮件，但是在使用Jmail组件发信时却不能使用。]]></description>
			<content:encoded><![CDATA[<p>虽然Gmail和Google企业邮箱开放SMTP，地址为smtp.gmail.com，也支持outlook或foxmail收发邮件，但是在使用Jmail组件发信时却不能使用。</p>
<p><span style="color: #ff0000;">据悉：Jmail是不支持SSL连接方式的，所以使用SSL连接发信的（如GMAIL）就无法使用此组件发信！</span></p>
<p>附：Jmail组件发信设置注意事项：<span id="more-211"></span></p>
<p>1、首先要确定你所使用的邮件支持SMTP发信，即可以使用微软自带的Outlook Express收发信。</p>
<p>    注：有些人疑惑为什么自己的163邮箱不能使用Outlook收发信，且看163发出的公告：（自2006年11月16日起，网易免费邮件系统的POP3及SMTP服务将暂停开通，此前已经开通POP3及SMTP服务的邮箱帐号则不受影响，仍然可以正常使用。）</p>
<p>2、确定服务器支持Jmail组件，SMTP服务器填写正确，发信用户名和密码填写正确。</p>
<p>3、注意发信用户名不是邮件地址，用户名可以与邮件地址相同，也可以不同（如163就不包括@符号及后面的部分），具体信息可以咨询邮件服务提供商。</p>
<p>4、注意发信的地址、标题和内容中请不要含有可能被过滤的词语，如字母AD的组合（用来表示此邮件是一封广告邮件）等。许多服务器上都装有信息过滤系统和防垃圾邮件的程序，这些程序可能会因此而阻止信件到达收件人的邮箱。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chenxi.info/jmail-gmail.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>使用NetBox取代IIS</title>
		<link>http://www.chenxi.info/netbox-iis.html</link>
		<comments>http://www.chenxi.info/netbox-iis.html#comments</comments>
		<pubDate>Tue, 21 Jul 2009 05:44:47 +0000</pubDate>
		<dc:creator>chenxi.info</dc:creator>
				<category><![CDATA[网站相关]]></category>
		<category><![CDATA[IIS]]></category>

		<guid isPermaLink="false">http://www.chenxi.info/?p=90</guid>
		<description><![CDATA[使用NetBOX编译后可以100%取代IIS，使用NetBOX编译后的系统和我们日常运行一个标准的Windows应用程序没有任何区别，彻底解决了Web应用的安装、维护和知识产权保护难题。]]></description>
			<content:encoded><![CDATA[<p>使用NetBOX编译后可以100%取代IIS，使用NetBOX编译后的系统和我们日常运行一个标准的Windows应用程序没有任何区别，彻底解决了Web应用的安装、维护和知识产权保护难题。</p>
<p>一、安装</p>
<p>1、安装NETBOX：</p>
<p>官方网站有安装程序下载：<a href="http://www.netbox.cn:88/download/index.htm" target="_blank">http://www.netbox.cn:88/download/index.htm</a>，版本 2.8.4128，下载后直接安装。</p>
<p>PS：官方网站不能下载，已经上传。<a href="http://www.chenxi.info/download/nbsetup.EXE"><img class="alignnone" src="http://www.chenxi.info/wp-content/uploads/down1.gif" alt="" width="188" height="56" /></a></p>
<p>2、创建一个空目录，如 D:\web（或其它），然后在在目录中创建一个新文件，并命名为：main.box，修改其内容如下：</p>
<p><code>Dim httpd<br />
Shell.Service.RunService "NBWeb", "NetBox Web Server", "NetBox Http Server Sample"<br />
Sub OnServiceStart()<br />
Set httpd = CreateObject("NetBox.HttpServer")<br />
If httpd.Create("", 80) = 0 Then<br />
Set host = httpd.AddHost("", "\www")<br />
host.EnableScript = true<br />
host.AddDefault "index.htm"<br />
host.AddDefault "index.asp"<br />
host.AddDefault "default.htm"<br />
host.AddDefault "default.asp"<br />
httpd.Start<br />
else<br />
Shell.Quit 0<br />
end if<br />
End Sub<br />
Sub OnServiceStop()<br />
httpd.Close<br />
End Sub<br />
Sub OnServicePause()<br />
httpd.Stop<br />
End Sub<br />
Sub OnServiceResume()<br />
httpd.Start<br />
End Sub</code></p>
<p>最后保存！</p>
<p>说明：<br />
（1）：如果你成功安装了网络盒子，那么他的后缀是可以被识别的，图标 为红色 .b 的样子<br />
（2）：我把上面代码的主要内容讲一下：</p>
<p>httpd.Create(&#8220;&#8221;, 80)是指使用80端口开设服务器，如果不喜欢，可以更改为别的！<br />
那么访问地址后面必须加 :端口号 才能正常访问</p>
<p>Set host = httpd.AddHost(&#8220;&#8221;, &#8220;\www&#8221;) 中的www就是你放网站程序的目录。也就是一定要与第二步将建立的目录名称相同！</p>
<p>host.AddDefault &#8220;index.htm&#8221; &#8211;\<br />
host.AddDefault &#8220;index.asp&#8221; | 这些就是指设置默认首页文件，<br />
host.AddDefault &#8220;default.htm&#8221; | 你可以自己更改，添加删除一行一个<br />
host.AddDefault &#8220;default.asp&#8221; &#8211;/</p>
<p>二、然后在D:\WEB下面创建一个名为 www 的目录，如：d:\web\www</p>
<p>将你的asp程序放到这个目录下。</p>
<p>三、调试运行</p>
<p>然后，我们双击运行 main.box，这时候，系统托盘处应该出现一个红色的 .b 样的小图标。<br />
好，我们打开浏览器，地址栏输入：127.0.0.1，或 localhost 看看：成功了！</p>
<p>说明：<br />
网络盒子的功能远远不止这些，上面仅仅是介绍了一些关于如何搭建能支持ASP的网络服务器，网络盒子的真正功能还等着大家去发掘呢？要知道，网络盒子才440KB，而它的增强手册（编程增强开发手册，包含常用技术文档。）却有5.8MB！</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chenxi.info/netbox-iis.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>保持良好习惯，网站数据及时备份</title>
		<link>http://www.chenxi.info/site-data-backup.html</link>
		<comments>http://www.chenxi.info/site-data-backup.html#comments</comments>
		<pubDate>Wed, 15 Jul 2009 03:08:55 +0000</pubDate>
		<dc:creator>chenxi.info</dc:creator>
				<category><![CDATA[网站相关]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[备份]]></category>

		<guid isPermaLink="false">http://www.chenxi.info/?p=51</guid>
		<description><![CDATA[网站出现意外，如服务器损坏，黑客攻击等，要想在最短的时间内恢复正常，最好的方法是使用备份的数据来恢复。]]></description>
			<content:encoded><![CDATA[<p>网站出现意外，如服务器损坏，黑客攻击等，要想在最短的时间内恢复正常，最好的方法是使用备份的数据来恢复。</p>
<p>尽管此次已经从google快照和baidu快照中恢复了部分数据，这次是个很大教训，不仅仅浪费时间，而且数据没有那么完整。</p>
<p>再次警告自己，网站数据一定要定期及时备份到自己的电脑里以防不测。</p>
<p>WordPress备份办法：<span id="more-51"></span></p>
<p><span style="color: #ff0000;"><strong>备份你的数据库：</strong></span>这个最为重要，你所有的文章和评论都在数据库内，别的丢了都可以再来，唯有数据库丢失了，损失将无比弥补。备份数据库可以通过 Wordpress 的数据库插件来进行备份，也可以通过phpMyAdmin 来进行备份。</p>
<p><span style="color: #ff0000;"><strong>备份你的主题：</strong></span>Wordpress 主题决定了网站的外观；虽然大部分的主题都可以直接从网上获取，但每个网友都会对主题进行大量的修改。因此，一定要备份好你的主题。</p>
<p><span style="color: #ff0000;"><strong>备份你的插件：</strong></span>Wordpress 插件延伸了网站的功能，请务必备份所有你使用的插件。</p>
<p><span style="color: #ff0000;"><strong>备份你的附件：</strong></span>包括你上传到网站的图片，文件等，也要做好备份。</p>
<p><span style="color: #ff0000;"><strong>备份你的配置文件：</strong></span>对于 Wordpress 而言，配置文件主要是指 wp-config.php 文件，这里面包括了你网站的数据库相关信息。此外，还要备份好你的 .htaccess 文件和 robots.txt 文件。前者 .htaccess 包含 Wordpress 自定义链接结构的信息，也包括一些其他你自定义的功能；后者 robots.tx 是告诉搜索引擎机器人如何抓取你网站的信息。这两个文件也务必做好备份。</p>
<p><span style="color: #ff0000;"><strong>备份其他修改过的文件：</strong></span>如果你对 Wordpress 程序其他部分进行过修改的话，修改过的文件也要做好备份。</p>
<p><span style="color: #ff0000;">因此，</span>不管你是刚刚开始建站的新手，还是已经磨练多年的经验丰富的老手，树立良好的安全意识和备份数据的习惯，都是非常重要的。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chenxi.info/site-data-backup.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NTFS分区下使用IIS</title>
		<link>http://www.chenxi.info/ntfs-iis.html</link>
		<comments>http://www.chenxi.info/ntfs-iis.html#comments</comments>
		<pubDate>Tue, 14 Jul 2009 13:22:58 +0000</pubDate>
		<dc:creator>chenxi.info</dc:creator>
				<category><![CDATA[网站相关]]></category>
		<category><![CDATA[IIS]]></category>

		<guid isPermaLink="false">http://www.chenxi.info/?p=10</guid>
		<description><![CDATA[　　经常有朋友问一个ASP程序装了IIS，但是网站能访问，就是不能进行一些操作，比如发帖子之类的，很是奇怪。最后问了一下高人、上网查了查，发现原来NTFS下使用IIS是会出问题的~
　　原来，NTFS的安全性设置比较好，未被授权访问文件夹的用户不能正常读写文件夹，导致远程用户不能正常访问网站。同时由于XP默认情况下，会隐藏文件夹属性选项的“安全”选项卡的，所以必须先取消“使用简单文件共享”，才能进行安全设置，把网站所在文件夹授权给iis用户所需要的权限，这样就可以正常访问了。
　　具体设置IUSER_权限的办法如下：
　　首先点击窗口菜单栏“工具”选项，选择“文件夹选项”，打开“文件夹选项”对话框，选择“查看”选项卡，勾去“使用简单文件共享（推荐）”项前面的勾，然后应用确定退出对话框，然后右击该文件夹，选择“属性”，接着选择“安全”选项卡，点击“添加”按钮，点击“高级”按钮，点击“查找”，在下面的查找结果中，选择IUSR_计算机名的用户，点击“确定”知道退出到刚才的最上层对话框，这时在“组或用户名称”文本框中将出现刚才所选择的用户，选择该用户，在下面的权限框中为该用户授予“修改”、“读取”和“写入”权限，点击应用确定关闭该对话框。
]]></description>
			<content:encoded><![CDATA[<p>　　经常有朋友问一个ASP程序装了IIS，但是网站能访问，就是不能进行一些操作，比如发帖子之类的，很是奇怪。最后问了一下高人、上网查了查，发现原来NTFS下使用IIS是会出问题的~</p>
<p>　　原来，NTFS的安全性设置比较好，未被授权访问文件夹的用户不能正常读写文件夹，导致远程用户不能正常访问网站。同时由于XP默认情况下，会隐藏文件夹属性选项的“安全”选项卡的，所以必须先取消“使用简单文件共享”，才能进行安全设置，把网站所在文件夹授权给iis用户所需要的权限，这样就可以正常访问了。</p>
<p>　　<span style="color: #ff0000;">具体设置IUSER_权限的办法如下：</span></p>
<p>　　<span id="more-10"></span>首先点击窗口菜单栏“工具”选项，选择“文件夹选项”，打开“文件夹选项”对话框，选择“查看”选项卡，勾去“使用简单文件共享（推荐）”项前面的勾，然后应用确定退出对话框，然后右击该文件夹，选择“属性”，接着选择“安全”选项卡，点击“添加”按钮，点击“高级”按钮，点击“查找”，在下面的查找结果中，选择IUSR_计算机名的用户，点击“确定”知道退出到刚才的最上层对话框，这时在“组或用户名称”文本框中将出现刚才所选择的用户，选择该用户，在下面的权限框中为该用户授予“修改”、“读取”和“写入”权限，点击应用确定关闭该对话框。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chenxi.info/ntfs-iis.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
