2012-06-11 40 views

回答

11

ASFAIK,在内容搬运工级别没有硬性限制。但是,IIS对文件上载的默认限制为30 MB。根据您的需要,您可以将web.config中的值增加到更高的值。 参考链接上增加限制:http://sdllivecontent.sdl.com/LiveContent/content/en-US/SDL_ContentPorter_2009_SP1/task_CCFED8DFFA9A4E138DEA72FBDF4C18AD

<system.web> 
     <httpRuntime maxRequestLength="209715200"/> 
</system.web> 
<security> 
    <requestFiltering> 
    <requestLimits maxAllowedContentLength="209752100" /> 
    </requestFiltering> 
</security> 

的web.config中上述配置值将限制设置为200 MB。

修改完成后,请不要忘记启动Tridion核心服务,内容porter服务和IIS重置。

希望这些信息对您有所帮助。

相关问题