[修理済み Error] wp-blog-header.php の未定義関数 wp() の呼び出し

O エラー それはいくつかのブログで私に現れました WordPress あるサーバーから別のサーバーに移動され、 ファイルを編集しました wp-config.php。 "Call to undefined function wp() in wp-blog-header.php"

エラーの原因: – ファイルがあるようです WP-config.phpを 編集後に行が失われます。 具体的には、すべての PHP コードが XNUMX 行に表示されます。 正確な原因はわかりません。 おそらくphpファイルエディタの問題です。

[修理済み Error] Call to undefined function wp() in wp-blog-header.php

ソリューション: コピーして新しいファイルに置き換えます wp-config.php ここでデータベース、ユーザー データベース、パス、プレフィックスを設定します。

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

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

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

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

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'); 
$table_prefix  = 'wp_';

define ('WPLANG', '');

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

このファイルの更新後、エラーは消えました wp-config.php al WordPress.

テクノロジーに情熱を持っており、喜んで記事を書いています StealthSettings2006 年から .com を運営しています。私はオペレーティング システムに関して豊富な経験を持っています。 macOS, Windows シ Linuxだけでなく、プログラミング言語やブログ プラットフォームでも使用できます (WordPress) およびオンライン ストアの場合 (WooCommerce、Magento、PrestaShop)。

» WordPress » [修理済み Error] wp-blog-header.php の未定義関数 wp() の呼び出し
コメント