khomutovspace Hi, it is actually a server issue. A configuration issue to be precise. PHP has a setting to define a maximum upload size. You can change that setting in your php.ini
as follows:
upload_max_filesize = 50M
post_max_size = 50M
Alternatively you can also add such settings to your .htaccess
file:
php_value upload_max_filesize 50M
php_value post_max_size 50M