Hello everyone. I had my server set up before to make it so specified users can have their own cgi-bin. I can't seem to remember how I did it before. And stupid me, I didn't write it down. Here's what I have so far...
 
<Directory /home/*/public_html>
  Options Indexes FollowSymLinks Includes MultiViews
  AllowOverride None
  Order allow,deny
  Allow from all
</Directory>
 
ScriptAlias /~jmchenry/public_html/cgi-bin/ "/home/jmchenry/public_html/cgi-bin/"
 
<Directory /home/jmchenry/public_html/cgi-bin>
  Options ExecCGI
  AllowOverride Options
  Order allow,deny
  Allow from all
</Directory>
 
 
All that I am getting when I try to run the script is the text of the file, it's not running any scripts.
 
Let me know what I'm doing wrong...
 
Thanks,
Jake

Reply via email to