The NextGen Gallery plugin prevents the Adminer plugin from working correctly. The symptoms are that the Adminer pages display broken visually and none of the Query links work – Select Data, etc. The solution is below:
Add this code below in your wp-config.php file directly before this line of commented out text in your wp-config.php file: /* That’s all, stop editing! Happy blogging. */
/** NextGen Gallery Fix **/
if ( preg_match( '/adminer\/inc\/adminer\/loader\.php/', $_SERVER['REQUEST_URI'], $matches ) ) {
if ( ! defined( 'NGG_DISABLE_RESOURCE_MANAGER' ) ) {
define( 'NGG_DISABLE_RESOURCE_MANAGER', true );
}
}