Packages
I can't add a file to my package.
- Once you have added a file to your package, it is pending; don’t forget to click “Submit pending package.”
I created a package but it’s not available for deployment—why?
- If your package isn't visible in the package list, or isn't visible when you try to deploy it, then it's waiting to be synchronized with the relays; please wait a few moments before it appears in the "Package List."
Why isn’t my package available on the Kiosk package addition page?
- Your package must have an associated inventory to be visible in the list of packages available for the Kiosk.
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.