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,338
  • 9
  • 45
  • 76
Learner
  • 591
  • 3
  • 8
  • 27

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,445
  • 1
  • 13
  • 26
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,544
  • 4
  • 17
  • 30