2012-06-11 71 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重置。

希望這些信息對您有所幫助。

相關問題