[modwsgi] compiling issue

2012-06-04 Thread nitin chandra
Hello All, I need to know what am I doing wrong to get the following error : { I have Ubuntu 12.04 server 64bit on Intel i3, I compiled and installed a working apache 2.4.2, the default install of python is 2.7.3,still I compiled and installed python 2.7.3 in /opt/python273 as I was getting compi

Re: [modwsgi] compiling issue

2012-06-04 Thread Carl Nobile
Have you installed both the dev packages for Apache and python? This is often the reason for these types of errors. On Jun 4, 2012 9:28 AM, "nitin chandra" wrote: > Hello All, > > I need to know what am I doing wrong to get the following error : > > { I have Ubuntu 12.04 server 64bit on Intel i

Re: [modwsgi] compiling issue

2012-06-04 Thread Filipe Cifali
This is cause mod_wsgi didnt updated his API to the new Apache 2.4 API, just a few changes are needed for most modules, but I strongly suggest that you install Apache 2.2.x now. 2012/6/4 nitin chandra > Hello All, > > I need to know what am I doing wrong to get the following error : > > { I have

Re: [modwsgi] compiling issue

2012-06-04 Thread Filipe Cifali
No, its an Apache API change. remote_addr -> client_addr remote_ip -> client_ip This is the cause of almost all OLD UNUPDATED modules issue. 2012/6/4 Carl Nobile > Have you installed both the dev packages for Apache and python? > > This is often the reason for these types of errors. > On Jun

Re: [modwsgi] compiling issue

2012-06-04 Thread nitin chandra
I did a ./configure to compile and install apache and python to /opt in their respective sub directories. So do I need to compile apache again? If yes, then what modules do I need to add to :- ./configure --prefix=/opt/apache24 --enable-v4-mapped --enable-mod-shared="all" --enable-modules="all"

Re: [modwsgi] compiling issue

2012-06-04 Thread Filipe Cifali
Just don't compile Apache 2.4.x now. Use Apache 2.2.x OR Port mod_wsgi to Apache 2.4.x API 2012/6/4 nitin chandra > I did a > > ./configure to compile and install apache and python to /opt in their > respective sub directories. > > So do I need to compile apache again? If yes, then what modul

Re: [modwsgi] compiling issue

2012-06-04 Thread nitin chandra
> Just don't compile Apache 2.4.x now. > > Use Apache 2.2.x > Will do after the next suggestion. > OR > > Port mod_wsgi to Apache 2.4.x API How do we do that ? Pl guide in this. Thanks Nitin -- You received this message because you are subscribed to the Google Groups "modwsgi" group. To po

Re: [modwsgi] compiling issue

2012-06-04 Thread Filipe Cifali
Am I the only one that reads the docs? http://httpd.apache.org/docs/trunk/developer/new_api_2_4.html 2012/6/4 nitin chandra > > Just don't compile Apache 2.4.x now. > > > > Use Apache 2.2.x > > > Will do after the next suggestion. > > > > OR > > > > Port mod_wsgi to Apache 2.4.x API > > How do

Re: [modwsgi] compiling issue

2012-06-04 Thread Graham Dumpleton
If you want to use mod_wsgi 3.3 then use Apache 2.2. If you want to use Apache 2.4, use mod_wsgi 3.4 from source code repository. http://code.google.com/p/modwsgi/wiki/ChangesInVersion0304 I would recommend using Apache 2.2 and mod_wsgi 3.3 unless you are fully comfortable with doing Mercurial c

Re: [modwsgi] compiling issue

2012-06-04 Thread Filipe Cifali
That's some nice, unespected, support now. 2012/6/4 Graham Dumpleton > If you want to use mod_wsgi 3.3 then use Apache 2.2. > > If you want to use Apache 2.4, use mod_wsgi 3.4 from source code > repository. > > http://code.google.com/p/modwsgi/wiki/ChangesInVersion0304 > > I would recommend usin