This a copy of my reply to one of the topics in "General" forum. A user had the problem: he was not able to upload any game (swf) which filesize was 2.5 Mb or more.
And here is a simple workaround:
Since almost any hoster allows you to put custom php.ini inside your public_html (i.e. site's home) folder, you can adjust the upload_max_filesize parameter which handles how large can be the files you are uploading using admin CP. Your php.ini file should contain the following lines:
Code:
upload_max_filesize = 16777216
post_max_size = 33554432
max_execution_time = 600
And must be placed inside /admin/ folder.
That's it