Packages

I can't add a file to my package.
I created a package but it’s not available for deployment—why?
Why isn’t my package available on the Kiosk package addition page?


Increase the package upload size 

Run these commands with the desired size;post_max_size and upload_max_filesize correspond to the new desired upload size.

crudini --set /etc/php/8.2/fpm/php.ini PHP post_max_size 800M 
crudini --set /etc/php/8.2/fpm/php.ini PHP upload_max_filesize 800M
crudini --set /etc/php/8.2/fpm/php.ini PHP memory_limit 2048M
crudini --set /etc/php/8.2/fpm/php.ini PHP max_execution_time 60
crudini --set /etc/php/8.2/fpm/php.ini PHP max_input_time 60
systemctl restart php8.2-fpm

memory_limit must be at least 2.5 times the upload size.

Performance may slow down after this change. Be reasonable when increasing these values.


Revision #1
Created 2026-04-30 07:37:39 UTC by Adrien Thaissen
Updated 2026-04-30 07:37:39 UTC by Adrien Thaissen