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 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 to pop-up window (or to the console if pop-ups are blocked).

ASP.NET
<aur:Uploader ID="Uploader1" runat="server"
	DebugScriptLevel="3" DebugScriptMode="Default" >
</aur:Uploader>
PHP
<?php
	require_once "ImageUploaderPHP/Uploader.class.php";
	$uploader = new Uploader('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:

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 JavaScript API topic.

Image Uploader Does not Render

Firstly, make sure that Image Uploader is installed on the client side; for more information on how to install the client parts of Image Uploader, see the Installing Image Uploader on Client Side topic.

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

Message "Image Uploader Encountered Some Problem" Appears

It means that an internal server error has occurred. Far more likely that:

Upload is Complete but Files are not Uploaded

This can indicate one of the following:

Redirect Message Appears

There are three possible reasons of getting "The server attempted to redirect you to http://someserver.com, but server redirects are not supported." message:

See Also

Reference

Manual

Other Resources