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

Notification

Icon
Error

Options
Go to last post Go to first unread
ahindley  
#1 Posted : Monday, January 10, 2011 8:12:12 AM(UTC)
ahindley

Rank: Newbie

Groups: Member
Joined: 12/2/2010(UTC)
Posts: 8

The upload progress dialogue for the active X uploader in Internet Explorer is not showing an increasing count of the images uploaded.

For example, if I upload 5 files, the progress dialogue infoText will read:

"Files uploaded: 0/5..."

This will not change throughout the upload progress. In other words it does not ever increase to "Files uploaded: 1/5..." and so on.

Fedor  
#2 Posted : Monday, January 10, 2011 8:44:42 AM(UTC)
Fedor

Rank: Advanced Member

Groups: Member, Administration, Moderator
Joined: 7/28/2003(UTC)
Posts: 1,660

Thanks: 5 times
Was thanked: 76 time(s) in 74 post(s)
Could you post here or submit a case with the URL and/or source code of the page with Image Uploader?
Best regards,

Fedor Skvortsov

ahindley  
#3 Posted : Tuesday, January 11, 2011 1:18:51 AM(UTC)
ahindley

Rank: Newbie

Groups: Member
Joined: 12/2/2010(UTC)
Posts: 8

Fedor,

The configuration of the image uploader is as follows:

<script type="text/javascript">

var u = $au.uploader({

id: 'Uploader1',

width:'690px',

height:'450px',

licenseKey: '76FF4-00400-00007-88D78-8DB3C-66A31B',

javaControl: {

codeBase:'js/Scripts/ImageUploader7.jar'

},

activeXControl:{

codeBase:'js/Scripts/ImageUploader7.cab'

},

restrictions: {

minImageHeight: 480,

minImageWidth: 620,

fileMask: '*.jpg;*.jpeg;*.jpe'

},

converters: [

{ mode: '*.*=Thumbnail',

thumbnailFitMode: 'Fit',

thumbnailWidth: '640',

thumbnailHeight: '480',

thumbnailJpegQuality:'100' }

],

uploadSettings: {

actionUrl:'ManagePhoto.action',

autoRecoveryMaxAttemptCount: 2,

autoRecoveryTimeOut: 60000,

connectionTimeout: 60000

},

enableRotation: false,

uploadButtonText: '',

enableDescriptionEditor: false,

folderPane: {

height: 300

},

treePane: {

width: 200

},

statusPane: {

filesToUploadText: '',

noFilesToUploadText: ''

},

paneItem: {

imageEditorIconTooltip: 'Preview image'

},

messages: {

uploadCompleted: '',

uploadFailed: 'Sorry, your upload failed. Please try again.',

noResponseFromServer: 'Sorry, your upload failed. Please try again.',

unexpectedError: 'Sorry, your upload failed. Please try again.'

},

events: {

preRender: [ImageUploader_PreRender],

initComplete: [ImageUploader_InitComplete],

uploadFileCountChange: [ImageUploader_UploadFileCountChange],

beforeUpload: [ImageUploader_BeforeUpload],

afterUpload: [ImageUploader_AfterUpload]

}

});

u.writeHtml();

</script>

Dmitry.Obukhov  
#4 Posted : Tuesday, January 11, 2011 3:05:24 AM(UTC)
Dmitry.Obukhov

Rank: Advanced Member

Groups: Member
Joined: 5/29/2010(UTC)
Posts: 1,310

Thanks: 8 times
Was thanked: 111 time(s) in 111 post(s)
Hello Alexandra,

Thanks for the code snippet. You did not set FilesPerPackage property. In this case, this property is set to 0 by default, and all files are uploaded in one request. Therefore, the Uploading Files Dialog does not increase when files are being uploaded. It is by design. You should set FilesPerPackage to 1.

If you have any additional questions or problems, please feel free to let me know.

Best regards,

Dmitry Obukhov

Technical Support. Aurigma, Inc.

ahindley  
#5 Posted : Tuesday, January 11, 2011 8:41:47 AM(UTC)
ahindley

Rank: Newbie

Groups: Member
Joined: 12/2/2010(UTC)
Posts: 8

Hello Dmitry,

That has solved my probelm, thank you very much!

Alex

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.