UploadProcessingMsg property does not work

  •  09-11-2010, 2:02 PM

    UploadProcessingMsg property does not work

    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:
    1. $uploader=new PhpUploader();  
    2. $uploader->MaxSizeKB=15360;  
    3. $uploader->MultipleFilesUpload=true;  
    4. $uploader->Name="myuploader";  
    5. $uploader->UploadProcessingMsg="Processing...";  
    6. $uploader->AllowedFileExtensions="jpg,jpeg";  
    7. $uploader->InsertText="Upload Photos";  
    8. $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.
View Complete Thread