I'm running a WordPress site (not MU), I have set upload_max_filesize = 50M, post_max_size=50M in php.ini. The results of phpinfo() function show the value to be 50M but in WordPress Media uploader Max upload file size is still 32M.
I have also tried to write this code in the theme's functions.php:
@ini_set( 'upload_max_size' , '50M' );
@ini_set( 'post_max_size', '50M');
Also tried deactivating all plugins, changed theme but no resort, WordPress still says 32 Mb.
Can anyone guide me what can be wrong here?
