Difference between revisions of "PHPMYADMIN"
Jump to navigation
Jump to search
Line 6: | Line 6: | ||
'''/* User for advanced features */''' | '''/* User for advanced features */''' | ||
'''/etc/phpmyadmin/config.inc.php''' | '''/etc/phpmyadmin/config.inc.php''' | ||
$cfg['Servers'][$i]['controluser'] = 'username'; | $cfg['Servers'][$i]['controluser'] = 'username'; | ||
$cfg['Servers'][$i]['controlpass'] = 'password'; | $cfg['Servers'][$i]['controlpass'] = 'password'; |
Revision as of 20:49, 5 May 2022
Fix error mysqli_real_connect(): (HY000/1045)
CREATE USER 'username'@'%' IDENTIFIED BY 'password_here';
GRANT ALL PRIVILEGES ON *.* TO 'pmauser'@'%' WITH GRANT OPTION;
/* User for advanced features */
/etc/phpmyadmin/config.inc.php
$cfg['Servers'][$i]['controluser'] = 'username'; $cfg['Servers'][$i]['controlpass'] = 'password';