“Some errors have been detected on the server !!
Please lock at this bottom on this window.”

When you find following

Click to enlarge

This problem can be fixed.

Edit line number 613 in /usr/share/phpmyadmin/libraries/sql.lib.php . (Ver. 4.6.6-5)

/**
 * Function to check whether to remember the sorting order or not
 *
 * @param array $analyzed_sql_results the analyzed query and other variables set
 *                                    after analyzing the query
 *
 * @return boolean
 */
function PMA_isRememberSortingOrder($analyzed_sql_results)
{
    return $GLOBALS['cfg']['RememberSorting']
        && ! ($analyzed_sql_results['is_count']
            || $analyzed_sql_results['is_export']
            || $analyzed_sql_results['is_func']
            || $analyzed_sql_results['is_analyse'])
        && $analyzed_sql_results['select_from']
        && ((empty($analyzed_sql_results['select_expr']))
            // || (count($analyzed_sql_results['select_expr'] == 1) // comment out
            || ((count($analyzed_sql_results['select_expr']) == 1) // insert this line.
                && ($analyzed_sql_results['select_expr'][0] == '*')))
        && count($analyzed_sql_results['select_tables']) == 1;
}