Skip to content

Instantly share code, notes, and snippets.

@alseambusher
Last active December 10, 2015 08:38
Show Gist options
  • Save alseambusher/4408963 to your computer and use it in GitHub Desktop.
Save alseambusher/4408963 to your computer and use it in GitHub Desktop.
phpMyAdmin Config
<?
/* FIND THESE LINES AND CHANGE THEM IN YOUR CONFIG FILE
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
/* Server parameters */
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
/* Select mysql if your server does not have mysqli */
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = false;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment