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

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 :: php read mysql 
Php :: laravel guest blade 
Php :: insert data using seeder in laravel 
Php :: download data from s3 and save to local disk laravel 
Php :: laravel grouping where 
Php :: wherejsoncontains laravel 
Php :: laravel distinct not working 
Php :: if condition in smarty 
Php :: jquery serialize php decode 
Php :: php read text file into array 
Php :: codeigniter order_by 
Php :: Remove the Breadcrumbs on the Shop Entirely 
Php :: remove string after comma in php 
Php :: use resource in laravel 8 
Php :: write test case in react native 
Php :: file_put_contents 
Php :: heredoc php 
Php :: compare dates datetime php 
Php :: laravel throttle 
Php :: Object of class IlluminateDatabaseEloquentBuilder could not be converted to string 
Php :: php unlink 
Php :: laravel destroy or delete 
Php :: Best debugging tools for php 
Php :: how can set defult value for yield in laravel 
Php :: replace key in php 
Php :: php convert guzzle response to json 
Php :: get curret timedate php 
Php :: hide add new link on cpt page 
Php :: php combine values of two arrays 
Php :: show image laravel 
ADD CONTENT
Topic
Content
Source link
Name
2+2 =