<?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://blog.cike.org/tag/%e4%b8%bb%e6%9c%ba/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.cike.org</link>
	<description>刘益民中文网</description>
	<lastBuildDate>Tue, 28 Jun 2011 00:33:18 +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>Discuz!NT论坛安装您没有对C:\WINDOWS\TEMP\ 文件夹访问权限</title>
		<link>http://blog.cike.org/2007/discuz-temp/</link>
		<comments>http://blog.cike.org/2007/discuz-temp/#comments</comments>
		<pubDate>Mon, 21 May 2007 18:59:01 +0000</pubDate>
		<dc:creator>cike</dc:creator>
				<category><![CDATA[无名站长]]></category>
		<category><![CDATA[Discuz]]></category>
		<category><![CDATA[主机]]></category>
		<category><![CDATA[安装]]></category>
		<category><![CDATA[权限]]></category>
		<category><![CDATA[论坛]]></category>

		<guid isPermaLink="false">http://temp.cike.org/2007/05/discuznt%e8%ae%ba%e5%9d%9b%e5%ae%89%e8%a3%85%e6%82%a8%e6%b2%a1%e6%9c%89%e5%af%b9cwindowstemp-%e6%96%87%e4%bb%b6%e5%a4%b9%e8%ae%bf%e9%97%ae%e6%9d%83%e9%99%90/</guid>
		<description><![CDATA[Discuz!NT论坛安装WIN2003下：您没有对C:\WINDOWS\TEMP\ 文件夹访问权限 WIN2000下：您没有对C:\Documents and Settings\CIKEORG\ASPNET\Local Settings\Temp\文件夹访问权限解决方案<br/> <a href="http://blog.cike.org/2007/discuz-temp/">继续阅读 <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Discuz!NT</strong>论坛安装WIN2003下：<strong>您没有对C:\WINDOWS\TEMP\ 文件夹访问权限</strong></p>
<p>WIN2000下：<strong>您没有对C:\Documents and Settings\CIKEORG\ASPNET\Local Settings\Temp\ 文件夹访问权限</strong></p>
<p>据说是<strong>ASP.NET</strong>配置自身造成的</p>
<p>windows 2000 服务器需在DZ安装目录上设置，属性》安全》高级》user》查看/编辑》赋予：遍历文件夹/运行文件+列出文件夹/记取数据+创建文件/写入数据+创建文件夹/附加数据 权限，如果还不行再为C:\Documents and Settings\CIKEORG\ASPNET\Local Settings\Temp\设置同样的USER权限</p>
<p>至于权限给的是不是过火了，我不知道</p>
<p>Win2003解决方法一样</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cike.org/2007/discuz-temp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>虚拟主机实现二级域名绑定的ASP代码</title>
		<link>http://blog.cike.org/2007/vhost-domain/</link>
		<comments>http://blog.cike.org/2007/vhost-domain/#comments</comments>
		<pubDate>Mon, 12 Mar 2007 12:09:55 +0000</pubDate>
		<dc:creator>cike</dc:creator>
				<category><![CDATA[无名站长]]></category>
		<category><![CDATA[Asp]]></category>
		<category><![CDATA[主机]]></category>
		<category><![CDATA[域名]]></category>

		<guid isPermaLink="false">http://temp.cike.org/2007/04/%e4%b8%8d%e6%94%af%e6%8c%81%e6%b3%9b%e8%a7%a3%e6%9e%90%e8%99%9a%e6%8b%9f%e4%b8%bb%e6%9c%ba%e7%bb%91%e5%ae%9a%e5%a4%9a%e5%9f%9f%e5%90%8d%e7%9a%84asp%e4%bb%a3%e7%a0%81/</guid>
		<description><![CDATA[市面上IDC的ASP空间几乎没有支持子目录绑定的，没有.htaccess的支持确定很难做的像Linux主机那样可定制，服务器层面办不到只有用代码端来模拟了，思路很简单，取域名判断再include不同文件 <a href="http://blog.cike.org/2007/vhost-domain/">继续阅读 <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>市面上IDC的ASP空间几乎没有支持子目录绑定的，没有.htaccess的支持确定很难做的像Linux主机那样可定制，服务器层面办不到只有用代码端来模拟了，思路很简单，取域名判断再include不同文件</p>
<p>&lt;%</p>
<p>select case request.servervariables(“http_host”)<br />
case “www.cike.org”</p>
<p>%&gt;<br />
&lt;!&#8211;#include file=”www.asp”&#8211;&gt;<br />
&lt;%<br />
case “3g.cike.org”<br />
%&gt;<br />
&lt;!&#8211;#include file=”3g.asp”&#8211;&gt;<br />
&lt;%<br />
&#8230;&#8230;</p>
<p>end select<br />
%&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cike.org/2007/vhost-domain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

