summaryrefslogtreecommitdiff
path: root/README.markdown
diff options
context:
space:
mode:
authorFrédéric Guillot <contact@fredericguillot.com>2014-03-02 13:21:20 -0500
committerFrédéric Guillot <contact@fredericguillot.com>2014-03-02 13:21:20 -0500
commit1e9232643e907edfe9de05f3b04d3826a9b1ccd0 (patch)
treecc4ab93f7db640e20fd72d410612a96bd37a3f8b /README.markdown
parente7993450853ac39a37e4888360225466081e0b19 (diff)
parente3d4b56f14d931a8f61122537e6e598da74e8a19 (diff)
Merge branch 'patch-1' of github.com:maggick/kanboard
Diffstat (limited to 'README.markdown')
-rw-r--r--README.markdown5
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...).