Search code examples
magentomagento-1.9product

Magento Product View Details Not loading Properly


In my magento website, whenever i am trying to view the product details page,its not loading the product details page properly,after the Product Image its not displaying anything.

enter image description here


Solution

  • You can fix this Issue following way.

    1: Modify php.ini

    Edit php.ini .Search memory_limit in your php.ini, and change the value of it. If no memory_limit found, add the following line at the end of php.ini memory_limit = 128M ; /* Change the 128M to your needs */

    2 : htaccess Way

    Find the ".htaccess" in your root directory of the specified domain, if there isn't, create one. Put the following line in it. php_value memory_limit 128M; /* Change the 128M to your needs */

    3: Change Memory At Runtime

    PHP memory limit could be changed at runtime. Via this way, you have no need to change and configuration of your server environment. ini_set('memory_limit', '128M');

    Hope this helps you.