Configured to use CGI

Posted by: admin at 11 Monday 5th, 2008

httpd.conf and fixes.
httpd.conf is usually located below.
 /usr/local/apache2/conf 
Or
 /usr/local/etc/apache2 

Commented out of the bullet (#), remove the
httpd.conf
 AddHandler cgi-script .cgi 

Options to change the directive
httpd.conf
 <Directory />
     
Options ExecCGI FollowSymLinks Includes MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>

URL from the "~" (tilde) to eliminate

Posted by: admin at 11 Monday 5th, 2008

httpd.conf and fixes.
httpd.conf is usually located below.
 /usr/local/apache2/conf 
Or
 /usr/local/etc/apache2 

httpd.conf
 Alias / USERNAME / "/home/ USERNAME /public_html/"
<Directory "/home/ USERNAME /public_html">
   
Options Indexes MultiViews
   
AllowOverride None
   
Order allow,deny
   
Allow from all
</Directory>
Directory in the directive is an example. Please change if necessary.