数据库连接测试脚本可以工作,但不能运行wp-config.php

时间:2014-02-10 15:37:28

标签: mysql wordpress database-connection

在尝试获取我下载的wordpress网站本地运行时,我遇到了无聊的“建立数据库连接错误”错误。我已经下载并导入了数据库,让它在本地运行。我甚至有一个测试脚本(db-check.php)来检查:

   <?
    $connect=mysql_connect('localhost', 'admincheck', 'ch3ck') or die("Unable to Connect");
    mysql_select_db("checkers_db") or die("Could not open the db");
    $showtablequery="SHOW TABLES FROM checkers_db";
    $query_result=mysql_query($showtablequery);
    while($showtablerow = mysql_fetch_array($query_result))
    {
    echo $showtablerow[0]." ";
    }
    ?>

它列出了所有表格,但由于某种原因,wp-config.php只是让我模糊: “建立数据库连接时出错”,没有任何关于发生了什么的线索。

                <?php
                /**
                 * The base configurations of the WordPress.
                 *
                 * This file has the following configurations: MySQL settings, Table Prefix,
                 * Secret Keys, WordPress Language, and ABSPATH. You can find more information
                 * by visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing
                 * wp-config.php} Codex page. You can get the MySQL settings from your web host.
                 *
                 * This file is used by the wp-config.php creation script during the
                 * installation. You don't have to use the web site, you can just copy this file
                 * to "wp-config.php" and fill in the values.
                 *
                 * @package WordPress
                 */


                // ** MySQL settings - You can get this info from your web host ** //
                /** The name of the database for WordPress */
                define('DB_NAME', 'checkers_db');


                /** MySQL database username */
                define('DB_USER', 'admincheck');

                /** MySQL database password */
                define('DB_PASSWORD', 'ch3ck');

                /** 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', '');




                /**#@-*/

                /**
                 * WordPress Database Table prefix.
                 *
                 * You can have multiple installations in one database if you give each a unique
                 * prefix. Only numbers, letters, and underscores please!
                 */
                $table_prefix  = 'wp_';

                /**
                 * WordPress Localized Language, defaults to English.
                 *
                 * Change this to localize WordPress. A corresponding MO file for the chosen
                 * language must be installed to wp-content/languages. For example, install
                 * de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
                 * language support.
                 */
                define('WPLANG', '');

                /**
                 * For developers: WordPress debugging mode.
                 *
                 * Change this to true to enable the display of notices during development.
                 * It is strongly recommended that plugin and theme developers use WP_DEBUG
                 * in their development environments.
                 */
                /** debuging mode*/
                define( 'WP_DEBUG', true );
                define( 'SCRIPT_DEBUG', true );

                /* That's all, stop editing! Happy blogging. */

                /** Absolute path to the WordPress directory. */
                if ( !defined('ABSPATH') )
                    define('ABSPATH', dirname(__FILE__) . '/');

                /** Sets up WordPress vars and included files. */
                require_once(ABSPATH . 'wp-settings.php');

这里有什么东西突然出现错误吗?我遗失或添加不必要的东西?

2 个答案:

答案 0 :(得分:0)

您是否还修改了wp_options数据库“siteurl”,“home”中的参数以匹配您的localhost环境?

答案 1 :(得分:0)

我在thread

上找到了答案

所以我检查了添加DROP TABLE / VIEW / PROCEDURE / FUNCTION / EVENT语句选项并重新导入数据库。