Uploading big files

By default, PHP is set to allow uploads of files with a size of 2MB or less. If you need to upload larger files - increase the following values in php.ini, example:

upload_max_filesize = 24M
post_max_size = 32M

After making these changes restart Apache server.