# 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
```

<p class="callout warning">**memory\_limit must** be at least 2.5 times the upload size.</p>

<p class="callout warning">Performance may slow down after this change. Be reasonable when increasing these values.</p>