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

Basic Steps in Troubleshooting

This topic is a guide which aims at helping you to understand what is wrong with your application. Here we consider the most popular errors:

If an error occurs, we recommend you to start with the debug console which allows you to get error, debug, and information messages from Image Uploader Flash right in your browser. To turn the debug console on you should:

  1. Set the DebugScriptLevelDebugScriptLevel (ASP.NET)DebugScriptLevel (PHP) (or debug.level) to 3.
  2. Specify how debug messages should be displayed (in pop-up window, console, or alert) with the DebugScriptModeDebugScriptMode (ASP.NET)DebugScriptMode (PHP) (or debug.mode) property.
  3. Allow pop-up windows or open browser error console. Here are the ways to open the console in the most popular browsers:

    • In Internet Explorer 8 open Tools -> Developer Tools (or press F12), then select Script tab in the left pane and click Console in the right pane.
    • In Mozilla Firefox we recommend to use Firebug.
    • In Google Chrome click the Wrench icon and select Tools -> JavaScript Console (or press Ctrl+Shift+J).
    • In Safari turn on the Develop menu in the Advanced pane of Safari Preferences, after that go to Develop -> Show Error Console (or press Cmd+Alt+C).
  4. Reload your application.

The following code inserted in your application will print all debug messages from Image Uploader Flash to pop-up window (or to the console if pop-ups are blocked).

ASP.NET
<aur:ImageUploaderFlash ID="Uploader1" runat="server"
	DebugScriptLevel="3" DebugScriptMode="Default" />
PHP
<?php
	require_once "ImageUploaderFlashPHP/Uploader.class.php";
	$uploader = new ImageUploaderFlash('Uploader1');
	$uploader->setDebugScriptLevel(3);
	$uploader->setDebugScriptMode("['popup','console']");
	$uploader->render();
?>

If you prefer JavaScript, remember that the following code should be inserted before rendering Image Uploader Flash:

JavaScript
<script type="text/javascript">
    $au.debug().level(3);
    $au.debug().mode(['popup','console']);
</script>

For more information about the debug console, please, see the Using Image Uploader Flash at Runtime topic.

Image Uploader Flash Does not Render

Firstly, make sure that client browser has Adobe Flash Player 10.1 plug-in installed.

Another possible reason is an error in your script which embeds Image Uploader Flash. Please, use the debug console as it is described at the beginning of this topic to find the error.

Message "Not all files were uploaded successfully" Appears

Far more likely that an internal server error has occurred, which could be caused by the following reasons:

Also, the error message can appear if server attempts to redirect you to another page, because:

Upload is Complete but Files are not Uploaded

This can indicate one of the following:

You Get "Package upload error: Error #2170" Error

This error occurs when you use two different domains: one for hosting Image Uploader Flash and the other for uploading files to. You should implement the cross-domain policy for Flash applications and register two license keys (one per domain) in order to fix this error. See the Using Host and Upload Domains that Differ from One Another topic for more information.

See Also

Reference

Manual

Other Resources