Forums

Welcome Guest Search | Active Topics | Members

Image Uploader 4.7 takes a long time to populate the pane with the list of files Options
smandros
Posted: Thursday, April 24, 2008 2:00:59 PM
Rank: Member
Groups: Member

Joined: 9/21/2007
Posts: 12
Points: 33
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
Posted: Thursday, April 24, 2008 8:31:36 PM
Rank: Advanced Member
Groups: Member

Joined: 9/19/2006
Posts: 344
Points: 153
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.

Aurigma Development Team
smandros
Posted: Friday, April 25, 2008 1:50:08 PM
Rank: Member
Groups: Member

Joined: 9/21/2007
Posts: 12
Points: 33
Thank you. I will do it immideatly.
Eugene Kosmin
Posted: Monday, April 28, 2008 4:23:06 AM
Rank: Advanced Member
Groups: Member

Joined: 9/19/2006
Posts: 344
Points: 153
We have sent you new version by e-mail.


Best regards,
Eugene Kosmin.

Aurigma Development Team
smandros
Posted: Thursday, May 01, 2008 2:13:09 PM
Rank: Member
Groups: Member

Joined: 9/21/2007
Posts: 12
Points: 33
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
Posted: Thursday, May 01, 2008 8:09:43 PM
Rank: Advanced Member
Groups: Member

Joined: 9/19/2006
Posts: 344
Points: 153
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.

Aurigma Development Team
Eugene Kosmin
Posted: Monday, May 05, 2008 11:18:22 PM
Rank: Advanced Member
Groups: Member

Joined: 9/19/2006
Posts: 344
Points: 153
I’ve answered you through e-mail.


Best regards,
Eugene Kosmin.

Aurigma Development Team
gogobu
Posted: Wednesday, May 07, 2008 8:23:00 PM
Rank: Newbie
Groups: Member

Joined: 4/25/2008
Posts: 3
Points: 9
So where's the updated IU 4.7.x ? Is it available for download?
gogobu
Posted: Tuesday, May 20, 2008 7:35:25 PM
Rank: Newbie
Groups: Member

Joined: 4/25/2008
Posts: 3
Points: 9
Eugene , could you tell me where to get the updated 4.7.x ? THX.
Eugene Kosmin
Posted: Friday, May 23, 2008 2:51:24 AM
Rank: Advanced Member
Groups: Member

Joined: 9/19/2006
Posts: 344
Points: 153
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.

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.

Main Forum RSS : RSS

YAFVision Theme Created by Jaben Cargman (Tiny Gecko)
Yet Another Forum.net version 1.9.1.6 running under Cuyahoga.
Copyright © 2003-2006 Yet Another Forum.net. All rights reserved.