Sửa lỗi tràn bộ nhớ trong opencart

03/11/2015 0 Comment(s) Thủ thuật,

Thỉnh thoảng đang lướt website opencart thì gặp trường hợp này

"Fatal error: Allowed memory size of 134217728 bytes exhausted"

Có nhiều cách sửa nhưng mình sửa quài không được. Và thấy có cách này là được.

Chèn code này vào file system/startup.php

// Register Globals
ini_set('memory_limit','-1');

if (ini_get('register_globals')) {
    ini_set('session.use_cookies', 'On');
    ini_set('session.use_trans_sid', 'Off');
       
    session_set_cookie_params(0, '/');
    session_start();

// ...code continues to closing curly
}

Chúc các bạn thành công nhé.

Write a Comment