WordPress memories increase by htaccess [solve]
Do you really want to do this?
This WordPress is very common error for every new user. Even I encountered this problem. Then I found this Google solution and, here I describe the solution for those individuals who have this problem.step 1: open [dot].htaccess file from your base folder via notepad or notepad++.
step 2: write below code at the end of htaccess file.
<IfModule mod_php5.c>
php_value max_execution_time 300
php_value upload_max_filesize 20M
php_value max_input_time 300
php_value upload_max_filesize 1000M
php_value post_max_size 2000M
php_value memory_limit 3000M
</IfModule>
Note: here i found the solution:
https://wordpress.org/support/topic/tthe-uploaded-file-exceeds-the-upload_max_filesize-directive-in-phpini/
No comments