Hi, to find any path on your server, just throw the script below in any directory (any directory that you can use CGIs in, that is), chmod it 755 and call it from your browser. It will show you the serverpath on your screen
Code:
#!/usr/local/bin/perl
print "Content-type: text/html\n\n";
print "<html><head></head><body>\n";
print "Your path is working and pointing to Perl version:<p>\n";
print "<B>$]</B><p>\n";
print "The complete path to this script is:<p>\n";
print "<B>$ENV{'SCRIPT_FILENAME'}</B><p>\n";
print "The relative URL of this script is:<p>\n";
print "<B>$ENV{'SCRIPT_NAME'}</B>\n";
print "</body></html>\n";
exit;
About the .htaccess; "AuthGroupFile /dev/null" is the filename containing a list of groups and the users they include. "Null" means it doesn't exist. Not sure if it is required.