Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 30720 bytes) in /home/ssmagnet/public_html/lib/Zend/Locale/Format.php on line 103
Please help me to resolve this issue
Your memory limit is too low. Check your .htaccess file in the Magento directory and change the value of php_value memory_limit
to bump it up a bit. If you don't see a line like this, add it to the bottom of the file. A value that's worked for me is:
php_value memory_limit 128M
Hope that helps!
Thanks, Joe
memory_limit
settings via layers of ini files. My nginx install had a/etc/php5/fpm/conf.d/default.ini
with memory_limit=32M which was giving me problems. – Chris K