CS360
Internet Programming
-
Perl CGI test
Posted on May 13th, 2009 No commentsIf you are having problems running Perl CGI on your cs account, try this:
- cd to your public_html directory
- Create myfile.cgi
- Copy cheapest cialis the following code into the file:
#!/usr/bin/perl
use CGI qw/:standard/;
print header;
print start_html('CGI works!');
print h1('I like CGI');
print end_html;
- Modify the file to be executable by the group
chmod 755 myfile.cgi
- Browse to your file at students.cs.byu.edu/~{csid}/myfile.cgi. It should work.


