If you meet the following error when importing DB thru the EasyPHP phpMyAdmin.
- #1100 – Table ‘pma_column_info’ was not locked with LOCK TABLES
Open the phpMyAdmin configuration file config.inc.php and the uncomment the following 2 lines.
$cfg['Servers'][$i]['controluser'] = 'root'; $cfg['Servers'][$i]['controlpass'] = 'password';
Done =)
Reference: error while importing DB in mysql
This is what worked for me:
I had to leave erase ‘password’ on the second line
LikeLike
i guess becoz your dun have a root password so you need to set an empty string there. anyway, good to know that it is working and thx for your comment. =)
LikeLike