Thread Anfängerfrage: Upload mit Perl (13 answers)
Opened by knight at 2007-10-25 19:45

GwenDragon
 2007-10-25 19:49
#101330 #101330
User since
2005-01-17
14607 Artikel
Admin1
[Homepage]
user image
Du solltest übrigens nicht nur das sysopen überprüfen sondern auch das close!

Also z. B. anstatt
Code (perl): (dl )
close (SIGNAL);
besser
Code (perl): (dl )
close (SIGNAL) or die( $!);

View full thread Anfängerfrage: Upload mit Perl