I set in php.ini
upload_max_filesize = 64M
post_max_size = 64M
Then try .htaccess file
php_value upload_max_filesize 64M
php_value post_max_size 64M
And in wp-config.php define('WP_MEMORY_LIMIT', '64M');
But nothing helps me. The max upload size left 32px;
How can I increase max file upload in Wordpress?