| Basic
Server Information and Paths
Most Important Paths:
•Into
which directory do your Website's HTML and image files go?
Your Website's HTML and image files go into
the public_html folder.
•The
absolute path (if ever needed) is:
/home/yourusername/public_html
•The
absolute path for CGI is:
/home/yourusername/public_html/cgi-bin
What is the path to Perl?
#!/usr/bin/perl
In most CGI scripts the standard path line is therefore: #!/usr/bin/perl
And the path to sendmail?
/usr/sbin/sendmail
|