ckan

This resource can not be previewed at the moment. - CKAN

£可爱£侵袭症+ 提交于 2019-12-01 17:14:45
I’m running CKAN 2.2 on Ubuntu 12.04 LTS (GNU/Linux 3.2.0-23-generic x86_64). I have uploaded a dataset to the CKAN instance. It has been uploaded successfully and can be downloaded as well. But when I try to preview the database I end up with below error. This resource can not be previewed at the moment. When I click on the “Click here for more information”, It says Could not load preview: DataProxy returned an error (Request Error: Backend did not respond after 10 seconds) How can I fix this error? The problem is that the data proxy (which is used to transform csv to something that the data

This resource can not be previewed at the moment. - CKAN

倖福魔咒の 提交于 2019-12-01 16:40:34
问题 I’m running CKAN 2.2 on Ubuntu 12.04 LTS (GNU/Linux 3.2.0-23-generic x86_64). I have uploaded a dataset to the CKAN instance. It has been uploaded successfully and can be downloaded as well. But when I try to preview the database I end up with below error. This resource can not be previewed at the moment. When I click on the “Click here for more information”, It says Could not load preview: DataProxy returned an error (Request Error: Backend did not respond after 10 seconds) How can I fix

CKAN with data access only after login

 ̄綄美尐妖づ 提交于 2019-12-01 14:46:21
Can CKAN be used for a website where users only get access to the datasets after login? I have in mind a site like www.statista.com run with CKAN that gives users access to only a few datasets. Full access is granted after signing in (e.g., to users who are paying for a subscription). Is that possible with CKAN? If that is possible, does CKAN have its own authentication system or can it be managed with FIWARE Key Rock GE and Access Control GE? CKAN has its own authentication system, but we have developed a extension that allows developers to use some IdM (including the FIWARE one) to

CKAN with data access only after login

*爱你&永不变心* 提交于 2019-12-01 12:20:35
问题 Can CKAN be used for a website where users only get access to the datasets after login? I have in mind a site like www.statista.com run with CKAN that gives users access to only a few datasets. Full access is granted after signing in (e.g., to users who are paying for a subscription). Is that possible with CKAN? If that is possible, does CKAN have its own authentication system or can it be managed with FIWARE Key Rock GE and Access Control GE? 回答1: CKAN has its own authentication system, but

Create CKAN dataset using CKAN API and Python Requests library

天涯浪子 提交于 2019-11-30 15:02:19
I am using CKAN version 2.2 and am trying to automate dataset creation and resource upload. I seem to be unable to create a dataset using the python requests library. I am receiving 400 error code. Code: import requests, json dataset_dict = { 'name': 'testdataset', 'notes': 'A long description of my dataset', } d_url = 'https://mywebsite.ca/api/action/package_create' auth = {'Authorization': 'myKeyHere'} f = [('upload', file('PathToMyFile'))] r = requests.post(d_url, data=dataset_dict, headers=auth) Strangely I am able to create a new resource and upload a file using the python requests

Invalid command 'WSGIScriptAlias', perhaps misspelled or defined by a module not included in the server configurationAction 'configtest' failed

大兔子大兔子 提交于 2019-11-28 09:37:48
I got the below error while I was configuring CKAN DataPusher. Invalid command 'WSGIScriptAlias', perhaps misspelled or defined by a module not included in the server configurationAction 'configtest' failed. How can I fix this? Try to enable wsgi mod in Apache sudo a2enmod wsgi If you come across below error ERROR: Module mod-wsgi does not exist! You will have to install mod wsgi as below. What you have to do is run the following commands, sudo apt-get install libapache2-mod-wsgi sudo a2enmod wsgi sudo service apache2 restart To enable wsgi_mod in httpd, install the module sudo yum mod_wsgi

Invalid command 'WSGIScriptAlias', perhaps misspelled or defined by a module not included in the server configurationAction 'configtest' failed

你说的曾经没有我的故事 提交于 2019-11-27 03:03:01
问题 I got the below error while I was configuring CKAN DataPusher. Invalid command 'WSGIScriptAlias', perhaps misspelled or defined by a module not included in the server configurationAction 'configtest' failed. How can I fix this? 回答1: Try to enable wsgi mod in Apache sudo a2enmod wsgi If you come across below error ERROR: Module mod-wsgi does not exist! You will have to install mod wsgi as below. What you have to do is run the following commands, sudo apt-get install libapache2-mod-wsgi sudo