teve que alterar alguns dos valores de configuração via STSADM
Tamanho máximo do arquivo-pós: propriedade do Stsadm (Office SharePoint Server)
e
Tamanho do bloco de arquivos grandes: propriedade do Stsadm (Office SharePoint Server)
No MOSS, fizemos tudo isso para aumentar o tamanho do upload do arquivo, redefinir os iis, mas mesmo assim não queremos mais nenhum conselho.
UPDATE
Acabamos de ver o artigo da Scott Gu - link e o exemplo de JS link
Então, precisamos dizer que este é o II6 no win2k3
Atualização 2
ainda não está trabalhando com prejuízo, alguém ajuda?
In SharePoint 3.0 Central Adminisration, Application Management tab, and Web application general settings configure the Maximum upload size to a maximum of 2047 MB. - We set ours to 250MB
In Internet Information Services on the properties of the virtual server increase the Connection Timeout to greater than default 120 seconds depending on the time to upload large files in your environment for example, 360 seconds. - We set ours to 600 Secs
Configure the web.config for the _layouts web.config with On the SharePoint server change C:\Program Files\Common Files\Microsoft Shared\web server extensions\TEMPLATE\LAYOUTS\web.config with an executionTimeout appropriate for the file size you are uploading. An example is included below. from: to: executionTimeout="999999" maxRequestLength="2097151" />
teve que alterar alguns dos valores de configuração via STSADM
Tamanho máximo do arquivo-pós: propriedade do Stsadm (Office SharePoint Server)
e
Tamanho do bloco de arquivos grandes: propriedade do Stsadm (Office SharePoint Server)
Você também precisa adicionar o seguinte ao seu web.config
</System.Workflow.ComponentModel.WorkflowCompiler>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="262144000" />
</requestFiltering>
</security>
</system.webServer>
Veja aqui para artigo original