Godaddy的windows主机WordPress报500错误:500 – Internal

Godaddy的windows主机WordPress报500错误:500 – Internal

时间:2011-10-16 01:52来源:未知 作者:最模板 点击:
最模板 把godaddy的linux主机换成了Windows主机,运行WordPress后台,设置保存的时候报500出错,代码如下: 500 – Internal server error. There is a problem with the resource you are looking for, and it cannot be displ
 最模板把godaddy的linux主机换成了Windows主机,运行WordPress后台,设置保存的时候报500出错,代码如下:

500 – Internal server error.
There is a problem with the resource you are looking for, and it cannot be displayed.

首先检查文件夹的权限,看是否有足够的读写权限。读写权限都有的话那就应该是配置问题。

经测试发现传很多网站程序时均报下500错误,后面上网查才明白,原来Godaddy的主机如果程序出错的话就直接报以下错误,即使你是刚上传的WordPress程序,因为WordPress默认是没有配置的,肯定会报错提示你输入配置信息,而这刚好与Godaddy的主机相冲突,所以就会报如下错误,解决方法很简单,如果你用的Windows IIS6或者IIS7主机,把以下代码复制下来,命名为web.config上传至网站根目录即可。
我按如下方法上传到网站根目录后打开网站就进入了WordPress博客程序配置界面,配置完成后成功运行WordPress。
Windows IIS6的用户使用下面的代码
<configuration>
<system.web>
<customErrors mode=”Off”/>
<compilation debug=”true”/>
</system.web>
</configuration>

Windows IIS7的用户使用下面的代码

<configuration>
<system.webServer>
<httpErrors errorMode=”Detailed” />
<asp scriptErrorSentToBrowser=”true”/>
</system.webServer>
<system.web>
<customErrors mode=”Off”/>
<compilation debug=”true”/>
</system.web>
</configuration>

以上代码保存为web.config上传至wordpress网站根目录即可。注意是根目录,不是FTP的子目录!网站若是在子目录,那么这个也得放根目录,相对位置请注意!

(责任编辑:最模板)http://www.zuimoban.com/web/idc/1342.html