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

PREVIOUS NEXT
Code Example
Php :: register sidebar wordpress 
Php :: replace in php 
Php :: php imagick xampp windows 
Php :: remove first 4 characters in string php 
Php :: eloquent limit 
Php :: sum row data and get all data eloquent laravel 
Php :: check the ajax request in laravel 
Php :: laravel npm build production 
Php :: AUTO_INCREMENT in laravel 
Php :: wordpress php query randomise 
Php :: laravel resource route 
Php :: codeigniter 4 redirect with data 
Php :: php curl request 
Php :: array_key_exists 
Php :: laravel carbon 
Php :: laravel eloquent without relation 
Php :: action after model is created laravel 
Php :: générer des nombres aléatoires décimaux en php 
Php :: php implode keys 
Php :: what is the difference between static and dynamic websites? 
Php :: how can we check in the table in comma separated values in laravel 
Php :: laravel show table columns 
Php :: eloquent all only one culomn 
Php :: how to remove keys in subarray php 
Php :: how to install symfony in windows 10 
Php :: htmlspecialchars in php 
Php :: string compare in php 
Php :: laravel eloquent many to many query using whereHas 
Php :: appserviceprovider laravel auth user 
Php :: pagination php mysql 
ADD CONTENT
Topic
Content
Source link
Name
8+7 =