Are you setting up Satchmo as a standalone install or part of another
project?
Regarding your urls.py, not going to fix the problem, but you should have
the admin docs before the admin url ... try this instead:
(r'^admin/doc/', include('django.contrib.admindocs.urls')),
(r'^admin/(.*)', admin.site.root),
The SettingNotSet error is something I have usually only seen if the db is
either not running or not synced, but you say you have synced.
Can you provide a dpaste of the Traceback you receive when attempting to
load the site, and another that shows what output you get on the python
prompt from Django's runserver command when the error happens?
Thanks.
On Wed, Mar 25, 2009 at 1:07 PM, waltbrad <[email protected]> wrote:
>
>
>
> On Mar 25, 9:05 am, Bob Waycott <[email protected]> wrote:
> >
> > Is your database running? Do you have all the basic Satchmo modules
> listed
> > in your INSTALLED_APPS list in settings.py? Have you ran 'python
> manage.py
> > syncdb'? Do you have a urls.py file that imports Satchmo's urlpatterns?
> >
> Yep, to all of the above. My settings.py is here:
>
> http://dpaste.com/19019/
>
> Local Settings here:
>
> http://dpaste.com/19023/
>
> My urls file, just to show that I have imported Satchmo's urlpatterns.
>
> http://dpaste.com/19024/
>
> >
> >
> > > The url:
> >
> > >http://127.0.0.1:8000/shop
> >
> > > gives me a 404.
> >
> > Sounds like you don't have things quite right in either your settings
> > (SHOP_BASE), or you are missing proper patterns imported & defined in
> > urls.py.
> >
>
> I am confused by all the different settings. I've tried to look up
> each one online but the information is sort of sparse. For instance,
> I tried to find info on what SHOP_BASE is actually supposed to be set
> to. But everything I've looked at leaves it blank.
>
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Satchmo users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/satchmo-users?hl=en
-~----------~----~----~----~------~----~------~--~---