Search Criteria
Package Details: kanboard 1.2.42-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/kanboard.git (read-only, click to copy) |
---|---|
Package Base: | kanboard |
Description: | Simple visual task board |
Upstream URL: | http://kanboard.org/ |
Licenses: | MIT |
Submitter: | pschmitt |
Maintainer: | PreparationH67 |
Last Packager: | PreparationH67 |
Votes: | 19 |
Popularity: | 0.000247 |
First Submitted: | 2014-10-31 10:43 (UTC) |
Last Updated: | 2024-11-20 16:52 (UTC) |
Dependencies (5)
- php
- php-gd
- mariadb (mysql55AUR, mysql56AUR, mytop-gitAUR, mysql81AUR, mysql57AUR, mysqlAUR, mysql80AUR, mariadb-lts, percona-server) (optional) – For MySQL storage
- php-pgsql (optional) – For postgres storage
- php-sqlite (optional) – For sqlite storage
Latest Comments
1 2 3 4 5 Next › Last »
czardien commented on 2023-06-21 11:28 (UTC)
I had to change the SHA-256 checksum to that exact value too: acc3328d19e45f93ef050f6c076676cc2cf4bebdee5c10aa87c81beb3e10bd44.
qtmax commented on 2023-03-25 15:27 (UTC)
The checksum of kanboard-1.2.27.zip doesn't match: the file that downloads from GitHub has acc3328d19e45f93ef050f6c076676cc2cf4bebdee5c10aa87c81beb3e10bd44, which differs from PKGBUILD. Is it only me?
archi42 commented on 2022-07-04 10:06 (UTC) (edited on 2022-07-04 10:06 (UTC) by archi42)
The links printed after install seem outdated. E.g.
should probably point to
atcw commented on 2021-12-16 03:34 (UTC) (edited on 2021-12-16 03:35 (UTC) by atcw)
For anyone getting 'Internal Error: The directory "/usr/share/webapps/kanboard/data" must be writeable by your web server user'
The problem and a hint for the fix was already reported by cydanil in 2020 but I could not put 2 and 2 together without the error message above in the same post. So i will be as verbose as I would have needed it to be to have helped myself. First php-fpm needs to be installed (which is not a direct dependency in the PKGBUILD). php5-fpm which is referenced by e.g. the nginx-conf is no longer in the current repositories. therefore the nginx-conf (that you copy into the /etc/nginx/sites-available folder) needs to have the factcgi_pass path to the socket adjusted. for me it was:
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
With that out of the way:
php-fpm.service defines ProtectSystem=full which prevents subfolders of /usr from being written to. as it happens kanboards data-directory is in /usr/share/webapp/kanboard/data as evidenced by the error message at the beginning of my post. Instead of lowering the protection overall you can add exemptions to this.
$sudo systemctl edit php-fpm.service
and add the following 2 lines in between the comments:
[Service]
ReadWritePaths=/usr/share/webapps/kanboard/data
Thats was it for me.
PreparationH67 commented on 2021-07-15 03:12 (UTC)
People should actually read the last updated timestamp before flagging a package as orphaned, FYI.
di72nn commented on 2020-12-30 12:11 (UTC)
Please update the package or disown it.
di72nn commented on 2020-06-20 15:56 (UTC)
1.2.14 and 1.2.15 released. Updating the version and hash seems enough.
Also, I think it would be a good idea to switch from
zip
totar.gz
.cydanil commented on 2020-05-03 23:02 (UTC)
Thanks for the work!
It's worth noting that the Kanboard install targets
/usr/share/webapps/kanboard
.php-fpm
, however, disallows writing to/usr
by default.This can be addressed by either updating
php-fpm.service
(seeProtectSystem
), or modifying the target installation directory.PreparationH67 commented on 2019-10-15 17:32 (UTC)
The default config is now patched in the packaging stage to avoid the issue with the PHP DIR macro and uses a variable called "ARCH_BASE_DIR".
PreparationH67 commented on 2019-10-14 16:30 (UTC)
@carlenny thanks for letting me know about this issue. I was hoping to avoid modifying the supplied default config, but that default will have to be changed to maintained the standard behavior for webapp packages.
1 2 3 4 5 Next › Last »