Pregunta

In my store 25K records available, when i try to download i am getting error like Request is taking too long to respond. How can i solve this response error?

¿Fue útil?

Solución

Increase PHP memory limit


1. php.ini

Locate your php.ini file by run phpinfo() function

memory_limit = 64M

2. .htaccess

Put this line in your first line of your .htaccess file

php_value memory_limit 64M

3. PHP run time

Maybe you hosting provider will accept you change ini information in run time, in this case you can add php code like this in first line of php bootstrap file

ini_set('memory_limit', '64M');  

More reference

Licenciado bajo: CC-BY-SA con atribución
No afiliado a magento.stackexchange
scroll top