admin管理员组文章数量:1336189
Im beginner for the word press development, Im try to install my local host to word press but i had following problem, can you please help me to fix this
My WP-CONFIG
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('lanka', 'database_name_here');
/** MySQL database username */
define('root', 'username_here');
/** MySQL database password */
define('', 'password_here');
/** MySQL hostname */
define('localhost', 'localhost');
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');
Error establishing a database connection
This either means that the username and password information in your wp-config.php file is incorrect or we can’t contact the database server at DB_HOST. This could mean your host’s database server is down.
Are you sure you have the correct username and password? Are you sure that you have typed the correct hostname? Are you sure that the database server is running? If you’re unsure what these terms mean you should probably contact your host. If you still need help you can always visit the WordPress Support Forums.
Im beginner for the word press development, Im try to install my local host to word press but i had following problem, can you please help me to fix this
My WP-CONFIG
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('lanka', 'database_name_here');
/** MySQL database username */
define('root', 'username_here');
/** MySQL database password */
define('', 'password_here');
/** MySQL hostname */
define('localhost', 'localhost');
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');
Error establishing a database connection
This either means that the username and password information in your wp-config.php file is incorrect or we can’t contact the database server at DB_HOST. This could mean your host’s database server is down.
Are you sure you have the correct username and password? Are you sure that you have typed the correct hostname? Are you sure that the database server is running? If you’re unsure what these terms mean you should probably contact your host. If you still need help you can always visit the WordPress Support Forums.
Share Improve this question edited Jul 7, 2016 at 7:36 fuxia♦ 107k38 gold badges255 silver badges459 bronze badges asked Jul 7, 2016 at 7:30 CodeoneCodeone 1031 gold badge1 silver badge4 bronze badges 1 |1 Answer
Reset to default 4WP-CONFIG file should be like below-
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'database_name_here');
/** MySQL database username */
define('DB_USER', 'username_here');
/** MySQL database password */
define('DB_PASSWORD', 'password_here');
/** MySQL hostname */
define('DB_HOST', 'localhost');
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');
You have filled values in wrong side.
本文标签: Error establishing a database connection problem in xampp saver
版权声明:本文标题:Error establishing a database connection problem in xampp saver 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742401019a2467884.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
define()
is the constant, not the value, likedefine('DB_NAME', 'lanka');
. – bueltge Commented Jul 7, 2016 at 7:40