define('WP_DEBUG', false);
//po tej lini dodać te funkcje
define('WP_POST_REVISIONS',1); // - max version revisions 1,2,3.. or false
define('WP_MEMORY_LIMIT','96M'); // - memory limit default is 32M if not set
max_execution_time = 120
// in /wp-includes/default-constants.php
function wp_initial_constants() {
global $blog_id;
// set memory limits
if ( !defined('WP_MEMORY_LIMIT') ) {
if ( is_multisite() ) {
define('WP_MEMORY_LIMIT', '64M');
} else {
define('WP_MEMORY_LIMIT', '40M'); // change to 96MB
}
}