Problema en Limite de Memoria de OpenX

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.

Let's Talk!