I have a really strange behavior while using Mason,
For example:

I have an index.html file ( that contains mason tags like <% $var %> hello ).

When I'm browsing to "http://bla.com/index.html" - the variable is translated during compilation.

But there's a strange behavior when I'm browsing to "http://bla.com/index" Though there's no file called "index" ( only index.html ) it still loads "index.html" and the entire code is shown as plain/text including the "<% ... %>" !!!

What have I configured wrong ?

this is my Apache configuration:

<VirtualHost *:80>
        ServerAdmin webmaster@abc.com
        ServerAlias abc.com www.abc.com
        ServerName abc.com


        DocumentRoot /var/www/abc.com
        DirectoryIndex index.html

        <Directory "/var/www/abc.com/">
                Options FollowSymLinks MultiViews
                AllowOverride All

                Order allow,deny
                allow from all
        </Directory>

        SetHandler perl-script
        PerlModule HTML::Mason::ApacheHandler
        PerlSetVar MasonUseObjectFiles 1   

        <LocationMatch "(\.html|\.txt|\.pl|\.js)$">
                SetHandler perl-script
                PerlHandler HTML::Mason::ApacheHandler
        </LocationMatch>

        <LocationMatch "(\.m(html|txt|pl)|dhandler|autohandler)$">
                SetHandler perl-script
                PerlHandler Apache::Constants::NOT_FOUND
        </LocationMatch>

link|improve this question

58% accept rate
feedback

1 Answer

Why the webserver automagically 1.) translates index into index.html and 2.) still insists on treat it specially (it apparently don't feed it into the PerlHandler as it should) I honestly don't know (perhaps the answer is elsewhere in your configuration).

However, you could as a work around try to add 'index' (or perhaps rather'^index') to the regex that defined what files should be dispached to HTML::Mason::ApacheHandler. I do admit it is a bit ugly though.

Am I correct that once you load the 'index' page and get that verbatim code displayed, once you check out the page info, the encoding is literally 'plain/text'? Perhaps you need to configure some mime settings to ensure that files without suffixes (files not ending with .html etc) are not sent to the remote browser at all, not even as 'plain/text'?

link|improve this answer
Hey, thanks for you answer, though i don't want to add each file to the REGEX ( it's a security hole once i'll forget to add a different file ) – Ricky Apr 18 '11 at 14:45
The mime for plain/text not bothering me because it's not suppose to load it in the first place ... the webserver like adding it's own ".html" in the background or something, since it's happening with every file in the directory ... – Ricky Apr 18 '11 at 14:46
Hm, I think I was too impatient when I jumped the gun and provided the answer above. (I'm tempted to vote down my own answer...). Just to understand the behaviour of your web server: if you call a file foo.html, will that file as well be retrieved (in literal verbatim with a mime type of 'plain/text') when you provide the URL "bla.com/foo"; ? – IllvilJa Apr 18 '11 at 18:59
If you create a file called 'index' (with a very basic HTML document structure, only for testing if your web browser retrieves and displays it as HTML or as plain/text) in the same directory as the file 'index.html', what happens if you try to access "bla.com/index";? Also, what happens if you remove the 'MultiViews' option or replace it with '-MultiViews' and then tries to access "bla.com/index";? I did some research and MultiViews seem to trigger some "renaming behind the scenes" of the file you try to access if some files you try to access happen to be missing. – IllvilJa Apr 18 '11 at 19:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.