Hi guys, I've just installed embperl on my system and configured
apache to use
HTML::Embperl handler on the main page (index.html contains embperl code).
The problem is images referenced by index.html fail to show up on
both IE5 and
NS4.6 (PC version). Netscape would tell me that I don't have
permission to access
the images whereas IE5 would allow me to show the images individually by
right-selecting 'show picture'. The funny is if I comment out the
part associated with
Embperl (the whole <Location /> ... </Location>) then the images
show up correctly
with both IE5 and NS4.6. Does anyone know why? Thanks in advance for
comments.
My system is running Suse 6.1 (intel) with apache
1.3.9/mod_perl-1.21/Embperl-1.2.0
statically compiled.
<VirtualHost 192.168.0.71:80>
....
DocumentRoot /xyz/public_html
<Alias /images/ "/xyz/public_html/images/"
....
<Location />
SetHandler perl-script
PerlHandler HTML::Embperl
Options +ExecCGI
AllowOverride None
Order allow,deny
Allow from all
</Location>
<Location /images>
Options MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Location>
....
</VirtualHost>
Regards,
Jasper
[EMAIL PROTECTED]