On Feb 21, 2:37 am, Richard Dahl <[EMAIL PROTECTED]> wrote:
> If you are using Apache or other web server on the external site,
> changes will not propagate until you restart the web server.

Depending on the web server hosting solution you may not have to
restart the web server. If using mod_wsgi 2.0 with daemon mode and
process reloading option enabled, or if using certain fastcgi
solutions, it is enough to touch the script file which is entry point
for your application.

It is still an extra step, but this way you do not necessarily need to
have root access to restart the whole web server.

Graham

> On Feb 20, 2008, at 9:25 AM, Constantin Christmann wrote:
>
>
>
> > Hello,
>
> > I am relatively new to django but I like this framework a lot...
>
> > Unfortunately I have some trouble running my django project outside my
> > localhost enviroment.
> > I moved the project on another server and got the site working in
> > debug
> > mode (same as on my localhost).
> > Now I habe trouble seeing changes I make in views instantly.
> > For example this simple view
>
> > def index(request):
> >     forum_list = Forum.objects.all()
> >     assert(False)
> >     return render_to_response('frontend/index.html',
> > {'forum_list':forum_list}, context_instance=RequestContext(request))
>
> > doesn't lead to an assert when accessing this view but shows the same
> > page as without this assert. Do I have to trigger a recompilation
> > of my
> > py files or is maybe the caching a problem here.
> > How can I find out where the problem is? On my localhost I have seen
> > changes instantly.
>
> > Thanks!
> > Constantin
--~--~---------~--~----~------------~-------~--~----~
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