skip to Main Content

So after updating shop version from 1.9.0.1 to 1.9.3.2 one of the products(not all) started missing page content, like I cannot see the description, add to basket etc. It went from looking like this:
enter image description here

To looking like that:

enter image description here

My only guess it has simething to do with .html forms, but it’s my guess. Thanks for any help.

2

Answers


  1. You should look for the server error, maybe inside /var/log/apache/error.log or /var/log/nginx.error
    Probably a patch broke some php functionality

    Login or Signup to reply.
  2. To see the error in that page go to index.php and uncomment this line

    ini_set('display_errors', 'On');
    

    If it’s a memory limit error either edit your php ini or add these to index.php

    ini_set('memory_limit','256M');
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search