FancyUpload redirect na upload
Ronald
09/07/2008 10:51:00Hallo,
Ik ben bezig met FancyUpload maar nu wil ik dat ze titel en omschrijving kunnen invullen na de upload. Ik heb in upload.php al header('Location...'); toegepast maar dan werkt hij niet meer. Weet iemand hoe het wel moet? Ik ben al 2 dagen bezig maar het lukt me echt niet en kan niets vinden op Google over hetzelfde :( :(
FancyUpload is hier te vinden.
Ik ben bezig met FancyUpload maar nu wil ik dat ze titel en omschrijving kunnen invullen na de upload. Ik heb in upload.php al header('Location...'); toegepast maar dan werkt hij niet meer. Weet iemand hoe het wel moet? Ik ben al 2 dagen bezig maar het lukt me echt niet en kan niets vinden op Google over hetzelfde :( :(
FancyUpload is hier te vinden.
PHP hulp
05/11/2024 15:40:16In FancyUpload2.js staat een functie: onAllComplete(). Kun je die niet aanpassen naar iets als:
Succes...
Code (php)
1
2
3
4
5
6
7
2
3
4
5
6
7
onAllComplete: function(current) {
this.log('Completed all files, ' + current.bytesTotal + ' bytes.', arguments);
this.updateOverall(current.bytesTotal);
this.overallProgress.start(100);
this.status.removeClass('file-uploading');
window.location.href='bestand.php?var=value';
},
this.log('Completed all files, ' + current.bytesTotal + ' bytes.', arguments);
this.updateOverall(current.bytesTotal);
this.overallProgress.start(100);
this.status.removeClass('file-uploading');
window.location.href='bestand.php?var=value';
},
Succes...