2013/6/16 Sandeep kaur <mkaurkha...@gmail.com> > I have this Web application made in Django 1.3. And now when I use it > on Django 1.5, it does not work. It give error as no module simple. > So, Is there any migration tool > to make my application work easily on 1.5 version without manually > making lot of changes? > You help will be appreciated. > > -- > Sandeep Kaur > E-Mail: mkaurkha...@gmail.com > Blog: sandymadaan.wordpress.com > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to django-users+unsubscr...@googlegroups.com. > To post to this group, send email to django-users@googlegroups.com. > Visit this group at http://groups.google.com/group/django-users. > For more options, visit https://groups.google.com/groups/opt_out. > > > Hi,
I did exactly the same thing a while back. Unfortunately there isn't any easy way to do what you want. What I would recommend is to first migrate the settings so that they represent the new way of setting up a django project. The way I did that, was I created a new django project with 1.5 and just made sure that the settings where in the same place in the old project. Apart from that there are a couple of small things that didn't work. We had procedure based views, they had to be migrated to class based instead. You will have to migrate everything slowly and test, test, test.... Regards, Andréas -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. For more options, visit https://groups.google.com/groups/opt_out.