Merhaba,
FreeBsd de yeniyim.
Apache web serverıma http://www.apache-asp.org/install.html
sayfasından asp yükleme çalışıyorum.
Bu sayfadaki aşağıdaki kısımları anlamadım.
Mod perl kurdum.Ondan sonraki adımları anlamadım.Yapmam gerekenleri
komut şeklinde yazabilirmisiniz?
teşekkürler,iyi çalışmalar
Quick Start
Once you have successfully built the Apache Web Server with mod_perl,
copy the ./site/eg/ directory from the Apache::ASP installation to
your Apache document tree and try it out! You must put "AllowOverride
All" in your httpd.conf <Directory> config section to let the
.htaccess file in the ./site/eg installation directory do its work. If
you want a starter config file for Apache::ASP, just look at the
.htaccess file in the ./site/eg/ directory.
So, you might add this to your Apache httpd.conf file just to get the
scripts in ./site/eg working, where $DOCUMENT_ROOT represents the
DocumentRoot config for your apache server:
<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
So you could then reference the Apache::ASP docs at /asp/ at your
site, and the examples at /asp/eg/ .
This is not a good production configuration, because it is insecure
with the FollowSymLinks, and tells Apache to look for .htaccess which
is bad for performance but it should be handy for getting started with
development.