Hello,
I am trying to integrate haystack (using the xapian backend) on my web application. I have been able to get this work on my local version of the app but there seems to be an issue when moving my code to PA. I am currently running Django 1.6 in a virtualenv and I installed xapian core and python bindings from source. When using a console with my virtualenv activated, I can import xapian without issue by using the command:
python -c "import xapian"
However, when attempting to access my site, I get an "Unhandled Exception" error. Opening my site's error log, I see the following error:
File "/home/Beison/.virtualenvs/django16/lib/python2.7/site-packages/xapian_backend.py", line 26, in <module> raise MissingDependency("The 'xapian' backend requires the installation of 'Xapian'. " 2014-07-19 20:50:07,585 :haystack.exceptions.MissingDependency: The 'xapian' backend requires the installation of 'Xapian'. Please refer to the documentation.
Has anyone else dealt with this issue before? I'm wondering if this has something to do with using xapian within the wsgi environment (which is not replicated in my own setup).
Any help that someone can provide would be appreciated!