How to increase the file upload size in your php.ini or .htaccess file?
How to increase the file upload size in your php.ini or .htaccess file?
increase max upload size wordpress wp-config | how to increase maximum upload file size in cpanel | how to increase upload size in wordpress on localhost | how to increase maximum upload file size in wordpress all-in-one migration | php.ini file | php.ini wordpress | extend file size
increase max upload size wordpress wp-config | how to increase maximum upload file size in cpanel | how to increase upload size in wordpress on localhost | how to increase maximum upload file size in wordpress all-in-one migration | php.ini file | php.ini wordpress | extend file size
increase max upload size wordpress wp-config | how to increase maximum upload file size in cpanel | how to increase upload size in wordpress on localhost | how to increase maximum upload file size in wordpress all-in-one migration | php.ini file | php.ini wordpress | extend file size
increase max upload size wordpress wp-config | how to increase maximum upload file size in cpanel | how to increase upload size in wordpress on localhost | how to increase maximum upload file size in wordpress all-in-one migration | php.ini file | php.ini wordpress | extend file size
increase max upload size wordpress wp-config | how to increase maximum upload file size in cpanel | how to increase upload size in wordpress on localhost | how to increase maximum upload file size in wordpress all-in-one migration | php.ini file | php.ini wordpress | extend file size
increase max upload size wordpress wp-config | how to increase maximum upload file size in cpanel | how to increase upload size in wordpress on localhost | how to increase maximum upload file size in wordpress all-in-one migration | php.ini file | php.ini wordpress | extend file size increase max upload size wordpress wp-config how to increase maximum upload file size in cpanel how to increase upload size in wordpress on localhost how to increase maximum upload file size in wordpress all-in-one migration php.ini file php.ini wordpress extend file size
Share
Step 1: Find out your PHP configuration
Create a phpinfo.php file and upload the file using FTP to your root directory and you’ll get all the details information about your server.
Just search “Server API” and you’ll find the name of module if it is – Apache module or – CGI Module
<?php phpinfo();?>
Step 2:For Server API: Apache {Update .htaccess}
If your server runs PHP as an “Apache module”, you can update your PHP settings via a .htaccess file.Update .htaccess file OR create a new one and paste the below code in it.
php_value upload_max_filesize 10M
php_value post_max_size 50M
Step 3:For Server API: CGI {Update php.ini}
If your server runs PHP as an “CGI module”, you can update your PHP settings via php.ini file.Update php.ini file OR create a new one and paste the below code in it.
upload_max_filesize = 20M
post_max_size = 20M