Browse Source

Merge branch 'fix-kanboard-install-plugin'

DricomDragon 5 years ago
parent
commit
c5b9d09755
2 changed files with 4 additions and 2 deletions
  1. 1 1
      Install/Templates/config.php
  2. 3 1
      Install/kanboard-install

+ 1 - 1
Install/Templates/config.php

@@ -10,5 +10,5 @@ define('DB_HOSTNAME', 'localhost');
 define('DB_NAME', 'kanboard_db');
 
 // Plugins
-define('PLUGINS_DIR', 'data/plugins');
+define('PLUGINS_DIR', __DIR__.DIRECTORY_SEPARATOR.'plugins');
 define('PLUGIN_INSTALLER', true);

+ 3 - 1
Install/kanboard-install

@@ -14,7 +14,7 @@ sudo cp Templates/config.php "/var/www/html/kanboard-$version/"
 
 ## Install PHP
 sudo apt install -y apache2 libapache2-mod-php php-cli php-mbstring  \
-    php-opcache php-json php-pgsql php-gd php-xml
+    php-opcache php-json php-pgsql php-gd php-xml php-zip
 
 ## Install Kanboard
 ### Go to apache folder
@@ -25,6 +25,8 @@ wget "https://github.com/kanboard/kanboard/archive/v$version.zip"
 
 ### Deploy
 unzip "v$version.zip"
+mkdir "kanboard-$version/plugins"
 chown -R www-data:www-data "kanboard-$version/data"
+chown -R www-data:www-data "kanboard-$version/plugins"
 rm "v$version.zip"