in reply to why can't I find my cgi script?

Generally speaking, the "public_html" directory is mapped to the root of your webserver (or to ~/username/). So you should be requesting /cgi-bin/test2.cgi, not /public_html/cgi-bin/test2.cgi.

Read the error log. It will probably tell you where on the harddisk it is looking for /public_html/cgi-bin/test2.cgi.

Replies are listed 'Best First'.
Re^2: why can't I find my cgi script?
by Angharad (Pilgrim) on Jan 26, 2006 at 11:26 UTC
    Thanks I'll try that.