diff options
-rw-r--r-- | README.markdown | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/README.markdown b/README.markdown index 5ea66df1..96faeca0 100644 --- a/README.markdown +++ b/README.markdown @@ -77,7 +77,7 @@ Requirements - Apache or Nginx - PHP >= 5.3.3 -- PHP extensions required: mbstring and pdo_sqlite +- PHP extensions required: mbstring and pdo_sqlite (don't forget to enable extensions) - A web browser with HTML5 drag and drop support Installation @@ -159,6 +159,7 @@ open http://localhost:8000/ ```bash apt-get update apt-get install -y php5 php5-sqlite +echo 'extension=sqlite.so' >> /etc/php5/conf.d/sqlite.ini cd /var/www/ wget http://kanboard.net/kanboard-VERSION.zip unzip kanboard-VERSION.zip @@ -177,4 +178,4 @@ curl "http://myserver/?controller=task&action=add&token=superSecretToken&title=m curl "http://myserver/?controller=task&action=add&token=superSecretToken&title=task123&project_id=3&column_id=7&color_id=red" ``` -Webhooks are useful to perform actions from external applications (shell-script, git hooks...).
\ No newline at end of file +Webhooks are useful to perform actions from external applications (shell-script, git hooks...). |