Re: You are probably hitting the file upload limit of IIS7.By default in IIS 7 requestFiltering has the MaxAllowedContentLength property enabled.It specifies, in bytes, the maximum length of the content in a request. The default is 30MB.

  •  07-30-2009, 5:16 AM

    Re: You are probably hitting the file upload limit of IIS7.By default in IIS 7 requestFiltering has the MaxAllowedContentLength property enabled.It specifies, in bytes, the maximum length of the content in a request. The default is 30MB.

    This is the HTML code, please note that now with Mozilla Firefox works fine, the problem is with Google Chrome
     
     
    ---------------
     
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>
            Allegati richieste
        </title>
        <link href="demo.css" rel="stylesheet" type="text/css"  ></head>
    <body>
        <div class="demo">
                            
            <!-- do not need enctype="multipart/form-data" -->
            <form id="form1" method="POST">
                <fieldset><legend>Richiesta</legend><table><tr><td class=fld>Req#</td><td class=val>18351</td></tr><tr><td class=fld>Priorità</td>    <td class=val>Urgente</td>  </tr>  <tr>    <td class=fld>Categoria</td>    <td class=val>      Richiesta intervento/Ced    </td>  </tr>  <tr>    <td class=fld>Aperta da</td>    <td class=val>Fabrizio Vola</td>  </tr>  <tr>    <td class=fld>Utente di destinazione</td>    <td class=val>Enzo Ippolito</td>  </tr></table></fieldset><button id='myuploaderButton' onclick='return false;'>Selezionare l'allegato</button><input type='hidden' id='myuploader' name='myuploader' autocomplete='off' /><script type='text/javascript' src='phpuploader/ajaxuploaderresource.php?type=script'></script><img id='AjaxUploaderFiles_Loader' UniqueID='myuploader'  Namespace='CuteWebUI' UploadModuleNotInstall='1' src='phpuploader/ajaxuploaderresource.php?type=file&amp;file=continuous.gif' InsertButtonID='myuploaderButton' ResourceHandler='phpuploader/ajaxuploaderresource.php' UploadUrl='phpuploader/ajaxuploaderhandler.php' MaxSizeKB='1024000' CancelUploadMsg='Cancel upload' CancelAllMsg='Cancel all Uploads' UploadingMsg='Uploading..' UploadType='Auto' ShowProgressBar='1' ShowProgressInfo='1' NumFilesShowCancelAll='2' PanelWidth='360' BarHeight='20' InfoStyle='padding-left:3px;font:normal 12px Tahoma;' BarStyle='Continuous' BorderStyle='border:1px solid #444444;' onload='this.style.display=&quot;none&quot; ; CuteWebUI_AjaxUploader_Initialize(this.id);' onerror='this.onload()' ContextValue='TODO' />        </form>
            
            <br/><br/>
                
                            
        </div>
    </body>
    </html>
View Complete Thread