0

I didn't know hat happen to my magento site but it seems that the order view is not working. What could be the possible reason for this? Please help me. enter image description here

Alen
  • 279
  • 1
  • 3
  • 15

1 Answers1

0

Seems like an error in PHP

Magento Mode

Go to index.php and modify:

if (isset($_SERVER['MAGE_IS_DEVELOPER_MODE'])) {
    Mage::setIsDeveloperMode(true);
}

by

#if (isset($_SERVER['MAGE_IS_DEVELOPER_MODE'])) {
    Mage::setIsDeveloperMode(true);
#}

And

#ini_set('display_errors', 1);

by

ini_set('display_errors', 1);

PHP Mode

This always works for me:

ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);

However, this doesn't make PHP to show parse errors - the only way to show those errors is to modify your php.ini with this line:

display_errors = on

When you see the error go to url referred by @gopal-patel : magento order view information is blank page

osrecio
  • 1,628
  • 10
  • 16
  • it is a conflict in the module I added. I have to remove the module ang the Order View is Good Again. Thank you for you time in finding solution on my problem. – Alen Dec 22 '16 at 02:04
  • Remember vote up if answer help you with your problem :) – osrecio Dec 22 '16 at 10:25