1.Open your Magento installation directory. Locate and open index.php file.
2.Search for error_reporting(E_ALL | E_STRICT); code.
3.Comment it out like that:
/*error_reporting(E_ALL | E_STRICT);*/ And use the following code instead:
error_reporting(E_ALL);$_SERVER['MAGE_IS_DEVELOPER_MODE'] = true;
Uncomment it by removing the # sign, so it looks like that:
ini_set('display_errors', 1);
6.Save this file and upload to the server. Reload your website page to see errors.
Open your Magento installation directory. Locate and open index.php file.
Search for error_reporting(E_ALL | E_STRICT); code.
Comment it out like that:
/*error_reporting(E_ALL | E_STRICT);*/And use the following code instead:
error_reporting(E_ALL);$_SERVER['MAGE_IS_DEVELOPER_MODE'] = true;Uncomment it by removing the # sign, so it looks like that:
ini_set('display_errors', 1);Save this file and upload to the server. Reload your website page to see errors.