Thanks in advance
[edited by: coopster at 3:00 pm (utc) on Oct. 31, 2005]
[edit reason] removed hosting-specifics [/edit]
Thanks for any info
This might help. If you can get a script to run in the cgi-bin this little script can tell you information about the server setup:
#!/usr/bin/perl
print "Content-type: text/html\n\n";
foreach $key (sort keys(%ENV)) {
printf("<font color=red>%-10.20s:</font> <font color=blue><b>$ENV{$key}</b></font><br>", $key);
}
exit;
you will see things such as:
DOCUMENT_ROOT: (this is the path to your www root folder)
and othe ENV variables. sendmail is usually:
/usr/lib/sendmail
but can be different.
check around on your host for the common paths you need to use in your cgi scripts, they generally have a listing somewhere to show where sendmail, time, and other applications are that you may need to access.
[edited by: coopster at 2:58 pm (utc) on Oct. 31, 2005]
[edit reason] removed hosting-specific comments [/edit]