Search
 
SCRIPT & CODE EXAMPLE
 

PHP

PHP (WordPress) - Increase Maximum Upload File Size

// Increase Maximum Upload File Size
@ini_set( 'upload_max_filesize' , '128M' ); //set this to a value > than your backup
@ini_set( 'post_max_size', '128M'); //set this to a value > than your backup
@ini_set( 'memory_limit', '256M' ); //set this to a value > than your backup
@ini_set( 'max_execution_time', '300' ); //set this to 0 (infinite)
@ini_set( 'max_input_time', '300' );
Comment

upload_max_filesize in wordpress

@ini_set('upload_max_size' , '128M' );
Comment

increase upload size wordpress

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

how increase php upload size in wordpress

@ini_set( 'upload_max_filesize' , '128M' );
@ini_set( 'post_max_size', '128M');
@ini_set( 'memory_limit', '256M' );
@ini_set( 'max_execution_time', '300' );
@ini_set( 'max_input_time', '300' );
Comment

PREVIOUS NEXT
Code Example
Php :: strcasecmp php 
Php :: percentage in php 
Php :: date format change in laravel 
Php :: php uppercase with accent 
Php :: how assign default value to laravel migration column 
Php :: time php 
Php :: get data in array formate in Laravel 
Php :: how to convert array to string in php 
Php :: php strftime 
Php :: iterate through an associative array php 
Php :: laravel translate 
Php :: how to get current location in laravel 
Php :: laravel reduce 
Php :: file put contents append 
Php :: first name of string php 
Php :: delete multiple row in laravel 
Php :: php mysql search database and display results 
Php :: delete bunch of rows in laravel 
Php :: how to set date in php 
Php :: if notexists in laravel query 
Php :: valet switch php version 
Php :: php import script 
Php :: create listener using laravel 
Php :: laravel get image extension 
Php :: php if else wordpress 
Php :: php override trait method and call it 
Php :: laravel unique column except self 
Php :: laravel routes resource 
Php :: curl php 
Php :: How to JSON encode a PHP array 
ADD CONTENT
Topic
Content
Source link
Name
6+6 =