Re: Developing on Apache w/ mod_python

2009-06-21 Thread gte351s
> Don't use: >   > and use: >   Works like a charm. I now remember reading it and then it blanked out. Thanks! Shilo --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group,

Re: Developing on Apache w/ mod_python

2009-06-18 Thread Graham Dumpleton
On Jun 19, 2:49 pm, gte351s wrote: > Graham - Great post, I'll give mod_wsgi a try. Thanks. > > And thanks for all the replies. Here's the configuration file I ended > up > using, which worked (kinda): > > # >

Re: Developing on Apache w/ mod_python

2009-06-18 Thread gte351s
Graham - Great post, I'll give mod_wsgi a try. Thanks. And thanks for all the replies. Here's the configuration file I ended up using, which worked (kinda): # FILE-- LoadModule python_module /usr/lib/apache2/modules/mod_python.so

Re: Developing on Apache w/ mod_python

2009-06-16 Thread Graham Dumpleton
On Jun 17, 4:09 am, "sstein...@gmail.com" wrote: > On Jun 16, 2009, at 2:00 PM, gte351s wrote: > > > > > Gabriel - thanks for the quick response. > > Sorry for the delay in answering, I was away for a bit :) > > > I had some issues with the setup, but I think I'll > > put

Re: Developing on Apache w/ mod_python

2009-06-16 Thread sstein...@gmail.com
On Jun 16, 2009, at 2:00 PM, gte351s wrote: > > Gabriel - thanks for the quick response. > Sorry for the delay in answering, I was away for a bit :) > > I had some issues with the setup, but I think I'll > put it on hold for a bit and use the django built-in > dev-server for now. I tried that

Re: Developing on Apache w/ mod_python

2009-06-16 Thread gte351s
Gabriel - thanks for the quick response. Sorry for the delay in answering, I was away for a bit :) I had some issues with the setup, but I think I'll put it on hold for a bit and use the django built-in dev-server for now. Many thanks! shilo On Jun 15, 8:47 pm, "Gabriel ."

Re: Developing on Apache w/ mod_python

2009-06-16 Thread kiwi
thanks gabriel, now everything works.. Hello!! On Jun 15, 7:47 pm, "Gabriel ." wrote: > Hi, > > This a test conf with mod_python: > > >     ServerName py.banshee.lnx >     DocumentRoot "/home/www/python" >     ErrorLog /var/log/apache2/cash-error_log >    

Re: Developing on Apache w/ mod_python

2009-06-15 Thread Gabriel .
Hi, This a test conf with mod_python: ServerName py.banshee.lnx DocumentRoot "/home/www/python" ErrorLog /var/log/apache2/cash-error_log CustomLog /var/log/apache2/cash-out_log combined SetHandler mod_python PythonHandler django.core.handlers.modpython

Developing on Apache w/ mod_python

2009-06-15 Thread gte351s
Hello, I'm very new to Django and trying to configure apache to work with the tutorial application. I installed mod_python and configured httpd.conf to look like this: # mod python LoadModule python_module /usr/lib/apache2/modules/mod_python.so NameVirtualHost *:80 ServerName