Re: Can not start admin on production server

2006-02-01 Thread Adrian Holovaty
On 2/1/06, PythonistL <[EMAIL PROTECTED]> wrote: > I installed django on Dreamhost.com and it works ok but I can not start > admin interface > I get the error: > Exception Value: (1146, "Table 'boardbma.django_admin_log' doesn't > exist") You'll need to run the command "python manage.py install a

Re: Can not start admin on production server

2006-02-01 Thread PythonistL
Thanks a lot.That works !

Re: Can not start admin on production server

2006-02-01 Thread scum
I've encounterred this problem as well. All I know is that if you run the following SQL, everything will get better. DROP TABLE IF EXISTS `django_admin_log`; CREATE TABLE `django_admin_log` ( `id` mediumint(9) unsigned NOT NULL auto_increment, `action_time` datetime NOT NULL default '-

Can not start admin on production server

2006-02-01 Thread PythonistL
Hi, I installed django on Dreamhost.com and it works ok but I can not start admin interface I get the error: Exception Value: (1146, "Table 'boardbma.django_admin_log' doesn't exist") Exception Location: /usr/lib/python2.3/site-packages/MySQLdb/connections.py in defaulterrorhandler, line 32 other