Невозможно разрешить URL. Получено сообщение об ошибке - обратное значение для 'satchmo_search' с аргументами '()' и ключевыми словами-аргументами '{}' не найдено - PullRequest
0 голосов
/ 26 февраля 2011

Я устанавливаю Satchmo, следуя этим инструкциям: http://forum.webfaction.com/viewtopic.php?pid=10579#p10579

Когда я хочу проверить свою установку, я получаю следующую ошибку:

$ python manage.py satchmo_check
Checking your satchmo configuration.
Using Django version 1.2.5
Using Satchmo version 0.9.2-pre hg-unknown
The following errors were found:
Unable to resolve url. Received error- Reverse for 'satchmo_search' with arguments '()' and keyword arguments '{}' not found.

Мой urls.py выглядит так:

from django.conf.urls.defaults import *
from satchmo_store.urls import urlpatterns

# Uncomment the next two lines to enable the admin:
# from django.contrib import admin
# admin.autodiscover()

urlpatterns = patterns('',
    # Example:
    # (r'^myproject/', include('myproject.foo.urls')),

    # Uncomment the admin/doc line below to enable admin documentation:
    # (r'^admin/doc/', include('django.contrib.admindocs.urls')),

    # Uncomment the next line to enable the admin:
    # (r'^admin/', include(admin.site.urls)),
)

Используя функцию reverse в командной строке, я получаю:

$ python manage.py shell
Python 2.7.1 (r271:86832, Dec  1 2010, 06:29:57) 
>>> from django.core.urlresolvers import reverse
>>> reverse(satchmo_search)
Traceback (most recent call last):
  File "<console>", line 1, in <module>
NameError: name 'satchmo_search' is not defined

Я новичок в Satchmo и Django, поэтому любая помощь будет признательна.

1 Ответ

3 голосов
/ 26 февраля 2011

Вы переопределяете импортируемые вами URL.

Измените свой файл urls.py следующим образом:

from django.conf.urls.defaults import *
from satchmo_store.urls import urlpatterns

urlpatterns += patterns('',

    # Your urls go here

)

или

from django.conf.urls.defaults import *
from satchmo_store.urls import urlpatterns as satchmo_urls

urlpatterns = patterns('',

    # Your urls go here

)

urlpatterns += satchmo_urls
...