Php7 Error

we have php7 installed on our server but for some reason when we enable it, site works except:

admin backend opens a blank page with one dot only and the user pages works fine except product page. anyone have any idea?

thanks

Should work fine with php7.0.x. Check error logs. My guess is an extension you need is not installed.

we have php7 installed on our server but for some reason when we enable it, site works except:

admin backend opens a blank page with one dot only and the user pages works fine except product page. anyone have any idea?

thanks

To see the errors, uncomment the line 110 in config.php from:

//define('DEVELOPMENT', true);

to

define('DEVELOPMENT', true);

And do not forget to change

ini_set('display_errors', 0);

with

ini_set('display_errors', 1);