(05-30-2015, 02:40 AM)Crunchn Wrote: I would like some help looking for how to change the PHP upload limit.
I have a wordpress installation with sentora 1.0.0. I have updated everything I could think of, from htaccess tweaks to php.ini to increase the upload limit. I have even put in some custom variables for suhosin (even disabling it) to try and allow a higher upload limit.
No matter what I try and do, I cannot upload greater than 128M, I have all the upload limits at 256M.
I suppose I would assume there is some magical hidden upload limit that I can't seem to figure out where it is or where I might be able to change it. If anyone could help me out, I would be very grateful.
You can increase upload size limit editing the PHP.ini file and add the code
upload_max_filesize = 20M
post_max_size = 25M
memory_limit = 30M
You can also do this editing .htaccess fileand add the code
php_value upload_max_filesize 20MB
php_value post_max_size 25MB
php_value memory_limit 30MB
Another method is modifying WordPress editing wp-config.php or functions.php
@ini_set( ‘upload_max_size’ , ’20MB’ );
@ini_set( ‘post_max_size’, ’25MB’);
@ini_set( ‘memory_limit’, ’30MB’ );
If still facing any issue you can go through this guide to increase upload size limit