Magento reset Admin Password

It 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 Reading

Magento Enterprise v. Community

What 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 Reading

UK base magento Commerce hosting.

2020Media.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 Reading

USA base Magento E-commerce Hosting

A2 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 Reading

How to Load a Product by SKU in Magento?

This 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 Reading

What is Magento Encryption Key?

The 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 Reading

Product flat data reindexing problem in Magento.

A 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