in reply to How can I check web server permissions for 'cgi-bin' directory ?
The best thing to do is up a simple shell script.
Also, check with the admin and make sure the permissions are set properly on the cgi script. This can vary wildly from system to system, but a relatively sure best is a+x. FTP might give the perms with an "ls -als" command. in a+x mode, there should be 3 x's (owner, group, global).#!/bin/sh # let the browser handle the data properly (w/o this it will fail) echo "Content-type: text/html\n\n"; # some cheesy data echo "Hello.";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: Answer: How can I check web server permissions for 'cgi-bin' directory ?
by merlyn (Sage) on Aug 02, 2000 at 17:23 UTC |