summaryrefslogtreecommitdiff
path: root/README.markdown
diff options
context:
space:
mode:
authorMatthieu Keller <keller.mdpa@gmail.com>2014-02-28 11:37:17 +0100
committerMatthieu Keller <keller.mdpa@gmail.com>2014-02-28 11:37:17 +0100
commite3d4b56f14d931a8f61122537e6e598da74e8a19 (patch)
treef6f1c6a137889bbcc66acfbce0594013bd9eab15 /README.markdown
parente7db71b593f2d9856a5b3aacde00a638d074d601 (diff)
Update README.markdown
Hey, j'ai installé Kanboard pour tester ça a l'air sympa. L'installation sur debian ne m'a pris que quelques minutes. Il faut juste penser à activer sqlite. En effet sinon on a le message d'erreur : PHP extension required: pdo_sqlite pour cela il suffit de rajouter la ligne suivante à `/etc/php5/conf.d/sqlite.ini` (et créer le fichier si nécessaire): extension=sqlite.so je me permet de mettre à jour le readme au passage (avec un echo crade certes) mais il faudra répercuter ça sur le site.
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...).