I've installed Django CMS Have it loading and can create pages. However none of my plugins are working. They are located in ~/lib/python2.7/cms/plugins I've got symlinks from my project folder to: python2.7 -> /home/removed/lib/python2.7 appmedia -> /home/removed/lib/python2.7/appmedia mptt -> /home/removed/lib/python2.7/mptt cms -> /home/removed/lib/python2.7/cms/media/cms publisher -> /home/removed/lib/python2.7/publisher django -> /home/removed/lib/python2.7/django south -> /home/removed/lib/python2.7/south menus -> /home/removed/lib/python2.7/menus This took care of errors when starting the server. Now when I select a plugin from the page creation I get: Caught DatabaseError while rendering: relation "cmsplugin_picture" does not exist Request Method: GET
Request URL: http://removed/admin/cms/page/2/
Django Version: 1.3
Exception Type: TemplateSyntaxError
Exception Value: Caught DatabaseError while rendering: relation "cmsplugin_picture" does not exist Exception Location: /home/removed/webapps/django2/lib/python2.7/django/db/backends/postgresql_psycopg2/base.py in execute, line 44
Python Executable: /usr/local/bin/python
Python Version: 2.7.1
Python Path: ['/home/removed/webapps/django2', '/home/removed/webapps/django2/lib/python2.7', '/home/removed/lib/python2.7/pip-0.8.3-py2.7.egg', '/home/removed/lib/python2.7', '/usr/local/lib/python27.zip', '/usr/local/lib/python2.7', '/usr/local/lib/python2.7/plat-linux2', '/usr/local/lib/python2.7/lib-tk', '/usr/local/lib/python2.7/lib-old', '/usr/local/lib/python2.7/lib-dynload', '/usr/local/lib/python2.7/site-packages', '/usr/local/lib/python2.7/site-packages/PIL'] asked 26 Mar '11, 19:31 Paddy Martinez |
Do you need to run syncdb after enabling this plugin? I am not familiar with Django CMS in particular but the error is clearly an issue with the database and information in the database not existing,
Try running 'manage.py syncdb' answered 26 Mar '11, 20:00 johns |
Eh... I've reached my limit of patience with this. Moving on to something else. answered 26 Mar '11, 20:24 Paddy Martinez |