Closed GoogleCodeExporter closed 8 years ago
There is no such things as Apache 3.
If you mean Apache 2.3, you shouldn't really use that as that was a development
stream of Apache. You should be using Apache 2.2 or Apache 2.4.
I perhaps suspect though that the problem may be that you are using Apache 1.3.
It is quite possible from looking at the mod_wsgi code, that Apache 1.3 may not
work if you are using Python 2.7 or later.
If it is Apache 1.3, then perhaps go back and try mod_wsgi 3.3 instead. Better
still, stop using Apache 1.3 as it is no longer supported by the Apache
software foundation. Support for Apache 1.3 was being dropped completely in
mod_wsgi 4.0. If I have managed to break support for it in mod_wsgi 3.4 by
accident, not sure if I will be in a hurry to fix it it at all since Apache 1.3
should no longer be used.
Original comment by Graham.Dumpleton@gmail.com
on 19 Mar 2013 at 12:52
Apache 1.3 it is , sorry, mistyped.
The version of Apache 1.3 is maintained by OpenBSD. Apache 2 currently does not
work with PHP on that machine for some reason. Thanks for the hints, I will
check.
Original comment by tpfen...@gmail.com
on 19 Mar 2013 at 6:36
I can report back, that compilation indeed works perfectly with version 3.3.
Thank you!
Original comment by tpfen...@gmail.com
on 19 Mar 2013 at 9:07
This issue only exists with mod_wsgi 3.4 code. It is because of a faulty
preprocessor check. The functions were only being implemented when had:
#if AP_SERVER_MAJORVERSION_NUMBER >= 2
Should have been:
#if PY_MAJOR_VERSION == 2 && PY_MINOR_VERSION >= 6
Issue doesn't exist in mod_wsgi 4.0 code.
Original comment by Graham.Dumpleton@gmail.com
on 28 Mar 2013 at 6:21
Fixed in:
https://github.com/GrahamDumpleton/mod_wsgi/tree/mod_wsgi-3.X
Original comment by Graham.Dumpleton@gmail.com
on 28 Mar 2013 at 6:24
Original comment by Graham.Dumpleton@gmail.com
on 28 Mar 2013 at 6:41
Original comment by Graham.Dumpleton@gmail.com
on 12 Nov 2014 at 10:21
Original issue reported on code.google.com by
tpfen...@gmail.com
on 18 Mar 2013 at 9:17