Tamanho do upload do MOSS?

1

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?

  1. 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

    1. 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

    2. 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" />

    
por splattne 01.09.2009 / 14:15

2 respostas

1

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)

    
por 04.09.2009 / 08:29
1

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

    
por 01.09.2009 / 14:46