“upload_max_filesize in WordPress” Code-Antworten

PHP (WordPress) - Maximale Upload -Dateigröße erhöhen

// 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' );
CL

upload_max_filesize in WordPress

@ini_set('upload_max_size' , '128M' );
Ninja Hathori

Ähnliche Antworten wie “upload_max_filesize in WordPress”

Fragen ähnlich wie “upload_max_filesize in WordPress”

Weitere verwandte Antworten zu “upload_max_filesize in WordPress” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen