Increase the Maximum File Upload Size in WordPress
Theme Functions File
functions.php
@ini_set( ‘upload_max_size’ , ’64M’ );
@ini_set( ‘post_max_size’, ’64M’);
@ini_set( ‘max_execution_time’, ‘300’ );
== == == == == == == == == ( 0 | 0 ) == == == == == == == == ==
PHP.INI file
.user.ini at GoDaddy
upload_max_filesize = 64M
post_max_size = 64M
max_execution_time = 300
== == == == == == == == == ( 0 | 0 ) == == == == == == == == ==
htaccess Method
.htaccess
upload_max_filesize = 64M
post_max_size = 64M
max_execution_time = 300
shared hosting lerde çalışmayabilir.
.