On 12/13/07, subgiambi <[EMAIL PROTECTED]> wrote:
>
> I start my development server with:
> python manage.py runserver
>
> and I can access my site at http://127.0.0.1:8000/ fine.  However when
> I, for example, use the website interface to change a user's profile
> by altering the user's "City" - even if I refresh the new City is not
> displayed on the user's profile.  I must stop and then start the
> server again for the changes to be realized on the profile.  Is this
> normal?  Is there some kind of a "force-check-data-from-database"
> switch for runserver?  This makes it difficult to test things out, as
> I have to stop and start the server each time I change something.
>
> Any help would be appreciated!  Hopefully I'm overlooking something
> silly.

Is the per-site cache enabled (that is, is
django.middleware.cache.CacheMiddleware included  MIDDLEWARE_CLASSES in your
settings file)?  Someone else recently reported similar behavior and that
was the explanation.

Karen

--~--~---------~--~----~------------~-------~--~----~
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