Showing 5 Result(s)

Transfer Magento from one server to another

If you’re developing your store on a staging server and need to move to a different production environment or you’re simply changing hosting providers, here’s a quick step by step tutorial that will help: Step 1 – Create a database First, you need to create a new MySQL database for the new server location. Log …

Reset Magento admin password using MySQL

Here’s an easy way to reset an admin user password in Magento with the user of MySQL: – log into PHPMyadmin and click on the DB used by your Magento installation – find the admin_user table – change the email associated to your admin user to one that you can access – go to Magento …

Backup/Restore Magento SQL database using SSH

This tutorial explains how to backup and restore a database using secure shell (SSH) as opposed to Cpanel or PHPMyadmin. SSH (Secure Shell) can be used in Windows via 3rd party apps like Putty or in OSX via native Terminal App. To backup your database through SSH (create SQL dump): mysqldump –opt -u user -p dbname > …