Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>This error is usually caused either by CKAN's FileStore not being setup correctly, or the FileStore's dependencies not being installed correctly. See CKAN's <a href="http://docs.ckan.org/en/latest/filestore.html" rel="nofollow noreferrer">FileStore and File Uploads</a> documentation.</p> <p>Make sure that:</p> <ul> <li><p>You have <code>pairtree</code> installed in your CKAN virtualenv (<code>pip install pairtree</code>)</p></li> <li><p>You have <code>argparse</code> installed in your CKAN virtualenv (<code>pip install argparse</code>)</p></li> <li><p>You have the <code>ofs.impl</code> and <code>ofs.storage_dir</code> options set correctly in the <code>[app:main]</code> section of your CKAN ini file, e.g.:</p> <pre><code>ofs.impl = pairtree ofs.storage_dir = /mnt/datalocale </code></pre></li> <li><p>Make sure that your <code>ofs.storage_dir</code> directory exists. Run this command in a shell: <code>mkdir -p /path/to/your/ofs/storage/dir</code>.</p></li> <li><p>Make sure that the operating system user that CKAN runs as (e.g. the user <code>www-data</code>, if you are running CKAN with Apache on Ubuntu) has read and write permissions for the <code>ofs.storage_dir</code>. For example, if you are running CKAN with Apache on Ubuntu, run these commands in the terminal:</p> <pre><code>sudo chown www-data /path/to/your/ofs/storage_dir sudo chmod u+rwx /path/to/your/ofs/storage_dir sudo service apache2 restart </code></pre></li> </ul> <p>If all of the above fails then ask for help, either using this <a href="https://stackoverflow.com/questions/tagged/ckan">CKAN tag on StackOverflow</a> or the <a href="http://lists.okfn.org/mailman/listinfo/ckan-dev" rel="nofollow noreferrer">ckan-dev mailing list</a>. When posting, it is useful to include:</p> <ul> <li>What operating system you're using</li> <li>What version of CKAN you're using</li> <li>How you have deployed CKAN (package install or source install? Apache webserver or paster development install?)</li> <li>Your CKAN ini file (with any sensitive details removed)</li> <li>Any errors you get from CKAN, either from the terminal where you're running <code>paster serve ...</code> or, if you're running CKAN with Apache, from a log file such as <code>/var/log/apache2/YOURSITE.error.log</code>. If you can get us a full Python traceback, this is usually the most useful thing.</li> <li>The output of the <code>pip freeze</code> command when run in your CKAN virtualenv.</li> </ul>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload