Jump to content

error back office en los botones de payment y modules


Recommended Posts

buenas tardes, tengo el siguiente error en la back office, cuando le doy clic al boton de payment me sale el siguiente:

error ---Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 24458 bytes) in C:\AppServ\www\prestashop\classes\Module.php on line 313.

yo estoy probando el programa en un servidor de prueba (appserv) . me podrian ayudar a ver que pasa ..gracias ,

igualmente tambien me sale ese error al darle clic al boton de modules:

---Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 24576 bytes) in C:\AppServ\www\prestashop\classes\Module.php(318) : eval()'d code on line 254

envio unos archivos adjuntos donde se ve el error..

10330_j1vwcQ0sNiR8FuqisL3L_t

10331_WmEueZcKUxOBqjklczyX_t

Link to comment
Share on other sites

me toco responderme a mi mismo, ...ya solucione el problema para los que tengan este error en windows :

vallan a la carpeta de los archivos del programa de prestashop:

y abran este archivo de configuracion ----------prestashop\config\config.inc.php

en la primera linea debajo de todo esto:

/* Improve PHP configuration to prevent issues */
@ini_set('display_errors', 'off');
@ini_set('upload_max_filesize', '100M');
@ini_set('default_charset', 'utf-8');

agreguen esto: @ini_set(‘memory_limit’,’-1’);

quedaria asi:
/* Improve PHP configuration to prevent issues */
@ini_set('display_errors', 'off');
@ini_set('upload_max_filesize', '100M');
@ini_set('default_charset', 'utf-8');
@ini_set(‘memory_limit’,’-1’);

si por algun modo no les funciona con -1, prueben con -8

todo solucionado

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...