Skip to content

Instantly share code, notes, and snippets.

@mksddn
Created January 4, 2025 08:56
Show Gist options
  • Save mksddn/e3023a6fb98477670c6a8654b8c338da to your computer and use it in GitHub Desktop.
Save mksddn/e3023a6fb98477670c6a8654b8c338da to your computer and use it in GitHub Desktop.
<?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