Finding a copy of Windows is proving to be the issue. The Windows 7 disk I have I can't find the license key for, so am having to restart back to Windows XP 32 bit version to try and test it.
Best I will be able to manage is to clean up the build script provided by the person who has been building the binaries so that is easily understood and modified to suit a specific users setup and then so long as you have compiler installed yourself for compiling Python extension modules, show you how you can compile a binary yourself. With that I can try things myself and if find changes needed then push it to github and then explain how you can compile the code yourself to get a mod_wsgi.so file. Going to take me a number of days though as backlogged with stuff right now. Graham On 10/12/2014, at 3:20 AM, Nick Abelson <nick.abel...@gmail.com> wrote: > Thanks Graham > I will happily be your guinea pig for testing if that helps? > > > ------ Original Message ------ > From: "Graham Dumpleton" <graham.dumple...@gmail.com> > To: modwsgi@googlegroups.com > Sent: 09/12/2014 03:18:24 > Subject: Re: [modwsgi] RuntimeError: The 'apxs' command appears not to be > installed or is not executable. > >> No new ideas. I need to find time to build a Windows VM and compile myself >> from code and test. The binary you are using is done by someone else and >> given that has been a long time since even tested on Windows, with al the >> changes in 4.X, am not surprised there might be issues. >> >> Graham >> >> On 08/12/2014, at 8:34 PM, Nick Abelson <nick.abel...@gmail.com> wrote: >> >>> Hi Graham >>> I hope you had a good weekend. Have you had any thoughts about what I need >>> to do next? The last test worked but not sure where that has gotten us! >>> All the best >>> Nick >>> >>> ------ Original Message ------ >>> From: "Graham Dumpleton" <graham.dumple...@gmail.com> >>> To: modwsgi@googlegroups.com >>> Sent: 04/12/2014 12:21:42 >>> Subject: Re: [modwsgi] RuntimeError: The 'apxs' command appears not to be >>> installed or is not executable. >>> >>>> In this latest test you wouldn't have needed: >>>> >>>> <Location /> >>>> Require all granted >>>> </Location> >>>> >>>> Actually, didn't need that for the previous one either. >>>> >>>> The URL for the latest test would have been: >>>> >>>> http://localhost/ >>>> >>>> although if you added anything after it it wouldn't have mattered as still >>>> should have all gone to the hello world. So you shouldn't have got not >>>> found. >>>> >>>> When you say: >>>> >>>> """I've just tried it again and I get the wsgi message at localhost - >>>> which I believe is a step forward?!""" >>>> >>>> I do not know what you mean. Are you seeing the 'Hello World!' from the >>>> WSGI test program? >>>> >>>> Anyway, sleep time again. >>>> >>>> Graham >>>> >>>> On 04/12/2014, at 11:09 PM, "Nick Abelson" <nick.abel...@gmail.com> wrote: >>>> >>>>> I've just tried it again and I get the wsgi message at localhost - which >>>>> I believe is a step forward?! >>>>> >>>>> ------ Original Message ------ >>>>> From: "Nick Abelson" <nick.abel...@gmail.com> >>>>> To: modwsgi@googlegroups.com >>>>> Sent: 04/12/2014 11:41:11 >>>>> Subject: Re[2]: [modwsgi] RuntimeError: The 'apxs' command appears not to >>>>> be installed or is not executable. >>>>> >>>>>> Ok - that was the line i removed in favour of a blanket allow access, i >>>>>> believe >>>>>> so i now have at the bottom of the config file: >>>>>> #WSGIScriptAlias / >>>>>> 'C:\Users\nicka_000\Documents\Coding\websites_go_here\WSGI_test\wsgi.py' >>>>>> <Directory >>>>>> 'C:\Users\nicka_000\Documents\Coding\websites_go_here\WSGI_test'> >>>>>> Options ExecCGI >>>>>> AddHandler wsgi-script .wsgi >>>>>> Require all granted >>>>>> </Directory> >>>>>> >>>>>> Alias / >>>>>> 'C:\Users\nicka_000\Documents\Coding\websites_go_here\WSGI_test\hello.wsgi' >>>>>> >>>>>> <Location /> >>>>>> Require all granted >>>>>> </Location> >>>>>> >>>>>> I have run localhost and I get the apache message appearing >>>>>> when i do localhost/hello.wsgi I get file not found (I have changed the >>>>>> name of the file as instructed. >>>>>> >>>>>> ------ Original Message ------ >>>>>> From: "Graham Dumpleton" <graham.dumple...@gmail.com> >>>>>> To: modwsgi@googlegroups.com >>>>>> Sent: 04/12/2014 11:27:50 >>>>>> Subject: Re: [modwsgi] RuntimeError: The 'apxs' command appears not to >>>>>> be installed or is not executable. >>>>>> >>>>>>> You should already previously had: >>>>>>> >>>>>>> <Directory >>>>>>> 'C:\Users\nicka_000\Documents\Coding\websites_go_here\WSGI_test'> >>>>>>> Require all granted >>>>>>> </Directory> >>>>>>> >>>>>>> from the attempt to do the hello world with WSGIScriptAlias. >>>>>>> >>>>>>> This would have been at the end of the Apache configuration file. >>>>>>> >>>>>>> What we are doing is adding two extra lines to it to yield: >>>>>>> >>>>>>> <Directory >>>>>>> 'C:\Users\nicka_000\Documents\Coding\websites_go_here\WSGI_test'> >>>>>>> Options ExecCGI >>>>>>> AddHandler wsgi-script .wsgi >>>>>>> Require all granted >>>>>>> </Directory> >>>>>>> >>>>>>> You are then adding a new directive following after (or before) that >>>>>>> Directory directive block. >>>>>>> >>>>>>> Alias / >>>>>>> 'C:\Users\nicka_000\Documents\Coding\websites_go_here\WSGI_test\hello.wsgi' >>>>>>> >>>>>>> Also rename the wsgi.py file in that WSGI_test directory from the prior >>>>>>> WSGIScriptAlias test, changing the name to hello.wsgi. >>>>>>> >>>>>>> The Alias directive for / should override the use of DocumentRoot. >>>>>>> >>>>>>> What I am asking you to change it to mirrors what WSGIScriptAlias >>>>>>> actually does. That is, is similar to what is described in: >>>>>>> >>>>>>> * >>>>>>> http://code.google.com/p/modwsgi/wiki/ConfigurationGuidelines#The_Apache_Alias_Directive >>>>>>> >>>>>>> Read that document if you want to try and understand better the >>>>>>> differences. >>>>>>> >>>>>>> Graham >>>>>>> >>>>>>> On 04/12/2014, at 10:21 PM, "Nick Abelson" <nick.abel...@gmail.com> >>>>>>> wrote: >>>>>>> >>>>>>>> Sorry Graham >>>>>>>> I am getting a bit lost in the file now... are those two separate >>>>>>>> entries to add? Where do I add them? Am I deleting anything that I >>>>>>>> have just added? >>>>>>>> >>>>>>>> ------ Original Message ------ >>>>>>>> From: "Graham Dumpleton" <graham.dumple...@gmail.com> >>>>>>>> To: modwsgi@googlegroups.com >>>>>>>> Sent: 04/12/2014 11:15:50 >>>>>>>> Subject: Re: [modwsgi] RuntimeError: The 'apxs' command appears not to >>>>>>>> be installed or is not executable. >>>>>>>> >>>>>>>>> Now try this then: >>>>>>>>> >>>>>>>>> Alias / >>>>>>>>> 'C:\Users\nicka_000\Documents\Coding\websites_go_here\WSGI_test\hello.wsgi' >>>>>>>>> >>>>>>>>> <Directory >>>>>>>>> 'C:\Users\nicka_000\Documents\Coding\websites_go_here\WSGI_test'> >>>>>>>>> Options ExecCGI >>>>>>>>> AddHandler wsgi-script .wsgi >>>>>>>>> Require all granted >>>>>>>>> </Directory> >>>>>>>>> >>>>>>>>> Rename the wsgi.py you had in that directory to hello.wsgi >>>>>>>>> >>>>>>>>> On 04/12/2014, at 9:43 PM, "Nick Abelson" <nick.abel...@gmail.com> >>>>>>>>> wrote: >>>>>>>>> >>>>>>>>>> Glad I'm not the only one! >>>>>>>>>> Yes that works! I get the hello world message. >>>>>>>>>> >>>>>>>>>> I already had the ExecCGI line in there as had been experimenting >>>>>>>>>> with CGI scripts previously. This wouldn't have impacted what we >>>>>>>>>> were trying to do yesterday, would it? >>>>>>>>>> >>>>>>>>>> ------ Original Message ------ >>>>>>>>>> From: "Graham Dumpleton" <graham.dumple...@gmail.com> >>>>>>>>>> To: modwsgi@googlegroups.com >>>>>>>>>> Sent: 04/12/2014 00:49:18 >>>>>>>>>> Subject: Re: [modwsgi] RuntimeError: The 'apxs' command appears not >>>>>>>>>> to be installed or is not executable. >>>>>>>>>> >>>>>>>>>>> Don't know if you noticed, but got a separate report of this same >>>>>>>>>>> problem now in another email on the list. >>>>>>>>>>> >>>>>>>>>>> So something is definitely going on. >>>>>>>>>>> >>>>>>>>>>> The person who provides the Win32 builds has been working on >>>>>>>>>>> getting new builds for 4.4.1 done, so don't know if they rebuilt >>>>>>>>>>> 3.5 and whether that has caused some issue. I am trying to find out >>>>>>>>>>> if they have changed anything. >>>>>>>>>>> >>>>>>>>>>> In the mean time, lets see if we can eliminate it being an issue >>>>>>>>>>> with WSGIScriptAlias. There are a couple of ways we can do this. >>>>>>>>>>> >>>>>>>>>>> For the first one to try, go into your Apache configuration file >>>>>>>>>>> and find what it has set the DocumentRoot directive to. This direct >>>>>>>>>>> is the default place Apache looks for files when handing URL >>>>>>>>>>> requests. >>>>>>>>>>> >>>>>>>>>>> My guess is that it is going to end up being the directory: >>>>>>>>>>> >>>>>>>>>>> C:/Program Files/Apache Software Foundation/Apache2.4/htdocs >>>>>>>>>>> >>>>>>>>>>> What ever the directory is, copy the 'wsgi.py' for the hello world >>>>>>>>>>> example into that directory but rename it to 'hello.wsgi'. >>>>>>>>>>> >>>>>>>>>>> Now in the Apache configuration file do the following. >>>>>>>>>>> >>>>>>>>>>> First comment out the WSGIScriptAlias directive. >>>>>>>>>>> >>>>>>>>>>> Next go and find the Directory directive corresponding to that >>>>>>>>>>> 'htdocs' directory above. >>>>>>>>>>> >>>>>>>>>>> This example is from a UNIX system but you should find something >>>>>>>>>>> like: >>>>>>>>>>> >>>>>>>>>>> DocumentRoot "/usr/local/httpd-2.4.10/htdocs" >>>>>>>>>>> <Directory "/usr/local/httpd-2.4.10/htdocs"> >>>>>>>>>>> # >>>>>>>>>>> # Possible values for the Options directive are "None", "All", >>>>>>>>>>> # or any combination of: >>>>>>>>>>> # Indexes Includes FollowSymLinks SymLinksifOwnerMatch >>>>>>>>>>> ExecCGI MultiViews >>>>>>>>>>> # >>>>>>>>>>> # Note that "MultiViews" must be named *explicitly* --- >>>>>>>>>>> "Options All" >>>>>>>>>>> # doesn't give it to you. >>>>>>>>>>> # >>>>>>>>>>> # The Options directive is both complicated and important. >>>>>>>>>>> Please see >>>>>>>>>>> # http://httpd.apache.org/docs/2.4/mod/core.html#options >>>>>>>>>>> # for more information. >>>>>>>>>>> # >>>>>>>>>>> Options Indexes FollowSymLinks >>>>>>>>>>> >>>>>>>>>>> # >>>>>>>>>>> # AllowOverride controls what directives may be placed in >>>>>>>>>>> .htaccess files. >>>>>>>>>>> # It can be "All", "None", or any combination of the keywords: >>>>>>>>>>> # AllowOverride FileInfo AuthConfig Limit >>>>>>>>>>> # >>>>>>>>>>> AllowOverride None >>>>>>>>>>> >>>>>>>>>>> # >>>>>>>>>>> # Controls who can get stuff from this server. >>>>>>>>>>> # >>>>>>>>>>> Require all granted >>>>>>>>>>> </Directory> >>>>>>>>>>> >>>>>>>>>>> Inside if that Directory directive block, add at the end of the >>>>>>>>>>> Options directive, 'ExecCGI'. >>>>>>>>>>> >>>>>>>>>>> Then add: >>>>>>>>>>> >>>>>>>>>>> AddHandler wsgi-script .wsgi >>>>>>>>>>> >>>>>>>>>>> Thus you would have something like: >>>>>>>>>>> >>>>>>>>>>> DocumentRoot "/usr/local/httpd-2.4.10/htdocs" >>>>>>>>>>> <Directory "/usr/local/httpd-2.4.10/htdocs"> >>>>>>>>>>> # >>>>>>>>>>> # Possible values for the Options directive are "None", "All", >>>>>>>>>>> # or any combination of: >>>>>>>>>>> # Indexes Includes FollowSymLinks SymLinksifOwnerMatch >>>>>>>>>>> ExecCGI MultiViews >>>>>>>>>>> # >>>>>>>>>>> # Note that "MultiViews" must be named *explicitly* --- >>>>>>>>>>> "Options All" >>>>>>>>>>> # doesn't give it to you. >>>>>>>>>>> # >>>>>>>>>>> # The Options directive is both complicated and important. >>>>>>>>>>> Please see >>>>>>>>>>> # http://httpd.apache.org/docs/2.4/mod/core.html#options >>>>>>>>>>> # for more information. >>>>>>>>>>> # >>>>>>>>>>> Options Indexes FollowSymLinks ExecCGI >>>>>>>>>>> >>>>>>>>>>> # >>>>>>>>>>> # AllowOverride controls what directives may be placed in >>>>>>>>>>> .htaccess files. >>>>>>>>>>> # It can be "All", "None", or any combination of the keywords: >>>>>>>>>>> # AllowOverride FileInfo AuthConfig Limit >>>>>>>>>>> # >>>>>>>>>>> AllowOverride None >>>>>>>>>>> >>>>>>>>>>> # >>>>>>>>>>> # Controls who can get stuff from this server. >>>>>>>>>>> # >>>>>>>>>>> Require all granted >>>>>>>>>>> >>>>>>>>>>> AddHandler wsgi-script .wsgi >>>>>>>>>>> </Directory> >>>>>>>>>>> >>>>>>>>>>> Restart Apache and try and access the URL: >>>>>>>>>>> >>>>>>>>>>> http://localhost/hello.wsgi >>>>>>>>>>> >>>>>>>>>>> Does that even work. >>>>>>>>>>> >>>>>>>>>>> Graham >>>>>>>>>>> >>>>>>>>>>> On 04/12/2014, at 5:49 AM, Nick Abelson <nick.abel...@gmail.com> >>>>>>>>>>> wrote: >>>>>>>>>>> >>>>>>>>>>>> Added to config file httpd in the conf directory under the Apache >>>>>>>>>>>> installation after >>>>>>>>>>>> <IfModule ssl_module> >>>>>>>>>>>> SSLRandomSeed startup builtin >>>>>>>>>>>> SSLRandomSeed connect builtin >>>>>>>>>>>> </IfModule> >>>>>>>>>>>> at the end of the file: >>>>>>>>>>>> >>>>>>>>>>>> WSGIScriptAlias / >>>>>>>>>>>> 'C:\Users\nicka_000\Documents\Coding\websites_go_here\WSGI_test\wsgi.py' >>>>>>>>>>>> >>>>>>>>>>>> <Location /> >>>>>>>>>>>> Require all granted >>>>>>>>>>>> </Location> >>>>>>>>>>>> >>>>>>>>>>>> >>>>>>>>>>>> then in the directory >>>>>>>>>>>> C:\Users\nicka_000\Documents\Coding\websites_go_here\WSGI_test i >>>>>>>>>>>> have put the file wsgi.py which contains the following: >>>>>>>>>>>> def application(environ, start_response): >>>>>>>>>>>> status = '200 OK' >>>>>>>>>>>> output = 'Hello World!' >>>>>>>>>>>> response_headers = [('Content-type', 'text/plain'), >>>>>>>>>>>> ('Content-Length', str(len(output)))] >>>>>>>>>>>> start_response(status, response_headers) >>>>>>>>>>>> return [output] >>>>>>>>>>>> I've copy/pasted the code you supplied and amended in situ >>>>>>>>>>>> >>>>>>>>>>>> thanks >>>>>>>>>>>> Nick >>>>>>>>>>>> ------ Original Message ------ >>>>>>>>>>>> From: "Graham Dumpleton" <graham.dumple...@gmail.com> >>>>>>>>>>>> To: modwsgi@googlegroups.com >>>>>>>>>>>> Sent: 03/12/2014 11:50:42 >>>>>>>>>>>> Subject: Re: [modwsgi] RuntimeError: The 'apxs' command appears >>>>>>>>>>>> not to be installed or is not executable. >>>>>>>>>>>> >>>>>>>>>>>>> Sleep time. >>>>>>>>>>>>> >>>>>>>>>>>>> Provide an exact copy of the current configuration you have added >>>>>>>>>>>>> to the Apache configuration file. >>>>>>>>>>>>> >>>>>>>>>>>>> Indicate exactly where in the file you placed this. >>>>>>>>>>>>> >>>>>>>>>>>>> Make sure your editor hasn't added some fancy quote type. It >>>>>>>>>>>>> should be a normal single or double quote. >>>>>>>>>>>>> >>>>>>>>>>>>> If you have added what I said to at the end of the file, I cannot >>>>>>>>>>>>> see why it wouldn't work. >>>>>>>>>>>>> >>>>>>>>>>>>> Graham >>>>>>>>>>>>> >>>>>>>>>>>>> On 03/12/2014, at 10:44 PM, Nick Abelson <nick.abel...@gmail.com> >>>>>>>>>>>>> wrote: >>>>>>>>>>>>> >>>>>>>>>>>>>> I copy and pasted all the logs from this morning where we first >>>>>>>>>>>>>> tried "/" and then "\" >>>>>>>>>>>>>> >>>>>>>>>>>>>> I have replaced the code in the config fileand restarted the >>>>>>>>>>>>>> server but still get permissions denied. >>>>>>>>>>>>>> >>>>>>>>>>>>>> The folder where the file resides doesn't look like it has any >>>>>>>>>>>>>> odd security settings -admin and system both have access and the >>>>>>>>>>>>>> file is in the directory >>>>>>>>>>>>>> >>>>>>>>>>>>>> On Wednesday, December 3, 2014 11:09:31 AM UTC, Graham Dumpleton >>>>>>>>>>>>>> wrote: >>>>>>>>>>>>>> >>>>>>>>>>>>>> On 03/12/2014, at 9:56 PM, "Nick Abelson" <nick.a...@gmail.com> >>>>>>>>>>>>>> wrote: >>>>>>>>>>>>>> >>>>>>>>>>>>>>> [Wed Dec 03 10:55:07.568299 2014] [authz_core:error] [pid >>>>>>>>>>>>>>> 6476:tid 1192] [client ::1:58587] AH01630: client denied by >>>>>>>>>>>>>>> server configuration: >>>>>>>>>>>>>>> C:/Users/nicka_000/Documents/Coding/websites_go_here/WSGI_test/wsgi.py >>>>>>>>>>>>>> >>>>>>>>>>>>>> Are you saying this was definitely the result of using >>>>>>>>>>>>>> backslashes in the path in the Apache configuration file? >>>>>>>>>>>>>> >>>>>>>>>>>>>> Does that file definitely exist at that location? >>>>>>>>>>>>>> >>>>>>>>>>>>>> I don't like recommending it as it is removing one layer of >>>>>>>>>>>>>> security in the Apache configuration, but if only playing and >>>>>>>>>>>>>> not making this machine public, then instead of: >>>>>>>>>>>>>> >>>>>>>>>>>>>> <Directory >>>>>>>>>>>>>> 'C:\Users\nicka_000\Documents\Coding\websites_go_here\WSGI_test'> >>>>>>>>>>>>>> Require all granted >>>>>>>>>>>>>> </Directory> >>>>>>>>>>>>>> >>>>>>>>>>>>>> use: >>>>>>>>>>>>>> >>>>>>>>>>>>>> <Location /> >>>>>>>>>>>>>> Require all granted >>>>>>>>>>>>>> </Location> >>>>>>>>>>>>>> >>>>>>>>>>>>>> Graham >>>>>>>>>>>>>> >>>>>>>>>>>>>> -- >>>>>>>>>>>>>> You received this message because you are subscribed to the >>>>>>>>>>>>>> Google Groups "modwsgi" group. >>>>>>>>>>>>>> To unsubscribe from this group and stop receiving emails from >>>>>>>>>>>>>> it, send an email to modwsgi+unsubscr...@googlegroups.com. >>>>>>>>>>>>>> To post to this group, send email to modwsgi@googlegroups.com. >>>>>>>>>>>>>> Visit this group at http://groups.google.com/group/modwsgi. >>>>>>>>>>>>>> For more options, visit https://groups.google.com/d/optout. >>>>>>>>>>>>> >>>>>>>>>>>>> >>>>>>>>>>>>> -- >>>>>>>>>>>>> You received this message because you are subscribed to a topic >>>>>>>>>>>>> in the Google Groups "modwsgi" group. >>>>>>>>>>>>> To unsubscribe from this topic, visit >>>>>>>>>>>>> https://groups.google.com/d/topic/modwsgi/X_Z4FQxXVoQ/unsubscribe. >>>>>>>>>>>>> To unsubscribe from this group and all its topics, send an email >>>>>>>>>>>>> to modwsgi+unsubscr...@googlegroups.com. >>>>>>>>>>>>> To post to this group, send email to modwsgi@googlegroups.com. >>>>>>>>>>>>> Visit this group at http://groups.google.com/group/modwsgi. >>>>>>>>>>>>> For more options, visit https://groups.google.com/d/optout. >>>>>>>>>>>> >>>>>>>>>>>> >>>>>>>>>>>> >>>>>>>>>>>> This email is free from viruses and malware because avast! >>>>>>>>>>>> Antivirus protection is active. >>>>>>>>>>>> >>>>>>>>>>>> >>>>>>>>>>>> >>>>>>>>>>>> -- >>>>>>>>>>>> You received this message because you are subscribed to the Google >>>>>>>>>>>> Groups "modwsgi" group. >>>>>>>>>>>> To unsubscribe from this group and stop receiving emails from it, >>>>>>>>>>>> send an email to modwsgi+unsubscr...@googlegroups.com. >>>>>>>>>>>> To post to this group, send email to modwsgi@googlegroups.com. >>>>>>>>>>>> Visit this group at http://groups.google.com/group/modwsgi. >>>>>>>>>>>> For more options, visit https://groups.google.com/d/optout. >>>>>>>>>>> >>>>>>>>>>> >>>>>>>>>>> -- >>>>>>>>>>> You received this message because you are subscribed to a topic in >>>>>>>>>>> the Google Groups "modwsgi" group. >>>>>>>>>>> To unsubscribe from this topic, visit >>>>>>>>>>> https://groups.google.com/d/topic/modwsgi/X_Z4FQxXVoQ/unsubscribe. >>>>>>>>>>> To unsubscribe from this group and all its topics, send an email to >>>>>>>>>>> modwsgi+unsubscr...@googlegroups.com. >>>>>>>>>>> To post to this group, send email to modwsgi@googlegroups.com. >>>>>>>>>>> Visit this group at http://groups.google.com/group/modwsgi. >>>>>>>>>>> For more options, visit https://groups.google.com/d/optout. >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> This email is free from viruses and malware because avast! Antivirus >>>>>>>>>> protection is active. >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> -- >>>>>>>>>> You received this message because you are subscribed to the Google >>>>>>>>>> Groups "modwsgi" group. >>>>>>>>>> To unsubscribe from this group and stop receiving emails from it, >>>>>>>>>> send an email to modwsgi+unsubscr...@googlegroups.com. >>>>>>>>>> To post to this group, send email to modwsgi@googlegroups.com. >>>>>>>>>> Visit this group at http://groups.google.com/group/modwsgi. >>>>>>>>>> For more options, visit https://groups.google.com/d/optout. >>>>>>>>> >>>>>>>>> >>>>>>>>> -- >>>>>>>>> You received this message because you are subscribed to a topic in >>>>>>>>> the Google Groups "modwsgi" group. >>>>>>>>> To unsubscribe from this topic, visit >>>>>>>>> https://groups.google.com/d/topic/modwsgi/X_Z4FQxXVoQ/unsubscribe. >>>>>>>>> To unsubscribe from this group and all its topics, send an email to >>>>>>>>> modwsgi+unsubscr...@googlegroups.com. >>>>>>>>> To post to this group, send email to modwsgi@googlegroups.com. >>>>>>>>> Visit this group at http://groups.google.com/group/modwsgi. >>>>>>>>> For more options, visit https://groups.google.com/d/optout. >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> This email is free from viruses and malware because avast! Antivirus >>>>>>>> protection is active. >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> -- >>>>>>>> You received this message because you are subscribed to the Google >>>>>>>> Groups "modwsgi" group. >>>>>>>> To unsubscribe from this group and stop receiving emails from it, send >>>>>>>> an email to modwsgi+unsubscr...@googlegroups.com. >>>>>>>> To post to this group, send email to modwsgi@googlegroups.com. >>>>>>>> Visit this group at http://groups.google.com/group/modwsgi. >>>>>>>> For more options, visit https://groups.google.com/d/optout. >>>>>>> >>>>>>> >>>>>>> -- >>>>>>> You received this message because you are subscribed to a topic in the >>>>>>> Google Groups "modwsgi" group. >>>>>>> To unsubscribe from this topic, visit >>>>>>> https://groups.google.com/d/topic/modwsgi/X_Z4FQxXVoQ/unsubscribe. >>>>>>> To unsubscribe from this group and all its topics, send an email to >>>>>>> modwsgi+unsubscr...@googlegroups.com. >>>>>>> To post to this group, send email to modwsgi@googlegroups.com. >>>>>>> Visit this group at http://groups.google.com/group/modwsgi. >>>>>>> For more options, visit https://groups.google.com/d/optout. >>>>> >>>>> >>>>> >>>>> This email is free from viruses and malware because avast! Antivirus >>>>> protection is active. >>>>> >>>>> >>>>> >>>>> -- >>>>> You received this message because you are subscribed to the Google Groups >>>>> "modwsgi" group. >>>>> To unsubscribe from this group and stop receiving emails from it, send an >>>>> email to modwsgi+unsubscr...@googlegroups.com. >>>>> To post to this group, send email to modwsgi@googlegroups.com. >>>>> Visit this group at http://groups.google.com/group/modwsgi. >>>>> For more options, visit https://groups.google.com/d/optout. >>>> >>>> >>>> -- >>>> You received this message because you are subscribed to a topic in the >>>> Google Groups "modwsgi" group. >>>> To unsubscribe from this topic, visit >>>> https://groups.google.com/d/topic/modwsgi/X_Z4FQxXVoQ/unsubscribe. >>>> To unsubscribe from this group and all its topics, send an email to >>>> modwsgi+unsubscr...@googlegroups.com. >>>> To post to this group, send email to modwsgi@googlegroups.com. >>>> Visit this group at http://groups.google.com/group/modwsgi. >>>> For more options, visit https://groups.google.com/d/optout. >>> >>> >>> >>> This email is free from viruses and malware because avast! Antivirus >>> protection is active. >>> >>> >>> >>> -- >>> You received this message because you are subscribed to the Google Groups >>> "modwsgi" group. >>> To unsubscribe from this group and stop receiving emails from it, send an >>> email to modwsgi+unsubscr...@googlegroups.com. >>> To post to this group, send email to modwsgi@googlegroups.com. >>> Visit this group at http://groups.google.com/group/modwsgi. >>> For more options, visit https://groups.google.com/d/optout. >> >> >> -- >> You received this message because you are subscribed to a topic in the >> Google Groups "modwsgi" group. >> To unsubscribe from this topic, visit >> https://groups.google.com/d/topic/modwsgi/X_Z4FQxXVoQ/unsubscribe. >> To unsubscribe from this group and all its topics, send an email to >> modwsgi+unsubscr...@googlegroups.com. >> To post to this group, send email to modwsgi@googlegroups.com. >> Visit this group at http://groups.google.com/group/modwsgi. >> For more options, visit https://groups.google.com/d/optout. > > > > This email is free from viruses and malware because avast! Antivirus > protection is active. > > > > -- > You received this message because you are subscribed to the Google Groups > "modwsgi" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to modwsgi+unsubscr...@googlegroups.com. > To post to this group, send email to modwsgi@googlegroups.com. > Visit this group at http://groups.google.com/group/modwsgi. > For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "modwsgi" group. To unsubscribe from this group and stop receiving emails from it, send an email to modwsgi+unsubscr...@googlegroups.com. To post to this group, send email to modwsgi@googlegroups.com. Visit this group at http://groups.google.com/group/modwsgi. For more options, visit https://groups.google.com/d/optout.