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.

Asked
Active
Viewed 111 times
0
Alen
- 279
- 1
- 3
- 15
-
refer this http://magento.stackexchange.com/a/99774/45103 – Gopal Patel Dec 20 '16 at 08:10
-
you use cdn in your ssite? – Jigs Parmar Dec 20 '16 at 09:13
-
@jigsparmar no I don't have – Alen Dec 21 '16 at 07:26
1 Answers
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
-
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
-