Lionel Benhaim wrote:
]- add to your startup.pl file, something like this :
use Apache::ASP ();
Apache::ASP->Loader('/home/httpd/project/', "(asp|htm|html)\$");
You must have first in httpd.conf something like this :
PerlRequire /home/httpd/project/global/startup.pl
Or you can add it directly in httpd.conf :
<Perl>
Apache::ASP->Loader('/home/httpd/project/', '(asp|htm|html)$');
</Perl>
HtH
=====
iVAN
[EMAIL PROTECTED]
=====
> Hi everybody,
>
> Please,
> I'm beginer in Apache and ASP on Linux.
> I would like to know how can i precompile or compile the ASP.
> I have seen in the docs ASP the fonction Loader(), but i don't
> understand how to use it, and where i must put it.
>
> Thank you very much :)