davo3d Posted August 8, 2009 Share Posted August 8, 2009 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 254envio unos archivos adjuntos donde se ve el error.. Link to comment Share on other sites More sharing options...
davo3d Posted August 9, 2009 Author Share Posted August 9, 2009 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.phpen 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 -8todo solucionado Link to comment Share on other sites More sharing options...
Ehinarr Posted August 9, 2009 Share Posted August 9, 2009 Gracias. Link to comment Share on other sites More sharing options...
Recommended Posts