i have read these two tutorial, for building an search app.
- Installing Solr and django-haystack on Ubuntu with OpenJDK, here
- Django – Haystack – Solr — Setup Guide, here
but when i come to:
Configure django-haystack, set up the search index classes according to the docs
http://docs.haystacksearch.org/dev/tutorial.html#configuration
Add the required solr fields to settings.py (solr server location)
i get this error.(when trying to import haystack too...)
raise ImproperlyConfigured("You must define the HAYSTACK_SITECONF setting before using
the search framework.")
django.core.exceptions.ImproperlyConfigured: You must define the HAYSTACK_SITECONF
setting before using the search framework.
importing haystack in python error:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python2.6/dist-packages/django_haystack-1.2.7-py2.6.egg/haystack
/__init__.py", line 26, in <module>
raise ImproperlyConfigured("You must define the HAYSTACK_SITECONF setting before
using the search framework.")
django.core.exceptions.ImproperlyConfigured: You must define the HAYSTACK_SITECONF
setting before using the search framework.
i have installed haystack with sudo easy_install https://github.com/toastdriven/django-haystack/zipball/v1.2.7.
My django version: 1.4
UPDATE:
if you have troubles sth like this error when importing haystack:
ImportError: Settings cannot be imported, because environment variable
DJANGO_SETTINGS_MODULE is undefined.
try to import in your project as ./manage.py shell than import haystack....
HAYSTACK_SITECONFin settings.py? – Chris Pratt Jul 11 '12 at 14:49HAYSTACK_CONNECTIONS-- that's for Haystack 2.0+. The Haystack documentation defaults to the development version, not the current PyPi release. Haystack 2.0 is perfectly usable if you want to go that route, though. I use it myself. You just have to clone it from Github. – Chris Pratt Jul 11 '12 at 14:59pip install git+https://github.com/toastdriven/django-haystack.git#egg=django-haystack, but otherwise, just download the "master" branch tarball. – Chris Pratt Jul 11 '12 at 15:10