Question

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?

Was it helpful?

Solution

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

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top