Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

It depends on their Apache setup. If you drop a .htaccess file into your webroot that looks like this:

DirectoryIndex index.cgi AddHandler cgi-script .cgi .pl Options +ExecCGI

Then add an index.cgi that looks like this:

#!/usr/bin/perl print "Content-Type: text/html\n\nHello World!\n";

and finally chmod 755 it....chmod 755 /blah/public_html/index.cgi

You should see the famous phrase if .htaccess of the default Apache httpd.conf directives is allowed. A 500 Internal Server Error or 403 Forbidden also probably indicates it is working but you have a typo or forgot the chmod respectively. If you see your index.htm(l) instead then the .htaccess override of the DirectoryIndex is not working.

You may also like to add:

ErrorLog /some/path/logs/error_log CustomLog /some/path/logs/access_log common

To your .htaccess. This gives you a private set of error logs if you don't already have them. Make sure the path exists though and is writable by Apache. It gets upset if it can't write logs.....

cheers

tachyon


In reply to Re: CGI index as text by tachyon
in thread CGI index as text by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (3)
As of 2024-04-19 01:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found