I've checked the following logs, but nothing turned up:
/var/log/nginx*
/var/log/httpd* (apache)

Previously, when something went wrong with the app, all error messages
appeared in /var/log/httpd-error.log, but this time - nothing.

This is all the output I get when I restart apache (apachectl restart):

[Tue Jul 01 21:46:02 2008] [notice] SIGHUP received.  Attempting to restart
[Tue Jul 01 21:46:02 2008] [warn] (22)Invalid argument: Failed to enable the
'httpready' Accept Filter
[Tue Jul 01 21:46:03 2008] [notice] Apache/2.2.9 (FreeBSD) DAV/2
mod_wsgi/2.0 Python/2.5.2 configured -- resuming normal operations

I also removed all *.pyc after adding 'debug=1'.

Oscar

On Tue, Jul 1, 2008 at 7:19 PM, Steven Armstrong <[EMAIL PROTECTED]> wrote:

>
> Oscar Carlsson wrote on 07/01/08 19:02:
> > Heh, ops!
> >
> > That was a typo, but even after fixing it, nothing changed :(
> > (still no change in memory usage, that is)
> >
> > Here is the ZeroDivisionError, btw:
> > http://dpaste.com/60185/
> >
> > Oscar
> >
>
> The python-memcached client fails silently if it encounters an error,
> e.g. can't connect to the server.
>
> You could try changing how the client is created in
> django/core/cache/backends/memcached.py
>
> from:
> self._cache = memcache.Client(server.split(';'))
>
> to:
> self._cache = memcache.Client(server.split(';'), debug=1)
>
> And see if you get some error message in the server log.
>
> hth
> cheers
> Steven
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to