There's an error in your install somewhere and the template rendering is making it a bit difficult to track down.
Take a look at the code for the search form - http://www.bitbucket.org/chris1610/satchmo/src/043feaf2306b/satchmo/apps/satchmo_store/shop/templatetags/satchmo_util.py#cl-204 It's pretty simple, so try this: python manage.py shell from django.core import urlresolvers url = urlresolvers.reverse('satchmo_search') The resulting error message should be a bit more useful. -Chris On Wed, Mar 31, 2010 at 1:34 PM, Ricko <[email protected]> wrote: > Running satchmo_check produces: > > Checking your satchmo configuration. > Using Django version 1.1.1 > Using Satchmo version 0.9-pre-SVN-unknown > Your configuration has no errors. > > Satchmo.log just had a warning about not having SSL, which I > subsequently installed, made no difference to the error. > > I tried commenting out the 'django.contrib.admindocs' app in the > settings.py, again no difference. Stumped. > > Cheers > Rick > > On Mar 30, 8:15 pm, Chris Moffitt <[email protected]> wrote: > > This error generally means there is something not installed correctly and > > you're getting an error somewhere else but it's showing up when trying to > > render your template. > > > > Do you see anything in your satchmo.log file? > > Also, does python manage.py satchmo_check report any errors? > > > > -Chris > > > > On Tue, Mar 30, 2010 at 6:57 PM, Ricko <[email protected]> wrote: > > > Yes, in my Satchmo settings.py file. > > > > > Cheers > > > Rick > > > > > On Mar 30, 4:51 pm, Chris Moffitt <[email protected]> wrote: > > > > Do you have 'django.contrib.admindocs' in your INSTALLED_APPS? > > > > > > -Chris > > > > > > On Tue, Mar 30, 2010 at 6:45 PM, Ricko <[email protected]> > wrote: > > > > > Hi all, > > > > > > > Managed to get my satchmo webserver up and running with the help > from > > > > > this Group. I have another issue though. My server launches fine, > but > > > > > when I try to go the default url '/store', I get this stack: > > > > > > > Template error > > > > > > > In template /Library/Python/2.5/site-packages/Satchmo-0.9_pre- > > > > > py2.5.egg/satchmo_store/shop/templates/base.html, error at line 26 > > > > > Caught an exception while rendering: need more than 1 value to > unpack > > > > > > > Its complaining about this variable (inside the markup): > > > > > > > <div> > > > > > {% satchmo_search_form %} > > > > > </div> > > > > > > > I get the same error trying the Admin page, for the same page, but > a > > > > > different variable: > > > > > > > {% url django-admindocs-docroot as docsroot %} > > > > > > > Cheers > > > > > Rick > > > > > > > -- > > > > > 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]<satchmo-users%[email protected]> > <satchmo-users%[email protected]<satchmo-users%[email protected]> > > > > > <satchmo-users%[email protected]<satchmo-users%[email protected]> > <satchmo-users%[email protected]<satchmo-users%[email protected]> > > > > > > > > > . > > > > > For more options, visit this group at > > > > >http://groups.google.com/group/satchmo-users?hl=en. > > > > > -- > > > 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]<satchmo-users%[email protected]> > <satchmo-users%[email protected]<satchmo-users%[email protected]> > > > > > . > > > For more options, visit this group at > > >http://groups.google.com/group/satchmo-users?hl=en. > > -- > 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]<satchmo-users%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/satchmo-users?hl=en. > > -- 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.
