4.6 KiB
Frequently Asked Questions
Can you recommend a web hosting provider for Kanboard?
Kanboard works well with any great VPS hosting provider such as Digital Ocean, Linode or Gandi.
To have the best performances, choose a provider with fast disk I/O because Kanboard use Sqlite by default. Avoid hosting providers that use a shared NFS mount point.
I get a blank page after installing or upgrading Kanboard
- Check if you have installed all requirements on your server
- Check the PHP and Apache error logs
- Check if the files have the correct permission
- If you use an aggressive OPcode caching, reload your web-server or php-fpm
Page not found and the URL seems wrong (&)
- The URL looks like
/?controller=auth&action=login&redirect_query=
instead of?controller=auth&action=login&redirect_query=
- Kanboard returns a "Page not found" error
This issue comes from your PHP configuration, the value of arg_separator.output
is not the PHP's default, there is different ways to fix that:
Change the value directly in your php.ini
if you can:
arg_separator.output = "&"
Override the value with a .htaccess
:
php_value arg_separator.output "&"
Otherwise Kanboard will try to override the value directly in PHP.
Known issues with eAccelerator
Kanboard doesn't work very well with eAccelerator. The issue caused can be a blank page or an Apache crash:
[Wed Mar 05 21:36:56 2014] [notice] child pid 22630 exit signal Segmentation fault (11)
The best way to avoid this issue is to disable eAccelerator or define manually which files you want to cache with the config parameter eaccelerator.filter
.
The project eAccelerator seems dead and not updated since 2012. We recommend to switch to the last version of PHP because it's bundled with OPcache.
Why the minimum requirement is PHP 5.3.3?
Kanboard uses the function password_hash()
to crypt passwords but it's available only for PHP >= 5.5.
However, there is a back-port for older versions of PHP. This library requires at least PHP 5.3.7 to work correctly.
Apparently, Centos and Debian back-ports security patches so PHP 5.3.3 should be ok.
Kanboard v1.0.10 and v1.0.11 requires at least PHP 5.3.7 but this change has been reverted to be compatible with PHP 5.3.3 with Kanboard >= v1.0.12
How to test Kanboard with the PHP built-in web server?
If you don't want to install a web server like Apache on localhost. You can test with the embedded web server of PHP:
unzip kanboard-VERSION.zip
cd kanboard
php -S localhost:8000
open http://localhost:8000/
How to install Kanboard on Yunohost?
YunoHost is a server operating system aiming to make self-hosting accessible to everyone.
There is a package to install Kanboard on Yunohost easily.
Where can I find a list of related projects?
- Kanboard API python client by @freekoder
- Kanboard Presenter by David Eberlein
- CSV2Kanboard by @ashbike
- Kanboard for Yunohost by @mbugeia
- Trello import script by @matueranet
- Chrome extension by Timo, Source code
- Python client script by @dzudek