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

Notification

Icon
Error

Options
Go to last post Go to first unread
smandros  
#1 Posted : Thursday, April 24, 2008 6:00:59 AM(UTC)
smandros

Rank: Member

Groups: Member
Joined: 9/21/2007(UTC)
Posts: 12

We recently upgraded our application from Image Uploader 4.0 to 4.7.

We are using the "User Quote" mode of the control.

My clients start complaining that now it is taking a very long time for the control to populate the pane with the list of files in the selected folder.

The users of my application is uploading thousands of images, 60 images at a time and their folders can contain more than hundreds of images.

I saw a similar post in the Forum before and your response was that the next version of the control will have some fix for this issue. Unfortunately the time is something we do not have and we need the fix as soon as possible. If it is possible to get a hot fix, please, let me know.

Thank you in advance and regards.

Eugene Kosmin  
#2 Posted : Thursday, April 24, 2008 12:31:36 PM(UTC)
Eugene Kosmin

Rank: Advanced Member

Groups: Member, Administration, Moderator
Joined: 9/19/2006(UTC)
Posts: 505

Was thanked: 41 time(s) in 41 post(s)
Hello Smandros,

We are planning to release updated IU 4.7.x in the middle of the next week. If you need the fix urgently, please contact us at support@auirmga.com, we’ll send you fixed version shortly.

Best regards,

Eugene Kosmin

The Aurigma Development Team

smandros  
#3 Posted : Friday, April 25, 2008 5:50:08 AM(UTC)
smandros

Rank: Member

Groups: Member
Joined: 9/21/2007(UTC)
Posts: 12

Thank you. I will do it immideatly.
Eugene Kosmin  
#4 Posted : Sunday, April 27, 2008 8:23:06 PM(UTC)
Eugene Kosmin

Rank: Advanced Member

Groups: Member, Administration, Moderator
Joined: 9/19/2006(UTC)
Posts: 505

Was thanked: 41 time(s) in 41 post(s)
We have sent you new version by e-mail.

Best regards,

Eugene Kosmin

The Aurigma Development Team

smandros  
#5 Posted : Thursday, May 1, 2008 6:13:09 AM(UTC)
smandros

Rank: Member

Groups: Member
Joined: 9/21/2007(UTC)
Posts: 12

Thank you. We got the new version and installed it.

It solved (partially) the performance issue when loading the pane that is displaying images. Some of our users report visible improvements; some still complain that it takes up to a minute or two to populate the pane.

But now we are facing a few other issues:

1. When I select files, checking them off in the “Files” pane, it takes a few seconds for check box to appear on the screen. My users uploads thousands of images daily and a few seconds delay for each checked image amounts to a considerable time loss for them.

2. Since my users upload a large number of images ( 1 million a month), they select 30 – 60 images at a time to upload.

Now here is another issue: when the “Upload” link is clicked, the screen appears that displays the upload progress. It takes only 10-20 sec for the control to send the images to the server, and then it takes from 2-4 minutes to wait until “Success” message appears. That is extremely slow and I afraid to put the control to production, as I foresee the storm of complains from my users.

Below is the code that is setting up the control. Please, advise, if I could do anything to improve the performance.

var iu = new ImageUploaderWriter("ImageUploader1", 810, 300);

//For ActiveX control full path to CAB file (including file name) should be specified.

iu.activeXControlCodeBase = "../ImageUploader4.cab";

iu.activeXControlVersion = "4,7,0,0";

//For Java applet only path to directory with JAR files should be specified (without file name).

iu.javaAppletJarFileName = "ImageUploader2.jar";

iu.javaAppletCodeBase = "../";

iu.javaAppletCached = true;

iu.javaAppletVersion = "2.7.0.0";

iu.showNonemptyResponse = "off";

//Configure License Keys

//iu.addParam("LicenseKey", "71050-49A8A-00000-08302-413E7;72050-49A8A-00000-076AD-199A9");

iu.addParam("LicenseKey","9704-8026-8890-6544-55871;9958-1629-3286-9353-99352");

//Configure file mask to display JPEG images only.

iu.addParam("FileMask", fileMask);

//Configure Image Uploader to rotate photos automatically

//according to the orientation stored in EXIF metadata.

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

iu.addParam("FolderView", "List");

//Configure appearance and behaviour.

iu.addParam("PaneLayout", "TwoPanes");

iu.addParam("TreePaneWidth", "205");

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

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

//Configure colors.

iu.addParam("BackgroundColor", "#ffffff");

iu.addParam("SplitterLineColor", "#0066cc");

//Configure border and splitter line style.

iu.addParam("FolderPaneBorderStyle", "None");

iu.addParam("UploadPaneBorderStyle", "None");

iu.addParam("TreePaneBorderStyle", "None");

iu.addParam("SplitterLineStyle", "Dot"); //NOT SUPPORTED IN JAVA

//Configure thumbnail settings.

iu.addParam("UploadThumbnail1FitMode", "Fit");

iu.addParam("UploadThumbnail1Width", uploadThumbnail1Width);

iu.addParam("UploadThumbnail1Height", uploadThumbnail1Height);

iu.addParam("UploadThumbnail1JpegQuality", "60");

//Configure user quota restriction. In real-life application these values should be

//loaded from server.

iu.addParam("MaxFileCount", maxFileCount);

iu.addParam("MaxTotalFileSize", maxTotalFileSize); // 50 MB

//Configure upload settings.

iu.addParam("FilesPerOnePackageCount", filesPerOnePackageCount);

iu.addParam("AutoRecoverMaxTriesCount", "10");

iu.addParam("AutoRecoverTimeOut", "10000");

iu.addParam("MessageUploadCompleteText", "Upload complete. The documents will be processed by CEOI in 1 hour.");

var uploadURL = path + "?Action=Upload" //&DocType=" + DocID + "&DocTypeDesc=" + DocDesc;

var redirectURL= path + "?Action=Result" //&DocType=" + DocID + "&DocTypeDesc=" + DocDesc;

//Configure URL files are uploaded to.

iu.addParam("Action", uploadURL);

//Configure URL where to redirect after upload.

iu.addParam("RedirectUrl", redirectURL);

//Add event handlers.

iu.addEventListener("UploadFileCountChange", "ImageUploader_UploadFileCountChange");

iu.addEventListener("ViewChange", "ImageUploader_ViewChange");

iu.fullPageLoadListenerName = "fullPageLoad";

//Tell Image Uploader writer object to generate all necessary HTML code to embed

//Image Uploader to the page.

iu.writeHtml();

//]]>

Eugene Kosmin  
#6 Posted : Thursday, May 1, 2008 12:09:43 PM(UTC)
Eugene Kosmin

Rank: Advanced Member

Groups: Member, Administration, Moderator
Joined: 9/19/2006(UTC)
Posts: 505

Was thanked: 41 time(s) in 41 post(s)
I couldn’t reproduce your behavior on my environment using your settings.

Is it possible to give me the direct link to your site as a PM?

Best regards,

Eugene Kosmin

The Aurigma Development Team

Eugene Kosmin  
#7 Posted : Monday, May 5, 2008 3:18:22 PM(UTC)
Eugene Kosmin

Rank: Advanced Member

Groups: Member, Administration, Moderator
Joined: 9/19/2006(UTC)
Posts: 505

Was thanked: 41 time(s) in 41 post(s)
I’ve answered you through e-mail.

Best regards,

Eugene Kosmin

The Aurigma Development Team

gogobu  
#8 Posted : Wednesday, May 7, 2008 12:23:00 PM(UTC)
gogobu

Rank: Newbie

Groups: Member
Joined: 4/24/2008(UTC)
Posts: 3

So where's the updated IU 4.7.x ? Is it available for download?

gogobu  
#9 Posted : Tuesday, May 20, 2008 11:35:25 AM(UTC)
gogobu

Rank: Newbie

Groups: Member
Joined: 4/24/2008(UTC)
Posts: 3

Eugene , could you tell me where to get the updated 4.7.x ? THX.
Eugene Kosmin  
#10 Posted : Thursday, May 22, 2008 6:51:24 PM(UTC)
Eugene Kosmin

Rank: Advanced Member

Groups: Member, Administration, Moderator
Joined: 9/19/2006(UTC)
Posts: 505

Was thanked: 41 time(s) in 41 post(s)
Hi,

Sorry for the long delay…

In the nearest future it will be available in Legacy Download section. Unfortunately I can say nothing about release date more precisely.

Best regards,

Eugene Kosmin

The Aurigma Development Team

Users browsing this topic
Guest
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.