Re: Django project and SVN loads older code versions

2012-10-01 Thread Gjorge Karakabakov
I've solved this problem by removing all .pyc files in all the folders. Here is the official answer to my question that worked on stackoverflow: http://stackoverflow.com/questions/12578602/django-project-and-svn-loads-older-code-versions On Tuesday, 25 September 2012 16:50:37 UTC+2, Joris wrote:

Re: Django project and SVN loads older code versions

2012-09-25 Thread Joris
The reason why you are seeing this behaviour is because apache caches the compiled python scripts. As apache has multiple threads, some still carry old information, and some new. As HTTP is stateless, this is why you get inconsistent behaviour. The situation is resolved by either reloading apac

Re: Django project and SVN loads older code versions

2012-09-25 Thread Leonardo Giordani
Let me understand: you commit code to a SVN repository and put in in production? Did you restart Apache? Leo 2012/9/25 Gjorge Karakabakov > I can't explain it but Django + SVN for code version control loads older > buggy versions of files every time i hit refresh on the web site i'm > working o