Trusted WordPress tutorials, when you need them most.
Beginner’s Guide to WordPress
WPBカップ
25 Million+
Websites using our plugins
16+
Years of WordPress experience
3000+
WordPress tutorials
by experts

WordPressでwp-config.phpファイルを編集する方法(ステップバイステップ)

WordPressを使い始めると、チュートリアルで「wp-config.php」ファイルの編集を求められることがよくあります。このファイルはWordPressの重要な設定をコントロールし、サイトを管理するための強力なツールとなるため重要です。

長年にわたり、私たちは数え切れないほどのWordPressのセットアップに携わってきました。この経験から、wp-config.phpファイルが、特にセキュリティ、パフォーマンス、トラブルシューティングにおいて、いかに重要であるかがわかりました。

この投稿では、WordPressのwp-config.phpファイルを編集する方法をご紹介します。また、私たちが長年かけて開発したベストプラクティスもご紹介します。

Editing the wp-config.php file in WordPress

以下は、このガイドで取り上げるトピックのリストである:

wp-config.phpファイルとは何ですか?

その名が示すように、これはすべてのインストール型のWordPressサイトの一部である設定ファイルです。

WordPressの他のコアファイルとは異なり、wp-config.phpファイルはWordPressにビルトインされていません。

代わりに、インストーラのインストール中にサイト用に明示的にジェネレータが生成されます。

WordPress database settings during installation

WordPressは、wp-config.phpファイルにデータベース情報を保存します。この情報がないと、WordPressサイトは機能せず、「error establishing database connection(データベース接続の確立エラー)」というエラーが表示されます。

wp-config.phpファイルには、データベース情報以外にもいくつかのハイレベルな設定が含まれています。それらについてはこの投稿の後半で説明します。

通常のWordPressユーザーは、wp-config.phpファイルを頻繁に編集する必要はないかもしれない。しかし、その方法を理解することで、WordPressサイトの管理に習熟することができます。

このファイルには多くの機密情報が含まれているため、他に選択の余地がない場合以外はいじらないことをお勧めする。

しかし、この投稿を読んでいる以上、wp-config.phpファイルを編集する必要がある。以下は、混乱させることなくそれを行うための手順です。

動画チュートリアル

Subscribe to WPBeginner

動画が気に入らなかったり、もっと説明が必要な場合は、このまま読み進めてください。

はじめに

wp-config.phpファイルはWordPressサイトにとって非常に重要で、ちょっとしたミスでサイトにアクセスできなくなることもあります。

そのため、WordPressサイトに重要な変更を加える前に、必ずWordPressの完全なバックアップを作成する必要があります。

これにより、WordPressのデータと設定が確実にバックアップされ、何か問題が発生した場合でも復元することができます。

Duplicatorの使用をお勧めします。これは最高のWordPressバックアッププラグインで、サイトを簡単にバックアップすることができます。

Is Duplicator the right backup and migration plugin for you?

注: Duplicatorには無料版もあります。しかし、より多くの機能をアンロックするには、有料プランにアップグレードすることをお勧めします。

wp-config.phpファイルへのアクセスと編集

wp-config.phpファイルはWordPressホスティングサービスサーバーにあります。

FTPクライアントまたはホスティングアカウントコントロールパネルのファイルマネージャーアプリを使用してサイトに接続することでアクセスできます。

FTPクライアントを使用すると、サーバーとコンピューター間でファイルを転送することができます。WindowsユーザーはFileZilla、WinSCP、SmartFTPをインストールでき、MacユーザーはFileZilla、Transmit、CyberDuckから選択できます。

まず、FTPクライアントを使用してサイトに接続する必要があります。FTPログイン情報が必要で、ホスティングサービスから入手できます。FTPログイン情報がわからない場合は、ホスティングサービスのサポートチームにお問い合わせください。

wp-config.phpファイルは通常、wp-includes、wp-content、wp-adminなどのフォルダと一緒にサイトのルートフォルダにあります。

Download wp-config.php file to your computer for editing

ファイルを右クリックし、メニューから「ダウンロード」を選択するだけです。

FTPクライアントがwp-config.phpファイルをコンピューターにダウンロードします。メモ帳やテキストエディットのようなプレーンテキストエディターアプリで開いて編集することができます。

編集が終わったら、FTPを使ってサイトにアップロードするだけです。

すると、ファイルがすでに存在しているというメッセージが表示され、たくさんのオプションが設定されます。上書き」を選択し、「OK」をクリックする。

Overwrite old file

wp-config.phpファイルを理解する

始める前に、初期設定のwp-config.phpファイルの全コードを調べてみましょう。このファイルのサンプルはこちらでも見ることができます。

<?php
/**
 * The base configuration for WordPress
 *
 * The wp-config.php creation script uses this file during the installation.
 * You don't have to use the website, you can copy this file to "wp-config.php"
 * and fill in the values.
 *
 * This file contains the following configurations:
 *
 * * Database settings
 * * Secret keys
 * * Database table prefix
 * * ABSPATH
 *
 * @link https://developer.wordpress.org/advanced-administration/wordpress/wp-config/
 *
 * @package WordPress
 */

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

/** Database username */
define( 'DB_USER', 'username_here' );

/** Database password */
define( 'DB_PASSWORD', 'password_here' );

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

/**#@+
 * Authentication unique keys and salts.
 *
 * Change these to different unique phrases! You can generate these using
 * the {@link https://api.wordpress.org/secret-key/1.1/salt/ 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',         'put your unique phrase here' );
define( 'SECURE_AUTH_KEY',  'put your unique phrase here' );
define( 'LOGGED_IN_KEY',    'put your unique phrase here' );
define( 'NONCE_KEY',        'put your unique phrase here' );
define( 'AUTH_SALT',        'put your unique phrase here' );
define( 'SECURE_AUTH_SALT', 'put your unique phrase here' );
define( 'LOGGED_IN_SALT',   'put your unique phrase here' );
define( 'NONCE_SALT',       'put your unique phrase here' );

/**#@-*/

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

/**
 * 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.
 *
 * For information on other constants that can be used for debugging,
 * visit the documentation.
 *
 * @link https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/
 */
define( 'WP_DEBUG', false );

/* Add any custom values between this line and the "stop editing" line. */



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

/** Absolute path to the WordPress directory. */
if ( ! defined( 'ABSPATH' ) ) {
	define( 'ABSPATH', __DIR__ . '/' );
}

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

wp-config.phpファイルの各セクションは、ファイル自体にしっかりとドキュメンテーションされています。ここでのほとんどすべての設定は、PHP定数を使って定義されています。

define( 'constant_name' , 'value');

wp-config.phpファイルの各セクションを詳しく見てみよう。

wp-config.phpファイルのMySQL設定

WordPressのデータベース接続設定は、wp-config.phpファイルの「データベース設定」セクションに表示されます。

このセクションを完了するには、MySQLホスティングサービス、データベース名、データベースユーザ名、パスワードが必要です。

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

/** Database username */
define( 'DB_USER', 'username_here' );

/** Database password */
define( 'DB_PASSWORD', 'password_here' );

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

以下は、このセクションの定数とその役割の一覧である。

Constant NameDescription
DB_NAMEThe name of the database for WordPress.
DB_USERThe username used to access the WordPress database.
DB_PASSWORDThe password for the database username.
DB_HOSTThe hostname of the database server (usually ‘localhost’).
DB_CHARSETThe hostname of the database server (usually ‘localhost’).
DB_COLLATEThe collation type for the database (usually left blank).

これらの値を入力するには、データベース情報が必要です。この情報は、ウェブホスティングアカウントのコントロールパネルで見つけることができます。

ホスティングサービスによっては、コントロールパネルが以下のスクリーンショットと若干異なる場合があります。その場合、ホスティングサービスの「データベース」セクションを探す必要があります。

例えば、Bluehostを使用している場合、まずホスティングアカウントにログインします。次に、サイトの下にある「設定」をクリックします。

Bluehost site settings

あなたのサイトのさまざまな設定が表示されます。

詳細」タブに切り替え、「cPanel」セクションの横にある「管理」をクリックします。

Bluehost advanced cPanel

新しいブラウザータブでcPanelインターフェースが開きます。

ここから、「データベース」セクションまでスクロールし、「MySQLデータベース」をクリックする必要がある。

MySQL database in cPanel

MySQL Databasesのページでは、現在のデータベース、ユーザー名、パスワードのリストを見ることができます。

WordPressデータベースまたはMySQLのユーザー名とパスワードが見つからない場合は、ホスティングサービスに連絡する必要があります。

wp-config.phpファイルのDB_CHARSETとDB_COLLATEとは何ですか?

DB_CHARSET’設定は、WordPressデータベーステーブルの文字セットを指定します。初期設定はutf8で、ほとんどの言語をサポートし、幅広い互換性を保証します。

DB_COLLATE’設定は、データベースがどのように文字をソートし、比較するかを定義する。

空白のままにし、MySQL が指定された文字セットの初期照合順序(utf8 の場合は utf8_general_ci)を使用するようにすることをお勧めします。

認証 ユニーク・キーとソルト

認証キーとソルトは、wp-config.phpファイルのセキュリティ機能です。ユーザーCookieに保存された情報を強力に暗号化することで、WordPressインストーラの保護を強化します。

/**#@+
 * Authentication unique keys and salts.
 *
 * Change these to different unique phrases! You can generate these using
 * the {@link https://api.wordpress.org/secret-key/1.1/salt/ 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',         'put your unique phrase here' );
define( 'SECURE_AUTH_KEY',  'put your unique phrase here' );
define( 'LOGGED_IN_KEY',    'put your unique phrase here' );
define( 'NONCE_KEY',        'put your unique phrase here' );
define( 'AUTH_SALT',        'put your unique phrase here' );
define( 'SECURE_AUTH_SALT', 'put your unique phrase here' );
define( 'LOGGED_IN_SALT',   'put your unique phrase here' );
define( 'NONCE_SALT',       'put your unique phrase here' );

/**#@-*/

キーとソルトは全部で8種類ある。各キーとソルトのペアは、数字と特殊文字のランダムな長い文字列である。

それぞれのキーの役割は以下の通り:

Constant NameDescription
AUTH_KEYAuthenticate cookies and ensure data integrity.
SECURE_AUTH_KEYSecure the authentication cookie when using SSL.
LOGGED_IN_KEYValidate logged-in cookies.
NONCE_KEYProtect nonces (numbers used once) from being guessed.
AUTH_SALTAdds extra security to the authentication process.
SECURE_AUTH_SALTAdds extra security to the authentication process.
LOGGED_IN_SALTAdds extra security to the logged-in process.
NONCE_SALTAdds extra security to the nonce creation and verification process.

シークレットキーは、WordPress.org のシークレットキー・ジェネレータで生成できます。また、誰かが WordPress 管理エリアにアクセスしようとしていると思われる場合は、後で変更することもできます。

詳しくは、WordPressセキュリティキーのガイドをご覧ください。

WordPressデータベースのテーブル接頭辞

初期設定では、WordPressはデータベースに作成するすべてのテーブルに’wp_’接頭辞を付加します。

インストール時にWordPressデータベースのテーブル接頭辞をランダムなものに変更することをお勧めします。

これにより、ハッカーがWordPressのテーブルを推測することが難しくなり、一般的なSQLインジェクション攻撃からあなたを守ることができます。

/**
 * 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 サイトでこの値を変更することはできません。既存のWordPressサイトでこれらの設定を変更するには、WordPressデータベースの接頭辞を変更する方法の投稿の指示に従ってください。

WordPressのデバッグモード

この設定は、WordPressの開発を学んでいるユーザーや、エラーのトラブルシューティングに特に役立ちます。

WordPressの初期設定では、コード実行時にPHPが生成する通知を非表示にしています。デバッグモードを’true’に設定するだけで、これらの通知が表示されます。

これは開発者がバグを見つけるための重要な情報を提供します。また、WordPressサイトのトラブルシューティングにも役立ちます。

/**
 * 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.
 *
 * For information on other constants that can be used for debugging,
 * visit the documentation.
 *
 * @link https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/
 */
define( 'WP_DEBUG', false );

また、エラーや通知のログ記録を残すこともできる。

より詳細な手順については、WordPressでデバッグモードを有効化するチュートリアルをご覧ください。

絶対パス設定

wp-configファイルの最後の部分は、絶対パスを定義する。この命令は、WordPressにWordPressのコアファイルの場所を指示します。

この命令の後、ABSPATHはwp-settings.phpファイルをロードするために使用されます。

/** Absolute path to the WordPress directory. */
if ( ! defined( 'ABSPATH' ) ) {
	define( 'ABSPATH', __DIR__ . '/' );
}

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

これらの設定はいずれも変更することはできない。

WordPressがどのようにファイルを読み込むかを理解するには、WordPressが裏でどのように動作しているかについての解説をご覧ください。WordPressのコアソフトウェアがどのように動作するのか、ステップバイステップで説明しています。

便利なwp-config.phpのハックと設定

ここまで、wp-config.phpの初期設定について説明してきました。次に、いくつかの追加設定を調べてみましょう。

これらの設定はオプションで、必要なときに使用できます。エラーのトラブルシューティングやWordPressの一般的なエラーの解決に役立ちます。

WordPressでMySQLのポートとソケットを変更する

WordPressホスティングサービスがMySQLホスティングサービスに代替ポートを使用している場合は、DB_HOSTの値にポート番号を含めるように変更する必要があります。

:これは新規行ではなく、既存のDB_HOST値を編集する必要があります。

define( 'DB_HOST', 'localhost:5067' );

ポート番号5067を、ホスティングサービスが提供するポート番号に変更することをお忘れなく。

ホスティングサービスがMySQLにソケットとパイプを使用している場合は、次のように追加する必要があります:

define( 'DB_HOST', 'localhost:/var/run/mysqld/mysqld.sock' );

wp-config.phpファイルを使ってWordPressのURLを変更する

WordPressサイトを新しいドメイン名に移行する際、WordPressのURLを変更する必要がある場合があります。

これらのURLは、設定 ” 一般ページで変更できます。

Check your WordPress and site address from the WordPress admin

これらのURLは、wp-config.phpファイルを使用して変更することもできます。これは、エラーが多すぎてWordPressの管理エリアにアクセスできない場合に便利です。

以下の2行をwp-config.phpファイルに追加するだけです:

define('WP_HOME','http://example.com');
define('WP_SITEURL','http://example.com');

example.comをあなたのドメイン名に置き換えることをお忘れなく。

また、検索エンジンはwww.example.com、example.comを2つの異なる場所として扱うことも念頭に置いておく必要がある(www vs non-www – Which is better for SEO?を参照)。

あなたのサイトがwww接頭辞でインデックスされている場合は、それに応じてドメイン名を追加する必要があります。

wp-config.phpファイルによるアップロードディレクトリの変更

初期設定では、WordPressはすべてのメディアアップロードを/wp-content/uploads/ディレクトリに保存します。

メディアファイルを別の場所に保存したい場合は、wp-config.phpファイルに次のコードを追加してください:

define( 'UPLOADS', 'wp-content/media' );

アップロードディレクトリのパスは、WordPressで自動的に設定されるABSPATHからの相対パスであることに注意してください。ここに絶対パスを追加しても動作しません。

詳しくは、WordPressでメディアアップロードの初期設定を変更する方法の詳細ガイドをご覧ください。

WordPressの自動更新を無効化する

WordPressは初期設定で自動更新が有効になっています。これにより、WordPressサイトはマイナーアップデートが利用可能になると自動的に更新されます。

例えば、あなたのサイトがWordPress 6.6を使用していて、セキュリティアップデート6.6.1がリリースされた場合、WordPressは自動的にアップデートをインストールします。

しかし、WordPress 6.7がリリースされると、更新を開始するよう求められます。

自動更新はセキュリティ上重要であるが、多くのユーザーは、自動更新によってサイトが壊れてアクセスできなくなることを恐れている。

この個別コードをwp-config.phpファイルに追加すると、WordPressサイトの自動更新がすべて無効化されます:

define( 'WP_AUTO_UPDATE_CORE', false );

詳しくはWordPressの自動更新を無効化する方法のチュートリアルをご覧ください。

カテゴリー:WordPressで投稿のリビジョンを制限する

WordPressには自動保存とリビジョンがビルトインされています。投稿リビジョンでWordPressの変更を元に戻す方法については、チュートリアルをご覧ください。

リビジョンはほとんどのサイトでほとんど容量を消費しません。しかし、いくつかの大規模サイトでは、データベースのバックアップサイズが大幅に増加していることに気づきました。

大規模なサイトを運営している場合は、データベースに保存するリビジョン数を制限することができます。

このコードをwp-config.phpファイルに追加するだけで、投稿の保存リビジョン数を制限することができます:

define( 'WP_POST_REVISIONS', 3 );

3を保存したいリビジョン数に置き換えてください。

WordPressは古いリビジョンを自動的に破棄するようになりました。しかし、過去の投稿リビジョンはまだデータベースに保存されています。WordPressで古い投稿リビジョンを削除する方法については、チュートリアルをご覧ください。

この投稿がWordPressのwp-config.phpファイルを編集する方法と、それを使ってできるすべてのクールなことを学ぶのに役立てば幸いです。WordPress 管理ディレクトリのパスワード保護に関する投稿やWordPress 管理バーの使い方のヒントもご覧ください。

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

情報開示 私たちのコンテンツは読者支援型です。これは、あなたが私たちのリンクの一部をクリックした場合、私たちはコミッションを得ることができることを意味します。 WPBeginnerの資金源 をご覧ください。3$編集プロセスをご覧ください。

アバター

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi with over 16 years of experience in WordPress, Web Hosting, eCommerce, SEO, and Marketing. Started in 2009, WPBeginner is now the largest free WordPress resource site in the industry and is often referred to as the Wikipedia for WordPress.

究極のWordPressツールキット

ツールキットへの無料アクセス - すべてのプロフェッショナルが持つべきWordPress関連製品とリソースのコレクション!

Reader Interactions

59件のコメント返信を残す

  1. Syed Balkhi says

    Hey WPBeginner readers,
    Did you know you can win exciting prizes by commenting on WPBeginner?
    Every month, our top blog commenters will win HUGE rewards, including premium WordPress plugin licenses and cash prizes.
    You can get more details about the contest from here.
    Start sharing your thoughts below to stand a chance to win!

  2. Sean Hodge says

    I believe you should not put any custom rules below the ABSPATH / vars bit down at the bottom, but can you put stuff in any order above those lines?

    I’ve got some time on my hands, so I’ve been doing just that, moving stuff around the wp-config file, and removing all the extra fluff between comments. I now know what it all does, and have just left a simple title above each group of rules, such as

    /**
    * Authentication Unique Keys and Salts.
    */

    All the rest of the info about Salts, and debugging etc, is now gone, the stuff that usually appears in green.

    What I also did was move the $table_prefix above the Salts, right under the rest of the database info.

    I’ve done this all because when I do go in there to modify actual rules, I have to wade my way through what is now useless info, to me.

    So far, nothing has exploded, but I thought to ask anyway.

    • WPBeginner Support says

      You can change the order of the other content in that file if you wanted, we would warn to be careful when moving that you don’t remove part of the code and normally you should not need to edit your wp-config file.

      管理者

    • WPBeginner Support says

      That would require changes to your htaccess or a different file, we would recommend reaching out to your host for assistance with what you’re wanting to do.

      管理者

  3. Mister No says

    Hi there, great article. I’m having a problem with my website mobile version. When I try to open it on the mobile phone it says “This site is experiencing technical difficulties”.
    What should I do to make my site work again properly?
    Thanks in advance

  4. Paul says

    Syed, all of a sudden, I can’t upload images (message: missing a temporary folder). Tried to log into WordPress to check support blogs and my username is not recognised.

  5. Gale says

    I am a newbie at wordpress. I uploaded the files via Filezilla and got everything configured. Now how exactly do I actually access my new wp-blog site?

    Wp is in the root (public_html) of my website. There were several other file folders that came with Wp. Do I upload them into the public_html folder as well?

  6. Esther says

    Hi, I found out when I was installing WordPress, it was installed in subdirectory Wp and has a result my website can’t go live, my web host said I have to uninstall and install again and I should leave the Wp in the Installation panel blank, my problem is that I have designed the website only to go live and once I uninstall everything will be wiped off, what do I about it, Is there a way to avoid that?

  7. Mina says

    Hi,
    Thank you for the useful article.
    I’m new to this file and I have a basic question. I changed the cache plugin of my site and I need to change the line about it at the beginning of the file to override details of the previous plugin.
    Once my file is updated, can I upload it while the cache plugin is activated, and deactivate/reactivate it just after, or do I have to deactivate the plugin before uploading the new wp-config file ?
    Thanks for your help.

    • WPBeginner Support says

      If your plugin is requiring you to edit your wp-config file you would normally want to edit the wp-config file before activating your new plugin.

      管理者

  8. Tiar says

    hi, i have a wordpress site, i want edit my wordpress site in local, but when i already backup and run my wordpress in local. the page is full of white. can you help me ? im beginner in wordpress

  9. Arthur says

    I have updated my website (lostkatanning.com) o WP 5.1 (the Gutenberg update) but now, when working on pages or posts it has slowed right down to a crawl and takes forever to respond to even a single key touch. I have tried numerous things from various websites but nothing seems to work. It is starting to do my head in! Any ideas on how to get my speed back?

  10. mostafa says

    Hi
    I have a wordpress site. Today I realized my wp-config.php file has been removed for no reason (The reason is not important for me right now).

    I want to know what happens if I create another wp-config.php file in the root directory of my website by renaming the wp-config-sample.php file again and set the database name blah blah blah

    does it affect my pages and posts? How about the users who have signed up to my website? does it remove them? If the answer is yes, isn’t it better for me to restore backup? The only problem for restoring backup is that it is for two days ago and I posted a new content yesterday and I will miss it.

    Thank you very much in advance

    • WPBeginner Support says

      Your user and post information is in the database so that information shouldn’t be affected, as long as you connect it to your correct database then there shouldn’t be any change.

      管理者

  11. Deepak says

    Hello,
    How do I edit wp-config for setting other smtp using WP smtp plugin ?

    Plugin says, “The password is stored in plain text. We highly recommend you setup your password in your WordPress configuration file for improved security; to do this add the lines below to your wp-config.phpfile.

    define( ‘WPMS_ON’, true ); define( ‘WPMS_SMTP_PASS’, ‘your_password’ ); ”

    Where do I exactly add the code ? It don’t shown in tutorial video or article of Wpbeginner.

  12. Gaurav Bhatnagar says

    Hi, I just updated my WordPress to new version manually using FileZilla. My website was working. But then, I did some update inside wp-config.php file. Now the size of that file on server has become ‘0’. Even if I update it from local PC, it still remains ‘0’. What should I do? Now website is not working. I am getting – HTTP Error 500

    • WPBeginner Support says

      Hi Gaurav,

      You can download a fresh copy of WordPress and extract it on your computer. Inside it you will find a wp-config-sample.php file. You can upload this file to your server and rename it to wp-config.php. You will now need to edit wp-config.php file and enter your WordPress database information.

      管理者

  13. Greg Bryant says

    I have an intranet-based wordpress site that I’m setting up. I’m having issues with the proxy configuration in wp-config.php. I’ve tried about everything I know and I still keep getting ‘Proxy Authentication Required” errors.

    define(‘WP_PROXY_HOST’, ‘https://proxy.domain.com’);
    define(‘WP_PROXY_PORT’, ‘3128’);
    define(‘WP_PROXY_USERNAME’, ‘domain\\username’);
    define(‘WP_PROXY_PASSWORD’, ‘xxxxxx’);
    define(‘WP_PROXY_BYPASS_HOSTS’, ‘localhost’);

    Our internal wordpress site can detect that there are new versions of plug-ins but when I try to update I get the proxy authentication error. I’ve tried the variables above with https, http, just proxy.domain.com, the username escaping the \, not escaping the backslash, etc. I looked at the code in class-wp-http-proxy.php and it appears the authentication connects the username with a : and then the password like the http(s)_proxy environment variable. I’ve tried local host for the bypass and an empty string. Our Windows domain uses an file; is there a place to specify this?

    I get the same proxy authentication errors trying to download anything from the internal wordpress site.

    Error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the support forums. (WordPress could not establish a secure connection to WordPress.org. Please contact your server administrator.) in /var/www/epkb.mw-process-ctrl.com/public_html/wp-admin/includes/plugin-install.php on line 168

    I’m also having an issue with php’s file_get_contents if that’s something wordpress uses. cURL works fine.

    Any ideas?

    Thanks

      • Greg Bryant says

        I have curl installed.

        It lists ipV6 as yes but I have ipV6 disabled since our network doesn’t support it.

        I think the problem is authenticating with our proxy. On the server I use:

        (the \ is escaped when setting the env variables). Above is my wp-content proxy settings.

        I’m using ufw for my firewall and have tried with it enabled & disabled with the same results.

        Any other ideas?

        Thanks

    • WPBeginner Support says

      Hey Jon,

      Yes, they are effectively immediately. However, if you are editing wp-config file in a text editor on your computer, then simply saving your changes may not change the wp-config.php file on your server. You will need to upload the changed wp-config.php file back to your server for changes to take effect.

      管理者

      • Andy says

        What’s the best way to upload the changed wp-config.php file back to the server?

        Can the tutorial be updated with how to upload the adjusted config file? The tutorial seems to be incomplete for the (relative) novice

  14. ayush says

    I did something silly , i removed the www part from wp site url under Setting-General . Now admin panel is getting redirected to wordpress one. i used your steps to copy both lines with modification and uploaded via ftp . No luck .Plz help

  15. Boris says

    Excellent post. I am a newbie and learned a lot.

    I have an issue with my site. It looks like I have been hacked. I ran WordFence scan and it caught a line of code in my wp-config.php file that it flagged as not belonging there. Following is the code:

    My question is this. Can I remove the "@include…" from the file without screwing up the .php file.

    Any guidance will be appreciated.

    • WPBeginner Support says

      Hi Boris,

      Is the file part of the core WordPress software, a plugin, or a theme? If yes, then download a fresh copy of WordPress core, plugins, or theme the file belongs to and then upload the new file.

      You can also download the file to your computer before editing the code as a backup. If anything goes wrong you can then upload it back.

      管理者

  16. Steph says

    I’m having problems accessing site. I debugged and am getting a list of problems but most seem to come back to this one:

    “Notice: get_settings is deprecated since version 2.1.0!
    Use get_option() instead. in /usr/local/pem/vhosts/xxxxxx/webspace/siteapps/WordPress-xxxxx/htdocs/wp-includes/functions.php on line 3752″

    But line 3752 reads:
    ” trigger_error( sprintf( __(‘%1$s is deprecated since version %2$s! Use %3$s instead.’), $function, $version, $replacement ) ); ”

    So i’ve no idea what to replace. I’m sure this is 101 stuff to you, but I’m really confused!! I would really appreciate your advice, thank you.

    • Steph says

      Found your section on disabling plugins – which was a great help as the the site is now viewable whilst I try to resolve. This is the message I see now when logged in WP Admin

      ” Catchable fatal error: Argument 1 passed to Genesis_Admin_CPT_Archive_Settings::__construct() must be an instance of stdClass, instance of WP_Post_Type given, called in /usr/local/pem/vhosts/xxxxxx/webspace/siteapps/WordPress-xxxxxx/htdocs/wp-content/themes/genesis/lib/admin/menu.php on line 122 and defined in /usr/local/pem/vhosts/xxxxxx/webspace/siteapps/WordPress-xxxxxx/htdocs/wp-content/themes/genesis/lib/admin/cpt-archive-settings.php on line 38 ”

      Am in a spot of bother and could really use your help – thank you!

      • WPBeginner Support says

        Hey Steph,

        Try updating your Genesis child theme. Connect to your website using FTP and download your child theme as a backup. After that delete child theme folder from your website.

        Next, download a fresh copy of the theme and install it. If this doesn’t work, then try updating Genesis core itself.

        管理者

  17. Sean says

    Hi,
    I did something silly and now can’t get my site to work. Basically I kept my site live at said URL example.com and created a folder where I built the WordPress site example.com/Wordpress. However when I went to put the wordpress site into the root folder after backing everything up I forgot to change the site URL in the dashboard. i basically then removed my entire site and copied everything from the wordpress site into the root URL. It didn’t work – so I thought I would remove everything and restore my site as it was with both the wordpress and the normal site working.

    However once I restored all the files the wordpress site now errors with 404 Page not found and I can’t login into the dashboard either.

    Any idea how I can restore this? I think it is looking in the root directory and WordPress folder for the site or something similar and it’s causing the error – but how do I fix it?

    Thanks
    Sean

    • WPBeginner Support says

      Hi Sean,

      You can update WordPress URLs by adding this code to your wp-config.php file:

      define('WP_HOME','http://example.com');
      define('WP_SITEURL','http://example.com');

      管理者

  18. Dan says

    Hello i would like to have it when i upload an image it gets uploaded to my cloud from wordpress.
    i got a url & api key.
    Any suggestions would be cool. thanks.

  19. Karl says

    Nice instructions, as far as they go. However, I know it is ALSO possible to edit wp-config.php directly through WordPress’ Admin area but it seems to be a closely guarded secret as to HOW to actually do this. I do not have FTP access to my site so I have to use some other method and I’d rather not go chasing down the rabbit hole of trying out various flaky plugins until I find one that actually works. Your assistance as to what menu drill-down to explore in WordPress Admin would be greatly appreciated.

    • WPBeginner Support says

      It is not a good idea to edit wp-config.php file inside WordPress admin area. One tiny mistake and you will be locked out of your WordPress site. If you do not have FTP access, you can try editing it via cPanel’s file manager.

      管理者

  20. Angela says

    I don’t want to sound stupid, but please help me understand… are the wp-config.php changes supposed to be made on my Mac or on the host for my website. They are two different machines.
    Please help! I keep making changes to my web site and all of a sudden they just do not ‘take’.
    Best regards,
    Angela

    • WPBeginner Support says

      You can make changes to wp-config.php file using an FTP client. It allows you to edit files on your web server. After connecting to your website using an FTP client, you need to locate wp-config.php file and download it to your computer. Make changes it to it using a text editor like TextEdit. Save your changes and then upload the file back to your web server using the FTP client.

      管理者

  21. Sharron says

    Ok, so I added define(‘WP_ALLOW_REPAIR’, true); to my downloaded wp config file with notepad. Now what?

    • Ray says

      Once you have done that, you can see the settings by visiting this URL on your blog:

      yoursite.com/wp-admin/maint/repair.php

      You have 2 buttons
      1st – Repair Database
      2nd – Repair and Optimize Database

      I suggest u click the 1st one and wait for the process to finish.

  22. PiNo says

    Hi,

    For security I add to my .htaccess

    <files wp-config.php>
    order allow,deny
    deny from all
    </files>

    Kind regards

返信を残す

コメントありがとうございます。すべてのコメントは私たちのコメントポリシーに従ってモデレートされ、あなたのメールアドレスが公開されることはありませんのでご留意ください。名前欄にキーワードを使用しないでください。個人的で有意義な会話をしましょう。