Otherwise, here are three ways to increase PHP’s memory allocation:
1. If you can edit or override the system php.ini
file, increase the memory limit. For example, memory_limit = 128M
2. If you cannot edit or override the system php.ini
file, add php_value memory_limit 128M
to your .htaccess
file.
3. If neither of these work, it’s time to ask your hosting provider to temporarily increase PHP’s memory allocation on your account.
(in the above examples, the limit is set to 128MB)
You should enable the curl extension to avoid this issue.
]]>