估计是IIS的权限问题,先尝试赋予访问IIS的用户写入权限,如果不行,创建一个新的程序池,模式为本地系统,然后把使用了eWebEditor的网站的程序池改为你新创建的这个...

解决方案 »

  1.   

    2003中IIS6默认只运行上传200K的附件.原帖子:http://www.zy51.com/bbsxp/ShowPost.asp?id=10369该问题发生在IIS6.0 中.其实不是问题,估计ms在涉及iis6.0中故意限制文件上传附近大小的.默认为200K
    ASP错误:0104:0x80004005 
    最近论坛(DVBBS7.0SP2,Windows2003,IIS6.0)总在上传大文件时出错,论坛限制是500k,但往往传个200、300的文件就报错,错误提示是
    Request 对象 错误 \'ASP 0104 : 80004005\' 不允许操作 /upload.inc,行 80 上网查到一篇文档,是这样写的:'ASP 0104 : 80004005' Operation not Allowed Solution Question: --------------------------------------------------------------------------------Request object error 'ASP 0104 : 80004005' Operation not Allowed Answer: --------------------------------------------------------------------------------Yes, Pure ASP Upload supports uploading large files on the Windows 2003 server. However:IIS6.0 prevent the upload of files more than +200Kb. So you need to make some changes in the default IIS settings first.BackgroundFor IIS6.0 users, the AspMaxRequestEntityAllowed property specifies the maximum number of bytes allowed in the entity body of an ASP request. If a Content-Length header is present and specifies an amount of data greater than the value of AspMaxRequestEntityAllowed, IIS returns a 403 error response. This property is related in function to MaxRequestEntityAllowed, but is specific to ASP request. Whereas you might set the MaxRequestEntityAllowed property to 1 MB at the general World Wide Web Publishing Service (WWW Service) level, you may choose to set AspMaxRequestEntityAllowed to a lower value, if you know that your specific ASP applications handle a smaller amount of data.SolutionOpen your metabase.XML which is located in c:\Windows\System32\Inetsrv find the line "AspMaxRequestEntityAllowed" and change it to "1073741824". This is 1GB - of course you can enter another value to suite your needs.NOTE: Before you edit the file, be sure to stop the IIS service first or else you won't be able to save the file.按照这个方法,问题很好地解决了有几点要说明的:必须先关闭IIS服务:在IIS属性中选中“允许直接编辑配置数据库”,然后。在服务里关闭iis admin service服务否则即使改动了metabase.xml文件也没有用,会提示文件正在使用无法保存另外,ASPMaxRequestEntityAllowed参数是以比特作为单位的,默认的是204800,即200K最后重启IIS最好重启一下服务器iis admin serviceEnjoy youself附:微软解释http://www.microsoft.com/downloads/details.aspx?FamilyId=56FC92EE-A71A-4C73-B628-ADE629C89499
      

  2.   

    估计是IIS的权限问题,先尝试赋予访问IIS的用户写入权限,如果不行,创建一个新的程序池,模式为本地系统,然后把使用了eWebEditor的网站的程序池改为你新创建的这个...
    还有就是你开始iis的父目录支持
      

  3.   

    因为WIN2003在网络安全性上比WIN2000多了一些控制,而默认的安全配置就造成这种情况。