1

Is there a limit to the max uploaded size in php.ini ?

I want to change it Like so:

upload_max_filesize = 4096 M or 4 G

post_max_size = 4 G
Nana Partykar
  • 10,556
  • 10
  • 48
  • 77
Learner
  • 611
  • 3
  • 12
  • 28

2 Answers2

0

try this

Maximum allowed size for uploaded files.
upload_max_filesize = 4000M

 Must be greater than or equal to upload_max_filesize
post_max_size = 4000M
Vivek Singh
  • 2,453
  • 1
  • 14
  • 27
0

You'll be needing to set the value of upload_max_filesize and post_max_size variables in your php.ini :

upload_max_filesize = 5000M
post_max_size = 5000M
Nehal
  • 1,542
  • 4
  • 17
  • 30