Re: Touch django.wsgi not reloading daemon

2009-08-05 Thread Graham Dumpleton
On Aug 6, 7:53 am, Sean Kemplay wrote: > You are correct - it actually didn't work - it just seemed to. > > The issue was resolved by installing the latest version of mod_wsgi > from source - I am using ubuntu hardy server edition. > > I uninstalled, installed from

Re: Touch django.wsgi not reloading daemon

2009-08-05 Thread Sean Kemplay
You are correct - it actually didn't work - it just seemed to. The issue was resolved by installing the latest version of mod_wsgi from source - I am using ubuntu hardy server edition. I uninstalled, installed from source, enabled the module using the original ubuntu config files that were left

Re: Touch django.wsgi not reloading daemon

2009-08-05 Thread Graham Dumpleton
On Aug 5, 11:12 pm, Sean Kemplay wrote: > Hi all. > > I have resolved this by adding user=www-data group=www-data to the > WSGIDaemonProcess: > > WSGIDaemonProcess sean75_ispy user=www-data group=www-data That change shouldn't have made any difference as those are the

Re: Touch django.wsgi not reloading daemon

2009-08-05 Thread Sean Kemplay
Hi all. I have resolved this by adding user=www-data group=www-data to the WSGIDaemonProcess: WSGIDaemonProcess sean75_ispy user=www-data group=www-data Regards, Sean On Aug 5, 1:46 pm, Sean Kemplay wrote: > Hi All, > > I have the following in my virtual host config:

Touch django.wsgi not reloading daemon

2009-08-05 Thread Sean Kemplay
Hi All, I have the following in my virtual host config: WSGIDaemonProcess sean75_ispy WSGIProcessGroup sean75_ispy and the following in my django.wsgi: import os, sys sys.path.append('/srv/home/sean75/django/') os.environ['DJANGO_SETTINGS_MODULE'] = 'ispy.settings' import