> > >
> > > Any other ideas ?
> > >
> >
> > Not so much. Maybe you can try to use <Directory> Blocks, instead of
> > <Location> and see if this changes anything (they are handle slightly
> > different inside of Apache)
> 
> Yeah, I had tried the <Directory> blocks first. Sigh.
> 
> ~Baiju

Just an idea, as a workaround:

If you want to achieve the effect of having two seperate
EMBPERL_OBJECT_BASE documents, why not just have one in the root
directory of your site, named (say) root_base.html and  have it include
a file called base.html. You then redefine base.html in whatever
subdirectories you have. In other words, using the "file inheritance" of
EmbperlObject you can achieve much the same effect as having two
separate base.html's. For example:

In httpd.conf:

        <Location />
                PerlSetEnv EMBPERL_OBJECT_BASE root_base.html
                PerlSetEnv EMBPERL_FILESMATCH "\.html"
                SetHandler perl-script
                PerlHandler HTML::EmbperlObject
                Options ExecCGI FollowSymLinks
        </Location>

/root_base.html

        [- Execute ('base.html') -]

/base.html

        (do some stuff relevant to the root of your website)

/login/base.html

        (do some stuff relevant to login)

I know this doesn't fix your specific problem, but it might help...

-Neil

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

Reply via email to