Quote:
Originally Posted by Kyobanim
Found this Maximum size: 1048576 bytes - but I couldn't get something this size to upload. Maybe it has something to do with the upgrade.
|
Check /etc/php/apache/php.ini (or wherever you have it) for:
upload_max_filesize = xxM
PHP, atleast in 4.x versions, wrote the whole file to ram before writing it to the harddrive. This means that if you run out of either ram or swap it will fail. It will also fail if the above upload limit is passed.
After that the options of the board apply, unless its configs are Include'd into the php config, which I sort of doubt.
HTH