5 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
<HTML>
<HEAD></HEAD>
<BODY>
<FORM METHOD="POST" ACTION="cgi-bin/upload.pl" ENCTYPE="multipart/form-data">
Datei auswaehlen:<BR>
<INPUT TYPE="file" NAME="file" SIZE=30 MAXLENGTH=80>
<INPUT TYPE="submit" NAME="button" VALUE="upload">
</FORM>
</BODY>
</HTML>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>500 Internal Server Error</title>
</head><body>
<h1>Internal Server Error</h1>
<p>The server encountered an internal error or
misconfiguration and was unable to complete
your request.</p>
<p>Please contact the server administrator,
root@localhost and inform them of the time the error occurred,
and anything you might have done that may have
caused the error.</p>
<p>More information about this error may be available
in the server error log.</p>
<hr>
<address>Apache/2.2.3 (Red Hat) Server at localhost Port 80</address>
</body></html>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#! /usr/bin/perl use strict; use warnings; #use HTTP::Request::Common; #use LWP::UserAgent; use CGI; use CGI::Carp 'fatalsToBrowser'; use Net::FTP; my $host = "localhost"; my $ftp_user = "Michaela"; my $ftp_pass = ""; my $ftp_dir = "/ftptest"; print "This is a test\n";
5 Einträge, 1 Seite |