From e3d4b56f14d931a8f61122537e6e598da74e8a19 Mon Sep 17 00:00:00 2001 From: Matthieu Keller Date: Fri, 28 Feb 2014 11:37:17 +0100 Subject: Update README.markdown MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- README.markdown | 5 +++-- 1 file 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...). -- cgit v1.2.3