Tag Archives: EasyPHP

EasyPHP – Import DB error

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

Advertisement