You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
Hi,
I'm new in Django and I'm planning create a website using a forum. After some googles I've noticed that the most updated and best choice for my purpose is DjangoBB.
I looked the official manual http://djangobb.org/wiki/QuickInstall but I'm stacked because I have to set up a database and I have no Idea which tables / rows I have to create
Thanks.
C. Kirby
unread,
Feb 20, 2014, 11:53:22 AM2/20/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
In django the management command syncdb creates the tables you need to use. If you look again at the docs you linked to under "Download and setup basic project:" there is a line
./manage.py syncdb --all
That is what sets up the necessary database structures.
C. Kirby
unread,
Feb 20, 2014, 11:55:59 AM2/20/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
Sorry to reply to myself. Those docs also use manage.py runserver to run the app. That works, but is really only meant for development. You should probably read up on django deployment before you put djangobb into production: https://docs.djangoproject.com/en/dev/howto/deployment/