How can you change the password for the root user in phpMyAdmin on the WAMP server? Because I have been stopped from phpMyAdmin after changing the password incorrectly.
File in my config.inc.php Phpmyadmin folder change the user name and password set for your database .
& lt ;? Php / * * This cookie-based authentication is required to encrypt passwords in * cookie * / $ cfg ['Blowfish_secret'] = 'XMP'; / * You should change it for a more secure cookie at! * / / * * Server configuration * / $ i = 0; / * * First server * / $ i ++; / * Authentication type and info * / $ cfg ['server'] [$ i] ['auth_type'] = 'config'; $ Cfg ['server'] [$ i] ['user'] = 'enter_username_here'; $ Cfg ['server'] [$ i] ['password'] = 'enter_password_here'; $ Cfg ['server'] [$ i] ['AllowNoPasswordRoot'] = true; / * User / $ cfg for advanced features ['server'] [$ i] ['controluser'] = 'pma'; $ Cfg ['server'] [$ i] ['controlpass'] = ''; / * Advanced phpMyAdmin features * / $ cfg ['server'] [$ i] ['pmadb'] = 'phpmyadmin'; $ Cfg ['server'] [$ i] ['bookmarkmobile'] = 'pma_bookmark'; $ Cfg ['server'] [$ i] ['relationship'] = 'pma_relation'; $ Cfg ['server'] [$ i] ['table_info'] = 'pma_table_info'; $ Cfg ['server'] [$ i] ['table_coords'] = 'pma_table_coords'; $ Cfg ['server'] [$ i] ['pdf_pages'] = 'pma_pdf_pages'; $ Cfg ['server'] [$ i] ['column_info'] = 'pma_column_info'; $ Cfg ['server'] [$ i] ['history'] = 'pma_history'; $ Cfg ['server'] [$ i] ['designer_coords'] = 'pma_designer_coords'; / * * End of server configuration * /? & Gt;
Comments
Post a Comment