Can someone tell me which patches are needed for Magento v1.8.1.0?
The following list of patches show up on the downloads page:
- 2747
- 2619
- 2725
- 3941
- 1868 - FAILS
- 4334 - FAILS
- 1533
- 5344
- 5994
- 6237
- 6285
- 6482
- 7616 - FAILS
- 7405
1868, 4334 or 7616 all fail on stock Magento v 1.8.1.0.
For example viewing 1868 we see the following:
diff --git app/code/core/Mage/Usa/etc/config.xml app/code/core/Mage/Usa/etc/config.xml
index 0174a7b..e040af8 100644
--- app/code/core/Mage/Usa/etc/config.xml
+++ app/code/core/Mage/Usa/etc/config.xml
@@ -28,7 +28,7 @@
<config>
<modules>
<Mage_Usa>
- <version>1.6.0.1</version>
+ <version>1.6.0.1.1.2</version>
</Mage_Usa>
</modules>
<global>
The problem here is that this will never match on v 1.8.1.0 because the Mage_Usa version included is 1.6.0.3 NOT 1.6.0.1
<config>
<modules>
<Mage_Usa>
<version>1.6.0.3</version>
</Mage_Usa>
</modules>
So it would be very helpful to me if someone could explain which patches are required for v. 1.8.1.0
Thanks!