Hi,

Did you make sure your webserver refreshed the application code ? I sometime 
had similar issue because different processes had different code versions and 
this leads to a totally random behavior.
Also, if you don't have issues while DEBUG=True, you will want to make sure you 
have a 404.html and 500.html in your template directory.

Hope this will help,
Xavier.

Le 3 févr. 2010 à 22:51, CreativeConvergence a écrit :

> Thank you for your reply I learned something.
> Unfortunatelly all model admin registration are made in admin.py
> files.
> Elsewhere I found an advise to turn debuging on when you launch
> manage.py runfcgi
> and since I added that parameter to the command line I don't have any
> problem.
> 
> I'm still looking for a definitive solution.
> 
> On Feb 2, 3:09 pm, Karen Tracey <[email protected]> wrote:
>> On Tue, Feb 2, 2010 at 6:10 AM, Thomas Schreiber <[email protected]> wrote:
>>> Missing applications in the admin is the sign of an error in an admin.py
>>> I'd double check there first.
>> 
>> Or admin registrations being placed somewhere besides admin.py.  Sometimes
>> people put them in models.py and that "works" under the dev server because
>> it validates models (and thus forces a load of all models.py files) during
>> startup. Under other servers there's no guarantee a particular models.py
>> file will be loaded early like that, thus people see apps go missing from
>> admin under production setups when they've placed admin.site.register calls
>> in a models.py file.
>> 
>> Karen
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Django users" group.
> To post to this group, send email to [email protected].
> 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.
> 

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected].
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