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

Notification

Icon
Error

Options
Go to last post Go to first unread
chads2000  
#1 Posted : Monday, July 30, 2007 3:25:29 AM(UTC)
chads2000

Rank: Member

Groups: Member
Joined: 4/3/2007(UTC)
Posts: 10

Hi, I am using Image Uploader 4.5 Dual, currently we are using it on a website that allows users to upload photography. Aurigma will create three thumbnails in a small, medium, and large format and load the original image to ther server. The problem we have noticed is with large quantities of upload with large image files sometimes all the thumbnails that are created are the size of the first thumbnail created. Can anyone help.
- Chad
George Ulyanov  
#2 Posted : Tuesday, July 31, 2007 5:32:35 PM(UTC)
George Ulyanov

Rank: Advanced Member

Groups: Member
Joined: 7/26/2006(UTC)
Posts: 203

Hello,

Please post the entire code of the page with Image Uploader. Please let me know also the version of software you use.

Edited by user Saturday, February 23, 2008 2:46:40 AM(UTC)  | Reason: Not specified

Best regards,
George Ulyanov
chads2000  
#3 Posted : Wednesday, August 1, 2007 4:00:16 AM(UTC)
chads2000

Rank: Member

Groups: Member
Joined: 4/3/2007(UTC)
Posts: 10

Code:
<script type="text/javascript">
//Create JavaScript object that will embed Image Uploader to the page.
var iu = new ImageUploaderWriter("ImageUploader1", 800, 650);

//For ActiveX control full path to CAB file (including file name) should be specified.
iu.activeXControlCodeBase = "/Aurigma/v_4.1/ImageUploader4.cab";
iu.activeXControlVersion = "4,1,60,0";

//For Java applet only path to directory with JAR files should be specified (without file name).
/*
iu.javaAppletCodeBase = "/Aurigma/v_3/";
iu.javaAppletCached = true;
iu.javaAppletVersion = "1.0.12.0";
*/
iu.javaAppletCodeBase = "/Aurigma/v_4.1/";
iu.javaAppletCached = true;
iu.javaAppletVersion = "2.1.60.0";

iu.showNonemptyResponse = "off";
iu.addParam("RememberLastVisitedFolder", "true");
//Configure appearance and behaviour.
iu.addParam("PaneLayout", "ThreePanes");
iu.addParam("FolderView", "Thumbnails");
iu.addParam("TreePaneWidth", "205");
iu.addParam("ThumbnailHorizontalSpacing", "5");
iu.addParam("ThumbnailVerticalSpacing", "1");
iu.addParam("ShowUploadListButtons", "true");
iu.addParam("ShowButtons", "false");
//iu.addParam("MaxFileCount", "100");
iu.addParam("MaxFileSize", "10485760");
iu.addParam("FileIsTooLargeText", "Larger than 10 Mb");
iu.addParam("ShowSubfolders", "false");
iu.addParam("AllowMultipleRotate", "true");
iu.addParam("AdditionalFormName", "form_action_form");
iu.addParam("Action", "***********************");
//Configure URL where to redirect after upload.
iu.addParam("RedirectUrl", "*************************");
iu.addParam("AllowFolderUpload", "false");
//iu.addParam("ButtonRemoveFromUploadListText", "");
iu.addParam("ShowDescriptions", "false");
iu.addParam("ShowContextMenu", "true");
//Configure colors.
iu.addParam("BackgroundColor", "#ffffff");
iu.addParam("SplitterLineColor", "#0066cc");
//Configure border and splitter line style.
iu.addParam("FolderPaneHeight", "250");
iu.addParam("PreviewThumbnailSize", "75");
//Configure thumbnail settings.
iu.addParam("UploadThumbnail1FitMode", "Fit");
iu.addParam("UploadThumbnail1Width", "195");
iu.addParam("UploadThumbnail1Height", "195");
iu.addParam("UploadThumbnail1JpegQuality", "60");
iu.addParam("UploadThumbnail1CopyExif", "true");
iu.addParam("UploadThumbnail1ResizeQuality", "high"); 
//Configure thumbnail settings.
iu.addParam("UploadThumbnail2FitMode", "Fit");
iu.addParam("UploadThumbnail2Width", "630");
iu.addParam("UploadThumbnail2Height", "630");
iu.addParam("UploadThumbnail2JpegQuality", "70");
iu.addParam("UploadThumbnail2CopyExif", "true");
iu.addParam("UploadThumbnail2ResizeQuality", "high"); 
//Configure thumbnail settings.
iu.addParam("UploadThumbnail3FitMode", "Fit");
iu.addParam("UploadThumbnail3Width", "960");
iu.addParam("UploadThumbnail3Height", "640");
iu.addParam("UploadThumbnail3JpegQuality", "90");
iu.addParam("UploadThumbnail3CopyExif", "true");
iu.addParam("UploadThumbnail3ResizeQuality", "high"); 
//Configure upload settings.
iu.addParam("FilesPerOnePackageCount", "1");
iu.addParam("AutoRecoverMaxTriesCount", "5");
iu.addParam("AutoRecoverTimeOut", "5000");
iu.addParam("LicenseKey", "********************************");
iu.addParam("FileMask", "*.jpg;*.jpeg;*.jpe;*.bmp;*.gif;*.png");
iu.addParam("UploadSourceFile", "true");
iu.addParam("ShowDebugWindow", "true");
//Add event handlers.
//iu.addEventListener("BeforeUpload", "ImageUploader_BeforeUpload");
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();

</script>


On Large uploads with large images UploadThumbnail2 and UploadThumbnail3 will be replaced with UploadThumbnail1

Edited by user Saturday, February 23, 2008 2:46:53 AM(UTC)  | Reason: Not specified

- Chad
chads2000  
#4 Posted : Wednesday, August 1, 2007 4:04:40 AM(UTC)
chads2000

Rank: Member

Groups: Member
Joined: 4/3/2007(UTC)
Posts: 10

Sorry ImageUploader 4.1 Dual is what we are using.
- Chad
chads2000  
#5 Posted : Sunday, August 12, 2007 11:32:50 PM(UTC)
chads2000

Rank: Member

Groups: Member
Joined: 4/3/2007(UTC)
Posts: 10

I upgraded to Dual 4.5 and no complaints yet. But the error was only happening in the Active X controller and not the Java. If you can send me over that processing script that would be really helpful.
- Chad
Eugene Kosmin  
#6 Posted : Tuesday, August 14, 2007 8:35:03 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 Chad,

We couldn’t reproduce the problem. We’ve got different thumbnails by uploading 500 Mb of photos (~ 3000x2000 each).

Try to use ExtractFiles.aspx from Helper Scripts for Image Uploader topic for getting files from POST. If upload thumbnails will be identical, please give us more information:

1. Photo dimensions and size in Mb.
2. Photos count or total amount of upload data in Mb.
3. Other useful information from this topic.

Edited by user Monday, February 25, 2008 4:18:13 PM(UTC)  | Reason: Not specified

Best regards,
Eugene Kosmin
The Aurigma Development Team
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.