How to maximize upload limit in wordpress ?

Joined
Jan 15, 2015
Messages
12
Reaction score
1
Can anyone give me a step-by-step guide here ? I searched it on google and I ended up an error.
PS I have no background about HTML?/PHP whatsoever
 
some plugin can do that for you, but after that it depend than the host allowed to up the size limit

or add you file directly with the server FTP is really easy, use like fillezilla with your informations, for the port its "21"
 
Last edited:
mate make a txt file > called ".htaccess" put this : (and custom the size limit)

php_value upload_max_filesize 64M
php_value post_max_size 64M
php_value max_execution_time 300
php_value max_input_time 300

and upload the file ".htaccess" in the root folder, said me if it work
 
Depending on the host you are using, you would need to create a php.ini file on your root folder ( or edit /etc/php.ini ) and add/change the following:
Code:
memory_limit = 512M
upload_max_filesize = 256M
post_max_size = 256M

This Wordpress plugin also claims to do the same but I have not tested it.
 
If you have access to ini.php you have others explaining to you how to do it. If not, the only thing you can do contact the support to lift your upload limit.

If they refuse for security reasons, you need to change your host.
 
Create a php.ini file with this settings:

memory_limit = 32M
upload_max_filesize = 32M
post_max_size = 32M
file_uploads = On

And place this php.ini file inside your /wp-admin/ folder through FTP and you are ready to go :D
 
thanks guys. i uploaded a big file through FTP. how do i publish it in wordpress ? im really a newbie sorry
 
Back
Top