Hi folks,
I am having trouble with wsgi and pinax on ubuntu. No matter what I
run I get
TemplateSyntaxError at /
Caught an exception while rendering: no such table:
announcements_announcement
Steps:
Download a fresh copy of pinax from svn:
svn checkout
https://svn.pinaxproject.com/pinax/trunk/ pinax
cd to complete_project folder
run python manage.py syncdb
run python manage.py runserver
Open firefox and check it works (which it does)
configure apache to run the pinax.wsgi script in deploy folder
open site from proper url
get the error mentioned earlier
full traceback:
http://dpaste.com/85274/
My apache config is:
<VirtualHost *:80>
ServerName chemsite
ServerAlias
chemsite.thatscottishengineer.co.uk
DocumentRoot /home/amar/bzr/mywork/research/site/public
WSGIScriptAlias / /home/amar/Desktop/pinax/projects/
complete_project/deploy$
WSGIProcessGroup pinax
WSGIDaemonProcess pinax user=www-data group=www-data threads=25
</VirtualHost>
I am sure this is something stupidly simple but it is driving be crazy
at the moment