Chase wrote:
I recently installed Django on Dreamhost, following the great instructions here: http://wiki.dreamhost.com/index.php/Django. The installation worked fine, but any change I make to an app takes hours to register on the Web. It seems to be an fcgi or caching problem, possibly not reloading myproject.settings upon reload of the page.
You have to kill python after Python changes using "pkill python" command. Or "pkill python2.4", if you use Python 2.4. It will force restart of fcgi.
If you use Django cache, you may want to flush it, if your changes affect content. For example, I use a file-based cache. In this case flushing is as simple as removing cache files.
Thanks, Eugene