Re: Experience of migrating a Django site to DotCloud

2011-04-26 Thread Olli Wang
d for scaling or not, but I believe DotCloud is once it is out of beta. Especially the beta is free, nothing gonna lose to give it a try, right? On Apr 27, 1:31 pm, Venkatraman S wrote: > On Wed, Apr 27, 2011 at 10:34 AM, Olli Wang wrote: > > I have migrated my Django site to the new

Experience of migrating a Django site to DotCloud

2011-04-26 Thread Olli Wang
I have migrated my Django site to the new PaaS provider DotCloud. I think it's a pretty good choice if you want to deploy your Django on the cloud. You can see the full article at http://www.ollix.com/blog/2011/04/25/migrating-django-site-dotcloud/ -- You received this message because you are s

Is it possible to disable multithread in Django

2009-10-29 Thread Olli Wang
Hi, I used jump to package a Django application into a WAR file (You can find the instructions here: http://gitorious.org/jump/pages/DjangoWarUsingJump). The created WAR file worked fine on TomCat, but when I extracted the WAR file and uploaded the extracted directory to Google App Engine, it sho

Django/Jython doesn't work on Google App Engine

2009-10-27 Thread Olli Wang
Hi, I successfully created a WAR file which was able to run on Apache Tomcat with no problem. But when I uploaded it to the Google App Engine, it shows me a error message like this: Could not initialize class org.python.modules.thread.thread RequestURI=/ Caused by: java.lang.NoClassDefFoundErro

Re: __unicode__() doesn't work in model

2007-07-06 Thread Olli Wang
Sorry, my mistake. I should refer tutorial for version 0.96. Thanks. :) On Jul 7, 10:45 am, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > On Sat, 2007-07-07 at 02:42 +0000, Olli Wang wrote: > > Hi, I'm new to Django. I just followed the tutorial - Poll example > > (ht

__unicode__() doesn't work in model

2007-07-06 Thread Olli Wang
Hi, I'm new to Django. I just followed the tutorial - Poll example (http://www.djangoproject.com/documentation/tutorial01/) . It said that adding __unicode__() to models may change object's representations, but don't know why that doesn't take effect on my computer. Run "Poll.objects.all()" in she