Ismael Touama wrote:
> 
> hi,
> ...
> 
> I put this in my httpd.conf:
> # OK for security problem
>       <Directory / >
>         Options FollowSymLinks
>         AllowOverride All
>       </Directory>

Try: ( from http://www.apache-asp.org/install.html#Quick%20Start )

<Directory $DOCUMENT_ROOT/asp/eg >
  Options FollowSymLinks
  AllowOverride All
</Directory>

To copy the entire site, including the examples, you might 
do a raw directory copy as in: 

shell> cp -rpd ./site $DOCUMENT_ROOT/asp

----------------
$DOCUMENT_ROOT is probably /usr/local/apache/htdoc/ but might
be something else
----------------

Do this exactly, not <Directory / > because there might
be another AllowOverride None in your config somewhere else.

Also, do the cp -rpd of the entire directory so you are
sure to pick up the .htaccess in .site/eg/

Once you get the examples working, you can start building
your own configs in httpd.conf, but try to get the examples
working first.

--Josh
_________________________________________________________________
Joshua Chamas                           Chamas Enterprises Inc.
NodeWorks Founder                       Huntington Beach, CA  USA 
http://www.nodeworks.com                1-714-625-4051

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to