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

Notification

Icon
Error

Options
Go to last post Go to first unread
io  
#1 Posted : Sunday, June 25, 2006 5:46:10 AM(UTC)
io

Rank: Member

Groups: Member
Joined: 6/25/2006(UTC)
Posts: 20

How one can display StatusText-s for every upload block in separate mode?
It is quite necessary to show result of each server image proccesing.
But standart approach shows StatusText of the last upload only.
Alex Makhov  
#2 Posted : Tuesday, June 27, 2006 6:34:29 PM(UTC)
Alex Makhov

Rank: Advanced Member

Groups: Member
Joined: 8/3/2003(UTC)
Posts: 998

Hello,

Now Image Uploader does not let to show the status text for every upload block.
Sincerely yours,
Alex Makhov

UserPostedImage Follow Aurigma on Twitter!
io  
#3 Posted : Wednesday, June 28, 2006 8:11:33 PM(UTC)
io

Rank: Member

Groups: Member
Joined: 6/25/2006(UTC)
Posts: 20

Its a pity.

So its my suggestion for IU 4
Alex Makhov  
#4 Posted : Thursday, June 29, 2006 12:41:33 PM(UTC)
Alex Makhov

Rank: Advanced Member

Groups: Member
Joined: 8/3/2003(UTC)
Posts: 998

Hello,

There is no such possibility in Image Uploader for ActiveX 4.0 too. May be in version 4.1 we will add this feature.
Sincerely yours,
Alex Makhov

UserPostedImage Follow Aurigma on Twitter!
io  
#5 Posted : Saturday, July 8, 2006 5:53:10 AM(UTC)
io

Rank: Member

Groups: Member
Joined: 6/25/2006(UTC)
Posts: 20

Thus i can advice to anyone to use temporary files instead and use $PackageGuid as unique name.

PHP:
Code:
$tr='the info string aboiut each file upload';
$filepath=$DOCUMENT_ROOT."/folder/".$PackageGuid.".txt";
if($PackageIndex<($PackageCount-1)){
   $fp=fopen($filepath,"a");
   fwrite($fp,$tr);
   fclose($fp);
}
else{
   if($PackageCount>1){
      $array=file($filepath);
      $content=implode('',$array);
      echo $content.$tr;
      unlink($filepath);
   }
   else echo $tr;
}

Edited by user Wednesday, December 19, 2007 4:05:42 PM(UTC)  | Reason: Not specified

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.