Thread perl/php upload progress bar (6 answers)
Opened by badenixe63 at 2008-03-21 20:54

pq
 2008-03-22 00:23
#107352 #107352
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
topeg: stimmt nicht ganz, das skript wird schon früher aufgerufen.
du kannst CGI.pm einen callback mitgeben. aus der doku:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
       You can set up a callback that will be called whenever a file upload is being read during the
form processing. This is much like the UPLOAD_HOOK facility available in Apache::Request, with
the exception that the first argument to the callback is an Apache::Upload object, here it's the
remote filename.

$q = CGI->new(\&hook,$data);

sub hook
{
my ($filename, $buffer, $bytes_read, $data) = @_;
print "Read $bytes_read bytes of $filename\n";
}

man muss nur beachten, dass zum zeitpunkt, an dem der callback ausgeführt wird, noch kein
CGI-objekt vorhanden ist und somit auch keine parameter ausgelesen werden können.

ich habe das bei meinem upload-skript so gelöst, dass ich eine zufällige id erzeuge und
das formular unter der adresse script?upload_id=12345... aufgerufen wird. also ein POST-request
mit url-parametern. diesen parameter upload_id kann ich dann händisch über den QUERY_STRING
auslesen, da der QUERY_STRING ja an dieser stelle schon im skript zur verfügung steht.
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread perl/php upload progress bar