useranon
useranon

Reputation: 29514

Retrieving databases from phpmyadmin

I was working on cakephp and used phpmyadmin for my cakephp project. I have moved to another machine and I forget to take a dump of my sql file. But took the whole phpmyadmin folder. Is it possible to make it work to get back all my databases?

I am not able to login with that phpmyadmin and in my new machine I have my own phpmyadmin.

Please give me some suggestions.

EDIT

WIll it be possible to get back the databases from my cakephp project .

Upvotes: 0

Views: 302

Answers (2)

John Nye
John Nye

Reputation: 163

phpMyAdmin is only an interface for the MySQL server and as such does not store the database within it's folder structure.

To recover the database your best bet would be to try and get a backup of the old machine and extract the database from the backup.

Upvotes: 1

Nanne
Nanne

Reputation: 64399

phpmyadmin just contacts your database. No information (except for the ip-adress (servername)) is present in your directory copy.

You can't get your databases back from the phpmyadmin-directory copy.

Upvotes: 0

Related Questions