Displaying 1 result from an estimated 1 matches for "end_of_multiline_text".
2008 Sep 22
2
Getting perl CGI programs to work on CentOS 5 server
...o get perl CGI programs to work from the cgi-bin (actually a
sub-directory cgi-bin/various) and have set appropriate permissions
using chmod 755. I'm currently testing using the simplest cgi program,
you know the one:
#!/usr/bin/perl
# howdy--the easiest of CGI programs
use CGI;
print <<END_of_Multiline_Text;
Content-type: text/html
<HTML>
<HEAD>
<TITLE>Hello World</TITLE>
</HEAD>
<BODY>
<H1>Greetings, Terrans!</H1>
</BODY>
</HTML>
END_of_Multiline_Text
This has worked absolutely fine in the past, but now when I invoke it,
either nothing a...