Welcome Guest, Not a member yet? Register   Sign In
How to deal with large uploads (no error message received)?
#2

You need to edit your php.ini file and change the below parameters.

CHANGING THE MAXIMUM UPLOAD FILE SIZE

By default, the maximum upload file size for PHP scripts is set to 128 megabytes. However, you may want to change these limits.
For example, you can set a lower limit to prevent users from uploading large files to your site. To do this, change the
upload_max_filesize and post_max_size directives in your php.ini file.

To ensure that file uploads work correctly, the post_max_size directive should be a little larger than the upload_max_filesize.
For example, the following settings demonstrate how to set a file upload limit to 20 megabytes:

Code:
upload_max_filesize = 21M
post_max_size = 21M

Change to the largest size that you want for uploading, these values should match.
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply


Messages In This Thread
RE: How to deal with large uploads (no error message received)? - by InsiteFX - 01-20-2019, 05:34 AM



Theme © iAndrew 2016 - Forum software by © MyBB