Magento : PHP Extensions “0” must be loaded
app/code/core/Mage/Install/etc/config.xml <extensions> <pdo_mysql/> </extensions> Replace with <extensions> <pdo_mysql>1</pdo_mysql> </extensions> hope it will work.
Continue Readingapp/code/core/Mage/Install/etc/config.xml <extensions> <pdo_mysql/> </extensions> Replace with <extensions> <pdo_mysql>1</pdo_mysql> </extensions> hope it will work.
Continue Readingapp/code/core/mage/install/model/installer/Db.php if (!$resource->supportEngine()) { Mage::throwException( Mage::helper(‘install’)->__(‘Database server does not support the InnoDB storage engine.’) ); } just comment above code. hope it will work.
Continue ReadingPlease go to Mage Library and Edit links file with below code. mage/checkout/block/links.php $count=Mage::helper(‘checkout/cart’)->getItemsCount();` if($count>=1) { $text=$this->__(‘Mycart(%s items)’,$count); }else{ $text=$this->__(‘Mycart’); } Hope it will work.
Continue ReadingIt is very simple UPDATE admin_user SET password=CONCAT(MD5(‘ShAfInAnWaR’), ‘:sG’) WHERE username=’Adminusername’; Note: You have to change newpass in the MD5(‘ShAfInAnWaR’) with your new password, and change *Adminusername* to your Magento admin username.
Continue ReadingWhat is the Magento Community Edition? Magento was born as open source software. The reason this edition is called “Community” has its basis in these origins. This means that you, and anyone around the world, are free to download Magento, and make any modifications you may need to suit your requirements. Magento has had tremendous growth and with this growth …
Continue Reading2020Media.com 5quidhost Ltd aegis Aspiration Hosting Brontobytes Citrus Digital Dx3webs.com Enciva Solutions Ltd eUKhost Ltd Hand Coded Hands-on Web Hosting UK HelpingHandHost UK Hex UK Infrenion Networks Jigowatt Ltd MEMSET NetPowered UK Nexcess No Wires LTD NuBlue Orchard Hosting pl13.net Hosting Pipe Ten Hosting RSHosting UK Simple Ecommerce Simple Servers Sonassi Hosting The New Media Company tsohost Turnkey Ecommerce Solutions …
Continue ReadingA2 Hosting Arvixe Aspiration Hosting BitLab Hosting BODHost.com BigNM Web Hosting BuyHTTP CHK Hosting CiviHosting Coeus Blue Crucial Web Hosting, Ltd CWIHosting eLief Epsilon9 Enciva LLC EWD Hosting Express VM FastDomain Frontier Solutions GreenGeeks Hands-on Web Hosting US HardHat Hosting US HelpingHandHost US HostDrive Hosted Cubes HostKnox HostMagix.com Host Monster iHubNet Hosting Solutions Infinet & Evergraph, Inc Infrenion Networks Little …
Continue ReadingThis is very simple work, just add below code and set your SKU value to get Product. <?php $sku = ‘your-sku-value’; $product = Mage::getModel(‘catalog/product’)->load($sku, ‘sku’); if ($product->getId()) { echo $product->getName(); } else { echo ‘Product not found with reference of SKU= ‘ . $sku; } ?> Hope it will work.
Continue ReadingThe Magento Encryption Key is generated during the Magento Installation. It is used for the encryption and the security storage of the sensitive data in the script’s database. The Magento Encryption Key is kept in the app/etc/local.xml file.The ENCRYPTION_KEY string is replaced by the actual encryption key. <crypt><key>< !CDATA-encryption-key-></key></crypt> You need it if want to move your store data to …
Continue ReadingA table in MySQL has a limitation of 65535 bytes of overall row length. It may severely limit the number of columns in a table when it has varchar/char columns. In Magento starting from 1.3 the products catalog in the “flat” mode suffers from this limitation depending on the number and combination of the product attributes that participate in the …
Continue Reading