Maybe you lose an important line from your_store/urls.py:
from satchmo_store.urls import urlpatterns
or you have later overwritten the variable urlpatterns in that file
instead of wished adding some custom url to it
or the line in file settings.py
ROOT_URLCONF = 'your_store.urls'
does not point to the right file your_store/urls.py ("your_store" is a
name of the directory with your store settings)
or you modified the file satchmo_store/shop/urls.py
or deleted the function search_view from satchmo_store/shop/views/
search.py
If modified, try a bare skelet of your_store/urls.py:
---
from django.conf.urls.defaults import *
from satchmo_store.urls import urlpatterns
---
and then go step by step near to your modified urls.py
On 27 čnc, 15:43, Paddy Joy <[email protected]> wrote:
> Hi,
>
> Does anyone have any idea what could be causing this error? I have
> tried both satchmo tip and 0.9.1.
>
> Unfortunately I'm trying to integrate into an existing site so don't
> have the option of starting with one of the pre-packed projects.
>
> Paddy
>
> Checking your satchmo configuration.
> Using Django version 1.3 pre-alpha SVN-13428
> Using Satchmo version 0.9-1 hg-unknown
> The following errors were found:
> Unable to resolve url. Received error- Reverse for 'satchmo_search'
> with arguments '()' and keyword arguments '{}' not found.
--
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.