On Jun 16, 12:45 am, Chris Seberino <cseber...@gmail.com> wrote: > On Jun 14, 7:02 pm, Graham Dumpleton <graham.dumple...@gmail.com> > wrote: > > Use WSGI script described in: > > > > > http://blog.dscpl.com.au/2010/03/improved-wsgi-script-for-use-with.html > > In mod_wsgi's defense, remember that this error happens sporadically > and is NOT a showstopper as a reload makes it go away completely > (until a future restart). > > I did look at that page a while back when we talked previously. It > helped me get mod_wsgi working. I'm not sure what you are asking me > to do....Do you want me to use the exact script and send you the > output of the print statements? Would my aforementioned error show up > in the Apache logs? If and when I see it again I will look in the > Apache error.log for clues too.
At the end of the document it has the alternate WSGI script file contents as shown below. Simply use that and change the path to match where your site is. import sys sys.path.insert(0, '/usr/local/django/mysite') import settings import django.core.management django.core.management.setup_environ(settings) utility = django.core.management.ManagementUtility() command = utility.fetch_command('runserver') command.validate() import django.conf import django.utils django.utils.translation.activate(django.conf.settings.LANGUAGE_CODE) import django.core.handlers.wsgi application = django.core.handlers.wsgi.WSGIHandler() -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.