Thread T-Online-Homepage und Perl/CGI
(21 answers)
Opened by FIFO at 2008-01-20 19:56 Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 # index.pl use strict; print <<HTML_ENDE; Content-type: text/html <html> <head> <title>Tatsache</title> </head> <body> <h1>Es funktioniert!</h1> </body> </html> HTML_ENDE T-Online gibt an, dass eine Datei index.pl im root-Verzeichnis vor einer etwaigen index.php und diese vor index.htm (usw.) aufgerufen wird. Die Seite läuft problemlos mit index.htm, dieses wird aber angezeigt, obwohl index.pl vorhanden ist. Leider sind die Infos zu dem Thema Skripte bei T-O (und Google ebenfalls) sehr dünn, und bevor ich mich an eine CGI-Version mache, wollte ich doch mal nachhören ;-) Everyone knows that debugging is twice as hard as writing a program in the first place. So if you're as clever as you can be when you write it, how will you ever debug it? -- Brian Kernighan: "The Elements of Programming Style"
|