Can't select database - Wordpress

前端 未结 12 1015
醉话见心
醉话见心 2021-01-05 15:38

When I download a new wordpress from wordpress.org and then paste it into my www folder of WAMP, then create a new database in phpmyadmin, then go to localhost and click the

12条回答
  •  心在旅途
    2021-01-05 16:02

    my problem was that when I granted permissions to the DB user the host did not match what was in the wp_config.php

    /** MySQL hostname */
    define('DB_HOST', 'localhost:3306');
    

    I was granting rights with

    GRANT ALL ON databaseName.* TO 'UserName'@'127.0.0.1';
    

    This gave me access when I was connected to the local host through ssh but It did not match wp_config.php. so I had to Grant like this then it all worked.

    GRANT ALL ON databaseName.* TO 'UserName'@'localhost';
    

提交回复
热议问题