-1

I'm working on a form in Symfony 2 and I got a problem with file upload. I tried changing the max size for something over 2M, but it always say that there's a 2M size limit. I will need to upload big files, like 53M. The best for my situation would be to have NO file size limit at all. How could I do that?

Kévin Duguay
  • 761
  • 3
  • 12
  • 29

1 Answers1

1

check these values in php.ini:

upload_max_filesize = 10M
post_max_size = 10M
Frank B
  • 3,667
  • 1
  • 16
  • 22