Increasing maximum size of uploaded files in Expression Engine
Tags: expression engine, file uploads, php.ini
Date: 10th April, 2010
Create a php.ini file and enter the following:
[PHP]
upload_max_filesize=64M;
post_max_size=64M;
memory_limit=128M;
then upload it to the web root and the system folder. I found this worked with allowing me to upload large images.
However, when trying to upload an 11Mb video, it wasn’t having it, so I copied the above php.ini file into the uploads directory and the system directory. That sorted it.
May 14, 2010 | Mr Portman
Oh, and remember to change the Maximum File Size (in bytes) field in the File Upload Preferences in EE…