Re: problem with rb-site !!!

2013-02-12 Thread Christian Hammond
Unless it's a Linux system that you have full access to, including the ability to configure Apache yourself, and install system-level services (in other words, you need root access), you can't host it. I can't say what that provider has. We do offer professional Review Board hosting at

Re: Problem with rb-site upgrade

2010-08-30 Thread WANG Yanchao
Indeed the database malformat is caused by my hot-copy. I stopped apache and copy the db file. The message is gone. However I met another issue when try to use mysql: 1, I upgrade the sqlite db in the new db site; 2, I imported the upgraded db into mysql; (modified a lot of syntax in the sqlite

Re: Problem with rb-site upgrade

2010-08-30 Thread Christian Hammond
That's likely due to migrating the database to MySQL. The settings information stored in the database wasn't preserved in a proper JSON format. Can you do the following: $ rb-site manage /path/to/site shell from djblets.siteconfig.models import SiteConfiguration siteconfig =

Re: Problem with rb-site upgrade

2010-08-30 Thread WANG Yanchao
Hi, the second step, siteconfig = SiteConfiguration.objects.get() it gives the following error: *Traceback (most recent call last):* * File console, line 1, in module* * File /usr/ali/lib/python2.5/site-packages/Django-1.2.1-py2.5.egg/django/db/models/manager.py, line 132, in get* *return

Re: Problem with rb-site upgrade

2010-08-30 Thread Christian Hammond
Okay, the problem is all the backquotes, I think. Try taking that text and changing each ` to a '. Christian -- Christian Hammond - chip...@chipx86.com Review Board - http://www.reviewboard.org VMware, Inc. - http://www.vmware.com On Mon, Aug 30, 2010 at 12:25 AM, WANG Yanchao

Re: Problem with rb-site upgrade

2010-08-29 Thread Christian Hammond
Hi, Yeah, that version is new enough. So it sounds like it's purely a database corruption problem. Any luck since your last update? Christian -- Christian Hammond - chip...@chipx86.com Review Board - http://www.reviewboard.org VMware, Inc. - http://www.vmware.com On Thu, Aug 26, 2010 at

Re: Problem with rb-site upgrade

2010-08-26 Thread Christian Hammond
Hi, First of all, can you see what version of django_evolution is installed on your system? I want to verify that it's new enough. You can ignore the warnings about things not being called with a database connection. That's just due to not using the new APIs in Django 1.2, but it's harmless for

Re: Problem with rb-site upgrade

2010-08-26 Thread WANG Yanchao
Thank you Christian for such timely help!!! As you advised, I first checked the django-evolution version it's django_evolution-0.5-py2.5.egg Is it new enough? I will now also try to copy the database with the DB closed to see if it works. If it works, I will try to import the data from sqlite