Skip to content

Koel App

About

Koel is a personal music streaming server.

Increasing the upload limit

In order to increase the upload limit of the Koel App you need to edit two files with either the Web Terminal or the Web File manager.

Edit the /app/data/php.ini and add the following lines lines - in this example we set the limit to 1GB.

; upload_max_filesize and post_max_size are set to 50M by default
upload_max_filesize = 1G
post_max_size = 1G

Save and close the file.

Now edit the /app/data/public/htaccess file. In this file you should find and edit the following two lines to also represent the new limit of 1GB:

php_value upload_max_filesize 1G
php_value post_max_size 1G