I am trying to use the
UploadProcessingMsg property, but I must be doing something wrong. I have read the
documentation, but nothing seems to happen when I use it. This is how I am calling it:
- $uploader=new PhpUploader();
- $uploader->MaxSizeKB=15360;
- $uploader->MultipleFilesUpload=true;
- $uploader->Name="myuploader";
- $uploader->UploadProcessingMsg="Processing...";
- $uploader->AllowedFileExtensions="jpg,jpeg";
- $uploader->InsertText="Upload Photos";
- $uploader->Render();
I have some code further down in the page that sends the uploaded file to Rackspace's Cloud Files. Everything works fine, but there is a bit of a delay while the file is being sent to Cloud Files. I would like to display a message to the user that the file is processing during this delay, so they do not think the page is hung up. I thought that was the purpose of the UploadProcessingMsg property. What am I doing wrong? I am using the latest version available from the website. Any advice would be appreciated.