Re: PerlAccessHandler for POST access

"Edward J. Sabol" <[email protected]> Thu, 4 Aug 2022 05:04:26 -0400
Newsgroups gmane.comp.apache.mod-perl
Message-ID <[email protected]>
> On Aug 4, 2022, at 3:29 AM, pengyh <[email protected]> wrote:
> OK as you can test this GET works:
> 
> http://fb.cloudcache.net/?timestamp=12345&authkey=906434463477769dba188a4b670ef425
> 
> but this POST doesn't work:
> 
> curl -X POST -d 'timestamp=12345' \
> 	     -d 'authkey=906434463477769dba188a4b670ef425' \
> 	     http://fb.cloudcache.net/
> 
> The server responds with:
> 
> <h1>Forbidden</h1>
> <p>You don't have permission to access this resource.</p>
> 
> So how to fix it?

Hmmm.... Do you have

LoadModule apreq_module modules/mod_apreq2.so

in your httpd.conf?

Have you tried it with mpm_prefork?

What version of Apache and mod_perl are you using exactly?

Later,
Ed