23.12.2021
Detected problem:
The PHP "memory_limit" value is set to less than the required minimum of 128MB, but because the built in PHP function "ini_set" has been disabled, the memory limit cannot be automatically increased.
Este problema al parecer se genera por al configuración del archivo php.ini donde no existe suficiente memoria de acuerdo al programa. En servidores compartidos es posible que usted no pueda cambiar ese valor de memoria disponible. Una solución es modificar el archivo memory.php en la linea
return 134217728;
por
return OX_getMemoryLimitSizeInBytes(); // 128MB in bytes (128 * 1048576);
De esa manera el limite sera la misma configuracion del sistema.
14 Mar, 2022 | 0
29 Nov, 2023 | 0
20 Sep, 2023 | 0
11 Sep, 2023 | 0
11 Aug, 2023 | 0