Reputation: 11
2.6.2
Im trying to install an extension, to be specific
https://github.com/EUDAT-B2FIND/ckanext-b2find
https://github.com/EUDAT-B2FIND/ckanext-datesearch
Cant see the extension in Ckan, but the extension seem's to be enable because ckan is up and running, yet there's are no error in /var/log/apache2/ckan_default.error.log
In the extension folder i did python setup.py install in /etc/ckan/default/production.ini added b2find and datesearch in line ckan.plugins restarted apache2
Ubuntu 14.04 Apache2
Any suggestion on how to troubleshoot this?
Best Regards Gonçalo
Upvotes: 1
Views: 777
Reputation: 3224
Some checks to try, which generally apply to all ckan extensions:
python setup.py develop
because that copies more files, depending on the extension's configuration. Try that instead of python setup.py install
. No harm in trying.python setup.py install
? Enable the virtualenv and try python -c 'import ckanext.b2find'
.sqlalchemy.url
temporarily and check restarting apache2 fails.ckan.plugins
in, have you? If that happens, one gets ignored.Upvotes: 1