Created
January 4, 2025 08:56
-
-
Save mksddn/e3023a6fb98477670c6a8654b8c338da to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Увеличение лимитов | |
function increase_limits() { | |
// Увеличение размера загружаемых файлов | |
@ini_set('upload_max_size', '128M'); | |
@ini_set('post_max_size', '128M'); | |
@ini_set('max_execution_time', '300'); | |
@ini_set('memory_limit', '256M'); | |
// Если работаете с WP-CLI или AJAX, можно выставить лимиты таким образом | |
define('WP_MEMORY_LIMIT', '256M'); | |
define('WP_MAX_MEMORY_LIMIT', '512M'); | |
} | |
add_action('init', 'increase_limits'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment