Re: Upgrading a mod_perl application from Apache 2.2 to Apache 2.4

2018-11-30 Thread tomcat
On 30.11.2018 10:58, Andrew Green wrote: Hi, The time has finally come for me to update my mod_perl CMS from Apache 2.2 to Apache 2.4, but I’m struggling to find documentation on the changes required. The docs on perl.apache.org don’t seem to mention anything specific to Apache 2.4, and the A

Re: Upgrading a mod_perl application from Apache 2.2 to Apache 2.4

2018-11-30 Thread Adam Prime
Here's Everything stuff I ran into, not all of which have anything to do with mod_perl: I had to change all my 'Order' directives into the new 'Require' style Related to that, I had to stop using 'require' as described here in my auth stuff. https://perl.apache.org/docs/2.0/api/Apache2/Access

Re: Upgrading a mod_perl application from Apache 2.2 to Apache 2.4

2018-11-30 Thread Sujeeva Seneviratne
If you have an Authen handler, you may need this change:Debug Apache 2.4 PerlAuthenHandler | | | | || | | | | | Debug Apache 2.4 PerlAuthenHandler I am trying to debug a problem that occured after an apache upgrade. I want to integrate redmine into my apache ... |

Re: Upgrading a mod_perl application from Apache 2.2 to Apache 2.4

2018-11-30 Thread Vincent Veyron
On Fri, 30 Nov 2018 09:58:01 + Andrew Green wrote: > > Does anyone know of a summary of the changes to mod_perl application code > required, I had to : -modify the configuration files of my virtual hosts to include the new 'Require all granted' directive, as explained in http://httpd.a

Re: Upgrading a mod_perl application from Apache 2.2 to Apache 2.4

2018-11-30 Thread Adam Prime
There isn’t currently any good documentation for this migration. I went through it myself a few months ago, and I ended up using the https changes doc to help me when I got strange errors. https://httpd.apache.org/docs/2.4/upgrading.html I was able to get everything working after some fooling

Re: Upgrading a mod_perl application from Apache 2.2 to Apache 2.4

2018-11-30 Thread John D Groenveld
In message , Andrew Green writes: >The time has finally come for me to update my mod_perl CMS from Apache 2.2 to >Apache 2.4, but I'm struggling to find documentation on the changes required You must configure httpd-2.4 --with-mpm=prefork. John groenv...@acm.org

Upgrading a mod_perl application from Apache 2.2 to Apache 2.4

2018-11-30 Thread Andrew Green
Hi, The time has finally come for me to update my mod_perl CMS from Apache 2.2 to Apache 2.4, but I’m struggling to find documentation on the changes required. The docs on perl.apache.org don’t seem to mention anything specific to Apache 2.4, and the Apache server documentation talks about its