Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

Options
Go to last post Go to first unread
theovis  
#1 Posted : Thursday, November 8, 2007 7:40:06 PM(UTC)
theovis

Rank: Member

Groups: Member
Joined: 9/14/2007(UTC)
Posts: 1

After i upgraded to lastest version of the uploader, i am having two strange problems.

I am still using a trail version, because where not sure which domainname where going to use,
but where intending to buy a version.

We are using the dual version.

To start uploading we are using a custom js script to check some form values and when there are no errors i use
to start uploading to following code:

Code:
getImageUploader("ImageUploader1").Send();


What happens

1. In IE it freezes on 2 out 10 pc's
First it says 'You are using a trail version......' (normal behavior)
Then it says 'Upload is canceled' (Strange behavior, but am assuming it's gone on licended version)
But then it freezes on 2 out of 10 pc's, most op the pc's starting uploading, but somethings
it becomes grayed out.

2. In firefox when i am using the uploader for the second time nothing seams to heapen.

The first upload goes fine
But the second upload, it's doens't do anything if gives an error in java script console.log

Code:
   ###Error occured###
   Status=[ERROR]
   Progress=[0]
   ValueMax=[0]
   Value=[0]
   [ErrorPage]
   [EndOfErrorPage]


Version information:

Windows XP - SP2
Version Ie 7.0.5730.11
Version Firefox 2.0.0.9

Aurigma ImageUploader version: 2.5.50.0
Aurigma Image Uploader version: 4.5

Code:

<script type="text/javascript">
//<![CDATA[
//Create JavaScript object that will embed Image Uploader to the page.

var iu = new ImageUploaderWriter("ImageUploader1", 650, 400);

//For ActiveX control full path to CAB file (including file name) should be specified.
//For ActiveX control we specify full path for CAB file
iu.activeXControlCodeBase = "http://demo.foryoureyes.tv/lib/uploadApplet/ImageUploader4.cab";
iu.activeXControlVersion = "4.5.5.0";

//For Java applet we specify only directory with JAR files
iu.javaAppletCodeBase = "http://demo.foryoureyes.tv/lib/uploadApplet";
iu.javaAppletCached = false;
iu.javaAppletVersion = "2.5.50.0";

//iu.addParam("MaxFileCount", "10");
//iu.addParam("MaxFileSize", "2097150");
//iu.addParam("MaxTotalFileSize", "10485760");
//iu.showNonemptyResponse = "off";

//Customize appearance and behavior.
iu.addParam("PaneLayout", "OnePane"); 
iu.addParam("UploadView", "Details");
iu.addParam("ShowDebugWindow", "true");
iu.addParam("EnableRotate", "false");
iu.addParam("BackgroundColor", "#ffffd6");

//Customize Image Uploader buttons.
//iu.addParam("ButtonAddFoldersImageFormat", "Width=128;Height=25;UrlNormal='Images/AddFoldersNormal.png';UrlNormalFocused='Images/AddFoldersNormalFocused.png';UrlHover='Images/AddFoldersHover.png';UrlHoverFocused='Images/AddFoldersHoverFocused.png';UrlPressed='Images/AddFoldersPressed.png'");
//iu.addParam("ButtonAddFilesImageFormat", "Width=109;Height=25;UrlNormal='Images/AddFilesNormal.png';UrlNormalFocused='Images/AddFilesNormalFocused.png';UrlHover='Images/AddFilesHover.png';UrlHoverFocused='Images/AddFilesHoverFocused.png';UrlPressed='Images/AddFilesPressed.png'");
//iu.addParam("ButtonSendImageFormat", "Width=82;Height=25;UrlDisabled='Images/UploadDisabled.png';UrlNormal='Images/UploadNormal.png';UrlNormalFocused='Images/UploadNormalFocused.png';UrlHover='Images/UploadHover.png';UrlHoverFocused='Images/UploadHoverFocused.png';UrlPressed='Images/UploadPressed.png'");

//Configure custom button caching.
iu.addParam("CacheGuiGraphics","false");
iu.addParam("GuiGraphicsVersion","1");

//Compute and send for files SHA and MD5 hash.
//iu.addParam("HashAlgorithm", "SHA;MD5");

//Configure upload settings.
iu.addParam("FilesPerOnePackageCount", "1");
//iu.addParam("AutoRecoverMaxTriesCount", "10");
//iu.addParam("AutoRecoverTimeOut", "10000");

iu.addParam("LicenseKey", "5436-6613-7756-8429;8262-5952-8892-6098");
//iu.addParam("FileMask", "*.jpg;*.jpeg;*.jpe;*.tif;*.tiff;*.psd;*.png;*.bmp;*.gif;*.zip;*.doc");

//Configure URL files are uploaded to.
iu.addParam("Action", "http://demo.foryoureyes.tv/admin.php?&action=file_upload");

iu.addParam("ShowButtons", "true");

// Add Form Parms
iu.addParam("AdditionalFormName", "UploadForm");

//Configure URL where to redirect after upload.
iu.addEventListener("AfterUpload", "ImageUploader_AfterUpload");

// Customize layout
iu.addParam("ButtonAddFilesImageFormat","Width=100;Height=25;UrlNormal=img/add_files.gif;UrlPressed=files2.gif;UrlDisabled=img/add_files.gif");
iu.addParam("ButtonAddFoldersImageFormat","Width=20;Height=20;UrlNormal=folders1.gif;UrlPressed=folders2.gif;UrlDisabled=folders3.gif");
iu.addParam("ButtonSendImageFormat","Width=100;Height=25;UrlNormal=sendit.png;UrlPressed=send2.gif;UrlDisabled=send3.gif");
iu.addParam("BackgroundColor", "#FFFFFF");

//Tell Image Uploader writer object to generate all necessary HTML code to embed
//Image Uploader to the page.
iu.writeHtml();
//]]>
</script>

Edited by user Sunday, February 24, 2008 7:04:44 PM(UTC)  | Reason: Not specified

Users browsing this topic
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.