abctrend 트랜드 블로그 햄버거 메뉴

목차

    반응형

    워드프레스 타임아웃 및 메모리관련 설정 tip




    PHP file (for example, my_lengthy_script.php)

    ini_set('max_execution_time', 300); //300 seconds = 5 minutes

    .htaccess file

    <IfModule mod_php5.c>
    php_value max_execution_time 300
    </IfModule>

    More configuration options

    <IfModule mod_php5.c>
    php_value post_max_size 5M
    php_value upload_max_filesize 5M
    php_value memory_limit 128M
    php_value max_execution_time 300
    php_value max_input_time 300
    php_value session.gc_maxlifetime 1200
    </IfModule>

    If wordpress, set this in the config.php file,

    define('WP_MEMORY_LIMIT', '128M');

    If drupal, sites/default/settings.php

    ini_set('memory_limit', '128M');

    If you are using other frameworks,

    ini_set('memory_limit', '128M');

    You can increase memory as gigabyte.

    ini_set('memory_limit', '3G'); // 3 Gigabytes

    259200 means:-

    ( 259200/(60x60 minutes) ) / 24 hours ===> 3 Days


    반응형
    댓글
    위쪽 화살표
    도움이 되었다면 공감(하트)과 댓글을 부탁드려요.
    로딩바