WordPress will automatically show the utmost file upload size limit once you are uploading images or media. to see it you’ll simply attend Media » Add New page and you’ll see the utmost file uplaod size limit for your WordPress site.
There are cases where we have seen that just by adding the following code in theme’s functions.php file, you can increase the upload size:
@
ini_set
(
'upload_max_size'
,
'32M'
);
@
ini_set
(
'post_max_size'
,
'32M'
);
@
ini_set
(
'max_execution_time'
,
'300'
);
Some people have tried using the .htaccess method where by modifying the .htaccess file in the root directory, you can increase the maximum upload size in WordPress. Edit the .htaccess file in your WordPress site’s root folder and add the following code:
1 2 3 4 | php_value upload_max_filesize 64M php_value post_max_size 64M php_value max_execution_time 300 php_value max_input_time 300 |
Creating dependent dropdowns in CakePHP 2 involves using AJAX to dynamically load data into the…
just add below code in column properties id Default input Method: 1nextval('form_submissions_id_seq'::regclass) Method: 2 Via…
Learn how to efficiently set up auto-increment columns in PostgreSQL with this step-by-step guide. From…