Re: Apache 2.4 Upgrade

2015-06-17 Thread Damyan Ivanov
-=| John Dunlap, 16.06.2015 18:28:20 -0400 |=- > Remembering that hash key order is supposed to be random, I changed > it to > this for testing purposes: > BEGIN > sub set_cookie { > my ($this, $args) = @_; > my $values; > > assert_hashref($args); > > $values .= sprintf("session=%s; ",

Re: Apache 2.4 Upgrade

2015-06-16 Thread John Dunlap
: > >> * John Dunlap wrote: >> >> > Date: Mon, 15 Jun 2015 17:20:09 -0400 >> > From: John Dunlap >> > To: "Kevin A. McGrail" >> > CC: Vincent Veyron , mod_perl list >> > >> > Subject: Re: Apache 2.4 Upgrade >> > >

Re: Apache 2.4 Upgrade

2015-06-16 Thread John Dunlap
> > From: John Dunlap > > To: "Kevin A. McGrail" > > CC: Vincent Veyron , mod_perl list > > > > Subject: Re: Apache 2.4 Upgrade > > > > Where do I get the source for 2.09-rc3? I don't see a tag for it in SVN. > > http://people.apache.

Re: Apache 2.4 Upgrade

2015-06-15 Thread Jie Gao
* John Dunlap wrote: > Date: Mon, 15 Jun 2015 17:20:09 -0400 > From: John Dunlap > To: "Kevin A. McGrail" > CC: Vincent Veyron , mod_perl list > > Subject: Re: Apache 2.4 Upgrade > > Where do I get the source for 2.09-rc3? I don't see a tag for i

Re: Apache 2.4 Upgrade

2015-06-15 Thread Vincent Veyron
On Mon, 15 Jun 2015 17:02:12 -0400 John Dunlap wrote: > I am getting the client ip address in every request and checking it against > an access control list which is stored in my database(so that the user can > maintain the ACL's without the assistance of an administrator). These are > the code s

Re: Apache 2.4 Upgrade

2015-06-15 Thread John Dunlap
Where do I get the source for 2.09-rc3? I don't see a tag for it in SVN. On Mon, Jun 15, 2015 at 5:12 PM, Kevin A. McGrail wrote: > On 6/15/2015 5:02 PM, John Dunlap wrote: > > I am getting the client ip address in every request and checking it > against an access control list which is stored i

Re: Apache 2.4 Upgrade

2015-06-15 Thread Kevin A. McGrail
On 6/15/2015 5:02 PM, John Dunlap wrote: I am getting the client ip address in every request and checking it against an access control list which is stored in my database(so that the user can maintain the ACL's without the assistance of an administrator). These are the code snippets which are g

Re: Apache 2.4 Upgrade

2015-06-15 Thread John Dunlap
I am getting the client ip address in every request and checking it against an access control list which is stored in my database(so that the user can maintain the ACL's without the assistance of an administrator). These are the code snippets which are grabbing the IP address: Begin Snippet 1

Re: Apache 2.4 Upgrade

2015-06-15 Thread Kevin A. McGrail
On 6/15/2015 4:56 PM, John Dunlap wrote: Could that result in inconsistent request behavior? Because one of the things that I'm noticing is that, for no apparent reason, sometimes I can log in normally and sometimes I can't with identical request parameters(even if I delete the session and rest

Re: Apache 2.4 Upgrade

2015-06-15 Thread John Dunlap
Could that result in inconsistent request behavior? Because one of the things that I'm noticing is that, for no apparent reason, sometimes I can log in normally and sometimes I can't with identical request parameters(even if I delete the session and restart the server in between). On Mon, Jun 15,

Re: Apache 2.4 Upgrade

2015-06-15 Thread Vincent Veyron
On Mon, 15 Jun 2015 15:30:00 -0400 John Dunlap wrote: > My thought in contacting the list, at > this point, was to(hopefully) get some idea of what has changed so that I > could have a better idea of where to start looking for problems. > I've had a problem with the priority of perloutputfilter

Re: Apache 2.4 Upgrade

2015-06-15 Thread Kevin A. McGrail
On 6/15/2015 3:30 PM, John Dunlap wrote: One thing I have noticed is that sometimes some of my objects seem to persist between Apache restarts(which makes no sense to me at all). The concrete behavior that I'm seeing is that I can't log into my application. The problem could very well be a bug

Re: Apache 2.4 Upgrade

2015-06-15 Thread John Dunlap
One thing I have noticed is that sometimes some of my objects seem to persist between Apache restarts(which makes no sense to me at all). The concrete behavior that I'm seeing is that I can't log into my application. The problem could very well be a bug in my code but, if it is, I'm not sure why i

Re: Apache 2.4 Upgrade

2015-06-15 Thread Kevin A. McGrail
On 6/15/2015 3:14 PM, John Dunlap wrote: root@cosmos:~# dpkg -l libapache2-mod-perl2 Desired=Unknown/Install/Remove/Purge/Hold | Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend |/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad) ||/ Name

Re: Apache 2.4 Upgrade

2015-06-15 Thread John Dunlap
root@cosmos:~# dpkg -l libapache2-mod-perl2 Desired=Unknown/Install/Remove/Purge/Hold | Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend |/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad) ||/ Name Version Architectur

Re: Apache 2.4 Upgrade

2015-06-15 Thread John Dunlap
root@cosmos:/var/log/apache2# perl -Mmod_perl2\ 999 mod_perl2 version 999 required--this is only version 2.09. BEGIN failed--compilation aborted. root@cosmos:/var/log/apache2# On Mon, Jun 15, 2015 at 2:30 PM, Kevin A. McGrail wrote: > On 6/15/2015 1:38 PM, John Dunlap wrote: > >> I'm trying

Re: Apache 2.4 Upgrade

2015-06-15 Thread Kevin A. McGrail
On 6/15/2015 1:38 PM, John Dunlap wrote: I'm trying to upgrade my application from Apache 2.2.22(Debian 7) to Apache 2.4.10(Debian 8) and I'm running into some truly weird behaviors that I'm having trouble tracking down. I'm not sure if it's a bug in my code(most likely) or a bug in mod_perl.

Apache 2.4 Upgrade

2015-06-15 Thread John Dunlap
I'm trying to upgrade my application from Apache 2.2.22(Debian 7) to Apache 2.4.10(Debian 8) and I'm running into some truly weird behaviors that I'm having trouble tracking down. I'm not sure if it's a bug in my code(most likely) or a bug in mod_perl. Are there any behavioral changes that I shoul