質問をすることでしか得られない、回答やアドバイスがある。

15分調べてもわからないことは、質問しよう!

新規登録して質問してみよう
ただいま回答率
85.50%
MySQL

MySQL(マイエスキューエル)は、TCX DataKonsultAB社などが開発するRDBMS(リレーショナルデータベースの管理システム)です。世界で最も人気の高いシステムで、オープンソースで開発されています。MySQLデータベースサーバは、高速性と信頼性があり、Linux、UNIX、Windowsなどの複数のプラットフォームで動作することができます。

Q&A

0回答

1380閲覧

移転元のサーバーよりエクスポートしたsqlファイルを指定して、データベースにインポートしたいです。

ssssssss

総合スコア10

MySQL

MySQL(マイエスキューエル)は、TCX DataKonsultAB社などが開発するRDBMS(リレーショナルデータベースの管理システム)です。世界で最も人気の高いシステムで、オープンソースで開発されています。MySQLデータベースサーバは、高速性と信頼性があり、Linux、UNIX、Windowsなどの複数のプラットフォームで動作することができます。

0グッド

0クリップ

投稿2018/09/17 03:42

前提・実現したいこと

移転元のサーバーよりエクスポートしたsqlファイルを指定して、データベースにインポートしたいです。

■■な機能を実装中に以下のエラーメッセージが発生しました。

発生している問題・エラーメッセージ

#1064 - 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 '<?php /** * The base configurations of the WordPress. * * This file has the f' at line 1

該当のソースコード

<?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`, `sample`); /** MySQL database username */ define(`DB_USER`, `sample`); /** MySQL database password */ define(`DB_PASSWORD`, `sample`); /** MySQL hostname */ define(`DB_HOST`, `sample`); /** 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`, ``); /**#@+ * Authentication Unique Keys. * * Change these to different unique phrases! * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/ WordPress.org secret-key service} * You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again. * * @since 2.6.0 */ define(`AUTH_KEY`, ``); define(`SECURE_AUTH_KEY`, ``); define(`LOGGED_IN_KEY`, ``); define(`NONCE_KEY`, ``); /**#@-*/ /** * 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.mo to wp-content/languages and set WPLANG to `de` to enable German * language support. */ define (`WPLANG`, `ja`); /* That`s all, stop editing! Happy blogging. */ /** WordPress 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`); こちらわかる方みえましたら解説いただけますと幸いです。 知識が全然ないため、わかりやすく解説いただけると大変助かります。 よろしくお願いいたします。

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

Takumiboo

2018/09/17 03:52

提示されているPHPのソースはWordPressの設定ファイルであるwp-config.phpだと思われますが、どこに「移転元のサーバーよりエクスポートしたsqlファイルを指定して、データベースにインポート」する動作が記述されているのでしょうか。何を、どういった手順で試そうとされたのか、改めて整理してください。
退会済みユーザー

退会済みユーザー

2018/09/17 04:08 編集

cat sqlfile > mysql -uusername -ppassword dbname (なんかまちがえてるかもな)
m.ts10806

2018/09/17 04:07

コードやエラーメッセージはマークダウンのcode機能を使って見やすくしてください。そうなってないだけで読む気をなくす回答者も実は少なくありません。
guest

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

まだ回答がついていません

会員登録して回答してみよう

アカウントをお持ちの方は

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.50%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問