To ensure that you can't mess up other people's files, your
scripts are run under your name and not the web-servers name. You do
this with the CGIWrap program. Suppose you want some form information
to be processed by a script called "script.cgi." You would insert
"cgiwrap/myusernamehere" into the value of the action
attribute of the form tag in your form file. Obviously, you
replace "myusernamehere" with your own user name.
<form action="/cgi-bin/cgiwrap/myusernamehere/script.cgi" method="post">