MySQL : Drop Database Statements are Disabled PHPMyAdmin
July 09 2014
Sometimes you get an error "drop database statements are disabled" on PHPMyAdmin tool,
You do not have permission for changes in PHPMyAdmin tool, to fix this issue just update a line in config.default.php file,
Open config.inc.php file and update below line
# vi /opt/lampp/phpmyadmin/libraries/config.default.php
$cfg['AllowUserDropDatabase'] = false;
Change to "true"
$cfg['AllowUserDropDatabase'] = true;
Finally, restart XAMPP services,
# /opt/lampp/lampp restart
Comments (0)