2016-12-29 88 views
-1

我在wordpress網站頂部有這種按摩,不能進入管理區域!警告:包括(1)[function.include]:未能打開流

警告:包括(1)[]:未能打開流:在/home/pharmme/public_html/bphsa.bg/wp-config.php 沒有這樣 文件或目錄第21行

警告:包括()[function.include]:在 /家/ pharmme /的public_html/bphsa:無法打開 '1' 爲 包容(include_path中= '的/ usr /本地/ php52 /梨。')。第21行的bg/wp-config.php

問題是什麼?

?php 
/** 
* The*/include /* base configuration for WordPress 
* 
* 
* 
* This file contains the following configurations: 
* 
* * MySQL settings 
* * Secret keys 
* * Database table prefix 
* * ABSPATH 
* 
* @link https://codex.wordpress.org/Editing_wp-config.php 
* 
* @package WordPress 
*/ 

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

請添加'wp-config.php'第21行和上面的部分。如果包含它們,請務必替換密碼。你是否也改變了'wp-config.php',或者你讓WordPress自己生成它? – janw

+0

// ** MySQL設置 - 您可以通過您的虛擬主機獲取此信息** // /** WordPress */ define('DB_NAME','pharmme_wp573')的數據庫名稱; <---第21行 – morarov

+0

我們需要一個更大的部分。作爲編輯添加到您的問題。 – janw

回答

0

第二行是該問題。

* The*/include /* base configuration for WordPress

應該是:

* The include base configuration for WordPress

現在PHP認爲它的include功能。這是導致錯誤。

相關問題