Home / Admin / 修改WP Memory等參數
Duplicate Snippet

Embed Snippet on Your Site

修改WP Memory等參數

Code Preview
php
<?php
// 設定 WordPress 記憶體限制
define('WP_MEMORY_LIMIT', '256M');
define('WP_MAX_MEMORY_LIMIT', '512M');
// 設定 PHP 執行層的上傳限制
@ini_set('upload_max_filesize', '64M');
@ini_set('post_max_size', '64M');
@ini_set('max_execution_time', '300');

Comments

Add a Comment