It looks like you're new here. If you want to get involved, click one of these buttons!
NfuidS said:Since it only shows up the latest error, you need to add a custom event handler to see the more specific error.
Add this in your calling Javascript (where you set all settings for uploadify):
onError: function (a, b, c, d) {
if (d.status == 404)
alert('Could not find upload script. Use a path relativ$
else if (d.type === "HTTP")
alert('error '+d.type+": "+d.status);
else if (d.type ==="File Size")
alert(c.name+' '+d.type+' Limit: '+Math.round(d.sizeLim$
else
alert('error '+d.type+": "+d.text);
},
and you will see a more specific error.
HTH