Principale utente con più risposte
Errrore 404 con uploadify

Domanda
-
Ciao a tutti
sto utilizzando uploadify in un sito asp.net
Questo è il codice che utilizzo:
$("#fuNewVideo").uploadify({
'fileSizeLimit' : 'no limit',
'swf': '/Scripts/Uploadify/uploadify.swf',
'uploader': '/Handler/FileUpload.ashx',
'fileTypeDesc' : 'Video Files',
'fileTypeExts' : '<%= YouTube.VIDEO_FORMAT %>',
'queueSizeLimit' : 1,
'multi': false,
'auto': false,
'successTimeout': 3600,
'onUploadSuccess' : function(file, data, response) {
$('#loading').hide();
if(response)
{
var obj = jQuery.parseJSON(data);
if(obj.msg_error == '')
{
alert('ok');
}
else
{
alert(obj.msg_error);
}
}
else
{
alert('<%= Messaggi.ERR_UPLOAD_VIDEO %>');
}
},
'onUploadError' : function(file, errorCode, errorMsg, errorString) {
alert('<%= Messaggi.ERR_UPLOAD_VIDEO %>');
},
'onUploadStart' : function(file) {
$('#fuNewVideo').uploadify('settings','formData',{
'type' : 'video_trasmissione',
'id' : $('#<%= hdCodiceTrasmissione.ClientID %>').val(),
'title' : $('#txtNewVideoTitle').val(),
'category' : $('#<%= ddlNewVideoCategory.ClientID %>').val(),
'description' : $('#txtNewVideoDescription').val(),
'keywords' : $('#txtNewVideoKeywords').val(),
'data' : $('#txtNewVideoData').val()
});
}
});
Quando carico file di piccole dimensioni non ho nessun problema, ma quando ho provato a caricare un file di 80MB, la progressbar è arrivata al 100%(il file è presente nella cartella di upload) ma si è verificato l'evento 'onUploadError' dandomi come codice messaggio di errore 404 ed error code 200. Ho cercato un pò e alcuni dicono che è il percorso uploader sbagliato. Ma questo non è possibile perchè per file di piccole dimensioni non ho nessun problema.
Grazie mille
Risposte
-
Premetto che è la prima volta che sento parlare di Uploadify, ma il tuo problema sembra abbastanza noto.
Dovresti essere più "preciso" con le versioni, non riesco a trovare quale stai usando, è importante, forse non ricodi la versione precedente ma quella attuale sei di certo in grado di conoscerla.
#1: http://stackoverflow.com/questions/11402356/mvc3-uploadify-jquery-plugin-error-http-404-and-io-error
Viene suggerito di verificare quale errore 404 si sta ricevendo (grazie a onUploadError) e altri consigli/verifiche sulle impostazioni del sito.
Esiste un bug in uploadify (in una specifica versione) che per colpa di una richiesta HTTP non necessaria fa ottenere appunto un 404, mi pare ci sia il codice da modificare per risolvere il problema.
Forse è già stato fixato in una recente release, non ne ho idea.ciao
- Modificato Alessandro Piccione martedì 7 maggio 2013 21:18
- Proposto come risposta Luca Congiu [congiuluc]Moderator mercoledì 5 giugno 2013 19:37
- Contrassegnato come risposta Gemini78 giovedì 6 giugno 2013 15:18
Tutte le risposte
-
Prova ad aumentare il successTimeout:
'successTimeout': 36000,
CiaoLuca Congiu (congiuluc)
Personal Blog: blogs.dotnetcode.it -
Ciao Luca
e ancora grazie per il tuo aiuto.
Ho provato ma nulla. Questo è il debug di uploadify:---SWFUpload Instance Info--- Version: 2.2.0 2009-03-25 Movie Name: SWFUpload_0 Settings: upload_url: /Handler/FileUpload.ashx flash_url: /Scripts/Uploadify/uploadify.swf?preventswfcaching=1367826759921 use_query_string: false requeue_on_error: false http_success: assume_success_timeout: 36000 file_post_name: Filedata post_params: [object Object] file_types: *.mov; *.mpeg4; *.avi; *.wmv; *.mpegps; *.flv; *.3gpp; *.webm; *.mpg; *.mpeg; *.mp4v; file_types_description: Video Files file_size_limit: 0 file_upload_limit: 0 file_queue_limit: 1 debug: true prevent_swf_caching: true button_placeholder_id: fuNewVideo button_placeholder: Not Set button_image_url: /Admin/Trasmissioni/ button_width: 120 button_height: 30 button_text: button_text_style: color: #000000; font-size: 16pt; button_text_top_padding: 0 button_text_left_padding: 0 button_action: -100 button_disabled: false custom_settings: [object Object] Event Handlers: swfupload_loaded_handler assigned: false file_dialog_start_handler assigned: true file_queued_handler assigned: true file_queue_error_handler assigned: true upload_start_handler assigned: true upload_progress_handler assigned: true upload_error_handler assigned: true upload_success_handler assigned: true upload_complete_handler assigned: true debug_handler assigned: true SWF DEBUG: SWFUpload Init Complete SWF DEBUG: SWF DEBUG: ----- SWF DEBUG OUTPUT ---- SWF DEBUG: Build Number: SWFUPLOAD 2.2.0 SWF DEBUG: movieName: SWFUpload_0 SWF DEBUG: Upload URL: /Handler/FileUpload.ashx SWF DEBUG: File Types String: *.mov; *.mpeg4; *.avi; *.wmv; *.mpegps; *.flv; *.3gpp; *.webm; *.mpg; *.mpeg; *.mp4v; SWF DEBUG: Parsed File Types: mov,mpeg4,avi,wmv,mpegps,flv,3gpp,webm,mpg,mpeg,mp4v, SWF DEBUG: HTTP Success: 0 SWF DEBUG: File Types Description: Video Files (*.mov; *.mpeg4; *.avi; *.wmv; *.mpegps; *.flv; *.3gpp; *.webm; *.mpg; *.mpeg; *.mp4v;) SWF DEBUG: File Size Limit: 0 bytes SWF DEBUG: File Upload Limit: 0 SWF DEBUG: File Queue Limit: 1 SWF DEBUG: Post Params: SWF DEBUG: ----- END SWF DEBUG OUTPUT ---- SWF DEBUG: SWF DEBUG: Event: fileDialogStart : Browsing files. Single Select. Allowed file types: *.mov; *.mpeg4; *.avi; *.wmv; *.mpegps; *.flv; *.3gpp; *.webm; *.mpg; *.mpeg; *.mp4v; SWF DEBUG: Select Handler: Received the files selected from the dialog. Processing the file list... SWF DEBUG: Event: fileQueued : File ID: SWFUpload_0_0 SWF DEBUG: Event: fileDialogComplete : Finished processing selected files. Files selected: 1. Files Queued: 1 SWF DEBUG: StartUpload: First file in queue SWF DEBUG: Event: uploadStart : File ID: SWFUpload_0_0 SWF DEBUG: Global Post Item: keywords=video1-3 SWF DEBUG: Global Post Item: description=video 1-3 SWF DEBUG: Global Post Item: id=TDT42b482ae3d31 SWF DEBUG: Global Post Item: type=video_trasmissione SWF DEBUG: Global Post Item: category=Film SWF DEBUG: Global Post Item: title=Video 1-3 SWF DEBUG: Global Post Item: data=25/04/2013 SWF DEBUG: ReturnUploadStart(): File accepted by startUpload event and readied for upload. Starting upload to /Handler/FileUpload.ashx for File ID: SWFUpload_0_0 SWF DEBUG: Event: uploadProgress (OPEN): File ID: SWFUpload_0_0 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 163840. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 327680. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 458752. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 720896. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 851968. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 1114112. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 1245184. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 1376256. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 1507328. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 1769472. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 2097152. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 2424832. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 2686976. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 2949120. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 3211264. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 3342336. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 3473408. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 3604480. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 3735552. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 3997696. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 4390912. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 4653056. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 5046272. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 5308416. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 5570560. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 5963776. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 6291456. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 6488064. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 6881280. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 7143424. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 7405568. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 7667712. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 8192000. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 8388608. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 8585216. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 8650752. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 8716288. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 8978432. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 9371648. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 9502720. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 9895936. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 10289152. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 10420224. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 10682368. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 11010048. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 11075584. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 11206656. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 11468800. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 11730944. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 11862016. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 12124160. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 12582912. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 12779520. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 13041664. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 13434880. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 13697024. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 13828096. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 14221312. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 14483456. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 14614528. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 15007744. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 15138816. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 15269888. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 15400960. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 15794176. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 15990784. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 16056320. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 16187392. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 16580608. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 16777216. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 16809984. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 16973824. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 17367040. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 17629184. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 17891328. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 18284544. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 18546688. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 18874368. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 19070976. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 19202048. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 19333120. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 19464192. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 19726336. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 19988480. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 20250624. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 20643840. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 20971520. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 21037056. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 21430272. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 21561344. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 21692416. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 21823488. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 22183936. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 22216704. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 22347776. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 22609920. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 22872064. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 23134208. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 23396352. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 23789568. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 24051712. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 24313856. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 24707072. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 24969216. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 25362432. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 25624576. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 25886720. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 26148864. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 27066368. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 27328512. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 27590656. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 28377088. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 28639232. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 28901376. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 29425664. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 29949952. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 30474240. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 30736384. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 30998528. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 31522816. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 31784960. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 31948800. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 32309248. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 32702464. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 32964608. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 33488896. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 34013184. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 34144256. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 34275328. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 34799616. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 34930688. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 35192832. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 35454976. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 35487744. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 36241408. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 36503552. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 36765696. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 37027840. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 37289984. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 37552128. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 37814272. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 38076416. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 38338560. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 38633472. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 38830080. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 39124992. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 39387136. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 40173568. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 40435712. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 40697856. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 41484288. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 41615360. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 41746432. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 42008576. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 42532864. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 43319296. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 43450368. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 43843584. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 44367872. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 44892160. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 45154304. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 45416448. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 45678592. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 46071808. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 46465024. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 46727168. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 47251456. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 47415296. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 47644672. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 48037888. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 48562176. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 48955392. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 49086464. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 49610752. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 49872896. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 50135040. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 50659328. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 50921472. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 51052544. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 51544064. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 51707904. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 52101120. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 52428800. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 52494336. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 53149696. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 53411840. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 54198272. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 54525952. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 55115776. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 55246848. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 55771136. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 56295424. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 56688640. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 57344000. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 57737216. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 57868288. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 57999360. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 58130432. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 58392576. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 58916864. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 59047936. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 59310080. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 59834368. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 60358656. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 60620800. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 61145088. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 61407232. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 61669376. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 62455808. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 62717952. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 63242240. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 63766528. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 64028672. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 64258048. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 64552960. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 65077248. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 65601536. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 65863680. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 66650112. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 66912256. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 67305472. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 67567616. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 67764224. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 68222976. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 68485120. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 68583424. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 69271552. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 69533696. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 70057984. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 70320128. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 70549504. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 71270400. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 71368704. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 71630848. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 71892992. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 72679424. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 72941568. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 73203712. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 73859072. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 74121216. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 74383360. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 75169792. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 75431936. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 75694080. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 75956224. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 76480512. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 77004800. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 77594624. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 77922304. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 78315520. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 78577664. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 78839808. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 79364096. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 79626240. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 79691776. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 80412672. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 80936960. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 81330176. Total: 81829172 SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 81829172. Total: 81829172 SWF DEBUG: Event: uploadError: HTTP ERROR : File ID: SWFUpload_0_0. HTTP Status: 404. SWF DEBUG: Event: uploadComplete : Upload cycle complete.
Prima usavo una versione precedente di uploadify e non avevo nessun problema a caricare file di grandi dimensioni.
Grazie mille
-
Premetto che è la prima volta che sento parlare di Uploadify, ma il tuo problema sembra abbastanza noto.
Dovresti essere più "preciso" con le versioni, non riesco a trovare quale stai usando, è importante, forse non ricodi la versione precedente ma quella attuale sei di certo in grado di conoscerla.
#1: http://stackoverflow.com/questions/11402356/mvc3-uploadify-jquery-plugin-error-http-404-and-io-error
Viene suggerito di verificare quale errore 404 si sta ricevendo (grazie a onUploadError) e altri consigli/verifiche sulle impostazioni del sito.
Esiste un bug in uploadify (in una specifica versione) che per colpa di una richiesta HTTP non necessaria fa ottenere appunto un 404, mi pare ci sia il codice da modificare per risolvere il problema.
Forse è già stato fixato in una recente release, non ne ho idea.ciao
- Modificato Alessandro Piccione martedì 7 maggio 2013 21:18
- Proposto come risposta Luca Congiu [congiuluc]Moderator mercoledì 5 giugno 2013 19:37
- Contrassegnato come risposta Gemini78 giovedì 6 giugno 2013 15:18