If you receive errors when uploading files or images to your app, you can increase the file size upload limit by changing your app's PHP settings.

Create a file named .user.ini in your app's web root directory:

apps/APPNAME/public/.user.ini

Using a .user.ini file is the best and safest way to customize PHP settings for an APP.
 
Unlike modifying global configuration files, using a .user.ini file can't break your server.

You will most likely want to change your app's upload_max_filesize or post_max_size or both.

To do so, enter the following lines in your .user.ini file:

upload_max_filesize = 700M
post_max_size = 100K

where 700 and 100 are changed to the values you need to set for your app while M and K are changed to the measurements in MB or KB.

For information on changing other PHP settings, check out our tutorial on using .user.ini files.

Alert: For Control Panel Help & Tutorials, click here: Panel Tutorials
Was this answer helpful? 0 Users Found This Useful (0 Votes)

Powered by WHMCompleteSolution