On Mon, Sep 14, 2009 at 12:11 AM, AIM <andremiku...@gmail.com> wrote:

>
> HI,
>
> When I browse to
> http://127.0.0.1:8000/mysite/Start/
>
> I get the following error:
>
> OperationalError at /mysite/Start/
>
> no such table: wiki_page
>
> Request Method:         GET
> Request URL:    http://127.0.0.1:8000/mysite/Start/
> Exception Type:         OperationalError
> Exception Value:
>
> no such table: wiki_page (ERROR HERE)
>
> My traceback is located at the following.
> http://dpaste.com/93287/
>
> I have ALREADY done the following in the EXACT order.
>
> [snip}
>
> --mysite/settings.py
>
> DATABASE_ENGINE = 'sqlite3'
> DATABASE_NAME = 'wiki.db'
>
> [snip]
> mysite>python manage.py syncdb
> Creating table wiki_page
>
> [snip]
>


Then, I reboot my wsgi web server.
>
>
What is your wsgi web server?  Specifically, what current directory does it
have when running?  If it is not the same as your project directory where
you are running the syncdb command, the web server won't be able to find the
database file since you have not specified a fully-qualified path to it in
settings.py.

Karen

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to