Author Topic: How to increase allowed file upload size?  (Read 2921 times)

marsian

  • Freshman
  • *
  • Posts: 39
    • View Profile
How to increase allowed file upload size?
« on: August 11, 2015, 04:26:42 am »
Hello,

does anyone know where to increase the current 10MB Limit for file Uploads in FO? In general, I'd rather see this as a configuration value for the Admin Panel instead of a fixed value somewhere in the code...

Thanks!
« Last Edit: August 20, 2015, 11:31:55 am by conrado »

imendes

  • Freshman
  • *
  • Posts: 31
    • View Profile
Re: How to increase allowed file upload size?
« Reply #1 on: August 11, 2015, 05:57:48 am »
You must change some lines on php.ini file, in the site root:


post_max_size = 10M
upload_max_filesize = 10M

Change to the value you want.

marsian

  • Freshman
  • *
  • Posts: 39
    • View Profile
Re: How to increase allowed file upload size?
« Reply #2 on: August 11, 2015, 03:58:04 pm »
Great, thank you :)