This documentation is for the old version. Go to the latest Upload Suite docs

ImageUploaderFlash.Error Event

This event fires if some error occurred during the current upload session.

Syntax

ASP.NET
<script type="text/javascript">
function ImageUploaderFlash1_Error(errorCode, httpResponseCode, errorPage, additionalInfo){
    //...your code...
}
</script>
<aur:ImageUploaderFlash ID="ImageUploaderFlash1" runat="server">
    <ClientEvents>
        <aur:ClientEvent EventName="Error" HandlerName="ImageUploaderFlash1_Error" />
    </ClientEvents>
</aur:ImageUploaderFlash>
PHP
<script type="text/javascript">
function ImageUploaderFlash1_Error(errorCode, httpResponseCode, errorPage, additionalInfo){
    //...your code...
}
</script>
<?php
    $ImageUploaderFlash = new ImageUploaderFlash("ImageUploaderFlash1");
    //...other params...
    $ImageUploaderFlash->getClientEvents()->setError("ImageUploaderFlash1_Error");
    //...other params...
    $ImageUploaderFlash->render();
?>
JavaScript
function ImageUploaderFlash1_Error(errorCode, httpResponseCode, errorPage, additionalInfo){
    //...your code...
}
$au.imageUploaderFlash({
    events: {
        //...other params...
        error: [ImageUploaderFlash1_Error],
        //...other params...
    }
})

Parameters

errorCode

Type: Number

One of the following values:

  • 1 - number of selected files is less than number of files allowed for the upload;
  • 4 - some server-side error occurred;
  • 9 - the upload was aborted by a user;
  • 11 - the server returned HTTP code 3xx (e.g. 302 or 304) during redirection;
  • 12 - the upload was aborted from the script (using the cancelUpload() method);
  • 13 - the trial period has expired;
  • 18 - the upload was aborted from the AfterPackageUpload event handler (the handler returns false);
  • 0 - unknown error, this error code also may indicate that the URL specified in the ActionUrlActionUrl (ASP.NET)ActionUrl (PHP)actionUrl (JavaScript) property was not found or has an incorrect syntax.
httpResponseCode

Type: Number

The HTTP error code received from the server (if any).

errorPage

Type: String

The web page containing error description, returned from the server (if any).

additionalInfo

Type: String

Text message that can be displayed to the user.

Remarks

This event allows you to handle errors which can occur during the upload.

See Also

Reference

Manual