Постоянно вылезает ошибки нехватки памяти в opencart
Захожу в редактирование прав группы пользователей выдает ошибку
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 4096 bytes) in /home/site.com/public_html/admin/controller/user/user_permission.php on line 331
Но проблема в том что ставлю 256М выдает такую ошибку, ставлю 1024М(по факту ВМ там 4гб) то он бесконечно крутит, помогите решить проблему
код ошибки
// While the path array is still populated keep looping through
while (count($path) != 0) {
$next = array_shift($path);
foreach (glob($next) as $file) {
// If directory add to path array
if (is_dir($file)) {
$path[] = $file . '/*';
}
// Add the file to the files to be deleted array
if (is_file($file)) {
$files[] = $file;
}
}
}