Monday, July 22, 2013

Reset you magento admin password

To reset your Magento Admin password,

Run this query in your mysql interface.

UPDATE admin_user SET password=CONCAT(MD5(‘yournewpassword‘), ‘:yoursalt’) WHERE
username=’youradminusername‘;
And you are Done!!

Change your magento host address

Many a times we need to update our website host address to be changed.

Its simple!!!

Just run these two query in your mysql admin(phpmyadmin Or smthing)

select * from core_config_data where path like '%base%url%'; 

this will display the current address of your site.

now update it with ur desired address with these query

update core_config_data set value = 'http://myhostname/js/' where path = 'web/unsecure/base_url';
update core_config_data set value = 'https://myhostname/js/' where path = 'web/secure/base_url';

Clear the cache from backend. And you are done!!!

Say Hello To Biggest ECommerce Open source Platform - Magento!

Magento:
A feature-rich eCommerce platform built on open-source technology that provides online merchants with unprecedented flexibility and control over the look, content and functionality of their eCommerce store.
Designed to be completely scalable with powerful SEO and catalog-management tools Magento offers companies the ultimate eCommerce solution.

You can see the demo here:
http://www.magentocommerce.com/demo

Who is behind Magento??
Varien is the company behind Magento, responsible for the development and on-going maintenance of the platform.