Вопрос

I need to upgrade from Magento version 1.9.3.1 to v1.9.3.4 which includes version 2 of SUPEE-9767. And just want to check that the normal upgrade process I have is correct.

  1. Make back up of website & DB.
  2. Test upgrade on staging website first by merging latest version of Magento (v1.9.3.4) with current website codebase.
  3. Test upgrade has completed by logging into admin panel and checking version number.
  4. Test website, cart, checkout, product pages, product listings etc.
  5. Add maintenance.flag to production website to put it in maintenance mode.
  6. Make same changes on Production (i.e. merging latest version of Magento with current website codebase.)
  7. Remove maintenance.flag from production and test upgrade has been successful.

Does this seem ok?
Is it ok that I'm skipping two small release inbetween by going directly from 1.9.3.1 to v1.9.3.4?

Это было полезно?

Решение

You are proceeding is correct.

In v1.9.3.4 all the release are added. Dont worry about small release.

Note: After upgrade, Billing,Shipping,Add to cart and Payment not working Please check your form, <?php echo $this->getBlockHtml(“formkey”) ?> is there. if not please add.

<?php echo $this->getBlockHtml('formkey') ?>
/app/design/frontend/YourPackage/YourTheme/template/checkout/onepage/billing.phtml    
/app/design/frontend/YourPackage/YourTheme/template/checkout/onepage/shipping.phtml
/app/design/frontend/YourPackage/YourTheme/template/persistent/checkout/onepage/billing.phtml

/app/design/frontend/YourPackage/YourTheme/template/checkout/onepage/payment.phtml

Hope it will helpful for you.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с magento.stackexchange
scroll top