JUN 17 2020

upgrade-all: Package community/Lib_Varien 1.9.4.5 depends on PHP extensions: Array

The following error is printed on Magento upgrade via Connect Manager or ./mage CLI tool: upgrade-all: Package community/Lib_Varien 1.9.4.5 depends on PHP extensions: Array Cause Most likely, mcrypt extension is missing in your PHP stack. You can get list of all installed PHP extensions on your server with php -m CLI command or get_loaded_extensions() function: The list of all dependencies for Lib_Varien is defined in package.xml file of this package: Solution You can find which… Read the rest
MAY 03 2020

PHP Fatal error: Uncaught Error: [] operator not supported for strings in app/code/core/Mage/Usa/sql/usa_setup/upgrade-1.6.0.1-1.6.0.2.php:93

On Magento 1.x upgrade the following error message is thrown: PHP Fatal error: Uncaught Error: [] operator not supported for strings in app/code/core/Mage/Usa/sql/usa_setup/upgrade-1.6.0.1-1.6.0.2.php:93 Stack trace: #0 app/code/core/Mage/Core/Model/Resource/Setup.php(624): include() #1 app/code/core/Mage/Core/Model/Resource/Setup.php(437): Mage_Core_Model_Resource_Setup->_modifyResourceDb(‘upgrade’, ‘1.6.0.1’, ‘1.6.0.3’) #2 app/code/core/Mage/Core/Model/Resource/Setup.php(320): Mage_Core_Model_Resource_Setup->_upgradeResourceDb(‘1.6.0.1′, ‘1.6.0.3’) #3 app/code/core/Mage/Core/Model/Resource/Setup.php(235): Mage_Core_Model_Resource_Setup->applyUpdates() #4 app/code/core/Mage/Core/Model/App.php(428): Mage_Core_Model_Resource_Setup::applyAllUpdates() #5 app/code/core/Mage/Core/Model/App.php(354): Mage_Core_Model_App->_initModules() #6 app/Mage.php(686): Mage_Core_Model_App->run(Array) #7 index.php(83): Mage::run(”, ‘store’) #8 {main} thrown in app/code/core/Mage/Usa/sql/usa_setup/upgrade-1.6.0.1-1.6.0.2.php on line 93 Cause PHP version 7.1 or newer is used for Magento upgrade, old Magento files… Read the rest
SEP 09 2021

Known issues after Magento 1.x patch installation or upgrades

Issues that can arise after any patch/update Could not determine temp directory, please specify a cache_dir manually Changes not applied Unknown SSL protocol error in connection to connect20.magentocommerce.com:443 upgrade-all: Package community/Lib_Varien 1.9.4.5 depends on PHP extensions: Array Fatal PHP error is triggered on attempt to place order or send order confirmation email after upgrade to PHP 7.2 User Notice: ‘hashed_directory_umask’ is deprecated -> please use ‘hashed_directory_perm’ instead in lib/Zend/Cache/Backend/File.php on line 143 Middle Name on… Read the rest
MAY 28 2019

upgrade-all: Package community/Lib_IDNA2 1.9.4.0 conflicts with: community/Mage_Core_Modules

During Magento upgrade via Magento Connect Manager or from ./mage upgrade-all CLI command there is the following or similar message reported in console: upgrade-all: Package community/Lib_IDNA2 1.9.4.0 conflicts with: community/Mage_Core_Modules Cause Most likely cause of this dependency issue is the following: upgrade-all: Failed to delete files: ./pkginfo/Mage_All_Latest.txt Check permissions The actual error message is just masked in long output from ./mage upgrade-all Solution The solution is to locate actual error message and correct it, i.e…. Read the rest
MAY 28 2019

package community/lib_linlibertinefont 2.8.14.17 conflicts with: community/mage_core_adminhtml 1.9.3.10

During Magento upgrade via Magento Connect Manager or from ./mage upgrade-all CLI command there is the following or similar message reported in console: package community/lib_linlibertinefont 2.8.14.17 conflicts with: community/mage_core_adminhtml 1.9.3.10 Cause Most likely cause of this dependency issue is the following: upgrade-all: Failed to delete files: ./pkginfo/Mage_All_Latest.txt Check permissions The actual error message is just masked in long output from ./mage upgrade-all Solution The solution is to locate actual error message and correct it, i.e…. Read the rest
MAY 28 2019

Magento :: upgrade-all: Failed to delete files: ./pkginfo/Mage_All_Latest.txt Check permissions

During Magento upgrade via Magento Connect Manager or from ./mage upgrade-all CLI command there is the following or similar message reported in console: Magento upgrade-all: Failed to delete files: ./pkginfo/Mage_All_Latest.txt Check permissions Full error message may look like the following: Cause Most likely, instead of file pkginfo/Mage_All_Latest.txt there is such directory, so Magento can not delete it with rm or unlink call. You can check it by navigating into pkginfo/ folder in your filemanager or… Read the rest
MAY 28 2019

Magento: ‘undefined’ pop-up alert on Place order at checkout after upgrade

‘undefined’ alert pop-up is shown after click on Place Order button at Magento checkout page after Magento upgrade: Cause Most likely cause is missing form_key attribute in the order form. Solution Check app/design/frontend/yourpackage/yourtheme/template/checkout/onepage/review.phtml and app/design/frontend/yourpackage/yourtheme/template/checkout/onepage/review/info.phtml files and replace the following code: with Do not forget to Flush Magento cache after the changes. If the issue persist, or form_keys are in place already, to troubleshoot the problem further edit skin/design/frontend/package/theme/js/opcheckout.js in your theme, search for alert(msg);… Read the rest