Skip to main content
26
results
Andrew Fletcher
  Install the CKAN package Begin by cleaning up your server environment.  Do this by updating Ubuntu’s package index: sudo apt updateNow you can install the packages that CKAN requires (including ‘git’, which will allow you to install CKAN extensions): sudo apt install -y libpq5 redis-server nginx supervisorResponse Reading package lists... Done Building dependency tree Reading state information... Done The following additional packages will be installed: fontconfig-config...
Andrew Fletcher
If you're planning to create extensions, generating CKAN from source is the...
Andrew Fletcher
Resources - changing Drush Type Version Drush (current) 11.6.0 Drush...
Andrew Fletcher
CKAN extensions - adding to your installation   Following the information...
Andrew Fletcher
Attempting to run a composer update command, you know the one used...
Andrew Fletcher
Goal: Restrict content access through username and password entry on an Nginx server. 1: Apache Utilities Package First, update your server’s package index: sudo apt updateCheck if the utilities package exists in your environment by executing the command dpkg --get-selections | grep apacheResponse: apache2-utils install libapache-pom-java installSo it exists.  But what do you do if it doesn't exist? How come I need to install apache-utils?  To restrict access you will be using...
Andrew Fletcher
Using Composer to Manage Projects and if required their dependencies In this...
Andrew Fletcher
Looking at composer I first wanted to check the current version, which is...
Andrew Fletcher
Build the PHP base image with apache-buster using the Dockerfile.base Since JN...
Andrew Fletcher
Reviewing CKAN extensions and listing the extensions that have been created /...
Andrew Fletcher
Location of the base templates cd /usr/lib/ckan/default/src/ckan/ckan/templatesWhereas as the location of the plugin that displays the new template cd /usr/lib/ckan/default/src/ckanext-{project}/ckanext/{project}/templatesTo alter the home main page, edit the  cd...
Andrew Fletcher
This article works through the steps to update dependencies in the...
Andrew Fletcher
Finding the issue with a server 500 error The Nginx error logs are showing too...
Andrew Fletcher
Focusing on the ckan.ini file (/etc/ckan/default/ckan.ini).  When I run the...
Andrew Fletcher
Following the instructions on CKAN DataStore with a little...