Whenever I try to upload a "larger" file, (in my case I am trying a 70MB file) I notice that after I click upload, the progress bar does not start or move, and eventuually I get the AJAX error stating that the communication with the server has timed out. This doesn't happen with smaller files (10MB, 20MB work fine).
Below are my web.config settings for httpRuntime element:
Code: XML
<httpRuntime maxRequestLength="1048576"
executionTimeout="3600"/>
I use an additional httpModule, so I removed that but it didn't help. I have checked the permissions & disk space for Anonymous ASPNet User at my web host, but that is all fine. Tracing is not enabled.
Below is my eo ajaxuploader control's code.
Code: HTML/ASPX
<eo:ajaxuploader runat="server" autopostback="true" clientsideonerror="UploadErrorHandler"
id="ctlFileUpload" maxfilecount="1" onfileuploaded="ctlFileUpload_FileUploaded"
rows="1" width="400px" tempfilelocation="~/acctmgr/sponsor/videouploadtemp" />
Code: C#
protected void ctlFileUpload_FileUploaded(object sender, EventArgs e)
{
// Get posted file
files = ctlFileUpload.PostedFiles;
// Upload File
bool success = UploadFile();
if (success)
{
// Hide input form, and show confirmation message
pnlVideos.Visible = false;
ctlFileUpload.Visible = false;
lblMsg.Text = "Thank you...";
}
else
lblMsg.Text = "Error...";
}
Perhaps I am missing something else? If you need additional information, please let me know...