使用GAE部署Wordpress的麻烦 - 本地运行正常

时间:2014-07-21 05:55:48

标签: php mysql wordpress google-app-engine google-cloud-sql

我正确设置了Cloud SQL实例,wordpress在本地正常运行。 当我尝试运行以下命令时,INSTANCE_IP是我的Cloud SQL实例的IP地址,我的语法出错:

{PATH_TO_MYSQL_BIN}/mysql --host=INSTANCE_IP --user=root --password
create database wordpress_db;
exit;

编辑,错误讯息:

{PATH_TO_MYSQL_BIN}/mysql --host=xxx.19x.2xx.xx --user=root --password       -> create database wordpress_db;                                            ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '{PATH_TO_MYSQL_BIN}/mysql --host=173.194.243.33 --user=root --password create da' at line 1

如果有人能告诉我我的语法有什么问题会很棒,谢谢你提前。 以下是我认为相关的wp-config.php:

// Required for batcache use
    define('WP_CACHE', true);

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

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

    if (isset($_SERVER['SERVER_SOFTWARE']) && strpos($_SERVER['SERVER_SOFTWARE'],'Google App Engine') !== false) {
        /** Live environment Cloud SQL login and SITE_URL info */
        define('DB_HOST', ':/cloudsql/your-project-id:wordpress');
        define('DB_USER', 'root');
        define('DB_PASSWORD', '');
    } else {
        /** Local environment MySQL login info */
        define('DB_HOST', '127.0.0.1');
        define('DB_USER', 'root');
        define('DB_PASSWORD', 'password');
    }

    // Determine HTTP or HTTPS, then set WP_SITEURL and WP_HOME
    if (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER_PORT'] == 443)
    {
        $protocol_to_use = 'https://';
    } else {
        $protocol_to_use = 'http://';
    }
    define( 'WP_SITEURL', $protocol_to_use . $_SERVER['HTTP_HOST']);
    define( 'WP_HOME', $protocol_to_use . $_SERVER['HTTP_HOST']);

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

1 个答案:

答案 0 :(得分:0)

看起来您正在关注Google云项目网站的指南。

以下是一些解决方案:

  • 首先,如果您在mysql安装期间更改了用户名或密码,请确保在config.php中更新wordpress。
  • 这就是事情 - 在MySQL中,如果您使用的是Workbench,那么您需要运行的是:

    创建数据库wordpress_db;

正如另一个脚本是你从cmd工具运行它我相信。