Skip to content

Instantly share code, notes, and snippets.

@dhavalv
Last active May 5, 2016 05:18
Show Gist options
  • Save dhavalv/d1b4fac0b1a6cee93c088a918d3ce3de to your computer and use it in GitHub Desktop.
Save dhavalv/d1b4fac0b1a6cee93c088a918d3ce3de to your computer and use it in GitHub Desktop.
Configure PhpMyadmin with username and password into xampp [Ubuntu 12.04]

PHP Configuration mysql username and password

Where you want to change your configuration?

  • Go to /opt/lampp/phpmyadmin
  • find config.inc.php from /opt/lampp/phpmyadmin
  • Find code from config.inc.php
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'config';

After change code

/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'cookie';

Now you can access from PhpMyadmin with username and password 👍 🤘

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment