Thread RaspberryPi Webserver mit Perl CGI (43 answers)
Opened by Gustl at 2013-10-26 10:26

Gustl
 2013-10-26 19:25
#171567 #171567
User since
2011-01-27
443 Artikel
BenutzerIn
[Homepage]
user image
Habe auch ein ganz einfaches script aus dem Internet probiert:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl

print "Content-type:text/html\r\n\r\n";
print '<html>';
print '<head>';
print '<title>Hello Word - First CGI Program</title>';
print '</head>';
print '<body>';
print '<h2>Hello Word! This is my first CGI program</h2>';
print '</body>';
print '</html>';

1;


Aber er findet die Datei ja komischerweise nicht...
ich weiß hier nicht mehr weiter...

View full thread RaspberryPi Webserver mit Perl CGI