On 1-Sep-04, at 3:57 AM, M.v.Buytene wrote:

         Limit          => {
                METHODS => 'GET POST',
                require => 'valid-user',
                Order => 'allow,deny',
                Allow => 'from all',
         },


Apparently, the documentation is wrong (which is why I
ended up fixing mod_info and creating the mod_info/mod_perl
patch I announced a couple of days ago.

The following works:

         Limit => {
           'GET POST' => {
                require => 'valid-user',
                Order => 'allow,deny',
                Allow => 'from all',
            },
         }

---------
Rici
Apache hacks at: <http://rici.ricilake.net/src>


-- Report problems: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html List etiquette: http://perl.apache.org/maillist/email-etiquette.html



Reply via email to