Magento – Error / maintenance page – custom theme implementation failure

magento-1.9

So I followed, the magento error report and maintenance page instructions on how to customize the error / maintenance page `503.phtml', but it still displays and uses the default!

I created the custom theme errors/MyTheme
copied css and images folders. Also copied 404.phtml, 503.phtml, page.phtml and report.phtml to errors/MyTheme from errors/default.

Now I have:
errors/MyTheme/css
errors/MyTheme/images
errors/MyTheme/404.phtml
errors/MyTheme/503.phtml
errors/MyTheme/page.phtml
errors/MyTheme/report.phtml

The errors/local.xml file looks as follow:

<?xml version="1.0" encoding="UTF-8"?>   
 <config>   
   <skin>MyTheme</skin>   
   <report>   
    <action>email</action>
    <subject>Store Debug Information</subject>
    <email_address>Mail@MyDomain.com</email_address>
    <trash>leave</trash>
   </report>
</config>

File Permission inside of Default folder:
enter image description here

File Permission inside MyTheme folder:
enter image description here

File Permission inside error/ folder:
enter image description here

No matter what I do it does not use contents of MyTheme! Any ideas?

Best Answer

It all looks correct. Maybe check file permissions on copied files. If Magento can't find custom error them it fall back to default one.

Related Topic