Packages
I can't add a file to my package.
- Once you’ve added a file to your package, it’s 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 perform the deployment, 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’s “Add Package” 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.
This change may cause performance slowdowns. Be reasonable when increasing these values.