-4

I want to code a php file uploader, but for bigger files. What do I have to modify?

Marton
  • 247
  • 2
  • 11
  • [See Related Configuration Notes](http://php.net/manual/en/features.file-upload.post-method.php) in of all the odd places _the manual_ – RiggsFolly Dec 18 '17 at 15:53

1 Answers1

0

You have to modify upload_max_filesize and post_max_size and make sure that post_max_size is larger than upload_max_filesize. Change the max_execution_time too.

MeknessiHamida
  • 185
  • 1
  • 8
  • 28