2015-07-04 2 views
0

Недавно я перенес сайт WordPress в Amazon AWS. Я получаю эту странную проблему, когда папка wp-amdin удаляется регулярно, как раз в неделю. Я восстанавливаю эту папку, используя мою резервную копию, и сайт снова работает.папка wp-admin удаляется регулярно

Флаг отладки действует на wp-config.php. Но в файле журнала не сообщается об ошибке.

define('WP_DEBUG', true); 

Но я не уверен, что вызывает эту проблему. Кто-нибудь сталкивался с подобной проблемой?

Текущая версия Wordpress - 4.2.2

wp-config.php содержание здесь с деталями подключения к базе данных изменилось:

<?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', 'database_name'); 

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

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

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

/**#@+ 
* 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',   't`DK%X:>xy|e-Z(BXb/f(Ur`8#~UzUQG-^_Cs_GHs5U-&Wb?pgn^p8([email protected]}IcnCa|'); 
define('SECURE_AUTH_KEY', 'D&ovlU#|CvJ##uNq}bel+^MFtT&.b9{UvR]g%ixsXhGlRJ7q!h}XWdEC[BOKXssj'); 
define('LOGGED_IN_KEY', 'MGKi8Br(&{H*~&0s;{k0<S(O:+f#WM+q|npJ-+P;RDKT:~jrmgj#/-,[hOBk!ry^'); 
define('NONCE_KEY',  'FIsAsXJKL5ZlQo)iD-pt??eUbdc{_Cn<4!d~yqz))&B D?AwK%)+)F2aNwI|siOe'); 
define('AUTH_SALT',  '7T-!^i!0,w)L#[email protected]{8XE[DenYI^BVf{L:jvF,hf}zBf883td6D;Vcy8,S)-&G'); 
define('SECURE_AUTH_SALT', 'I6`V|mDZq21-J|ihb u^q0F }F_NUcy`l,=obGtq*p#Ybe4a31R,r=|n#=]@]C#'); 
define('LOGGED_IN_SALT', 'w<$4c$Hmd%/*]`Oom>(hdXW|0M=X={we6;Mpvtg+V.o<$|#_}qG(GaVDEsn,~*4i'); 
define('NONCE_SALT',  'a|#h{c5|P &xWs4IZ20c2&%4!c(/uG}W:mAvy<I44`jAbup]t=]V<`}.py(wTP%%'); 

/**#@-*/ 

/** 
* 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_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German 
* language support. 
*/ 
define('WPLANG', ''); 

/** 
* 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. 
*/ 
define('WP_DEBUG', true); 

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

Я не знаю ответа, но я думаю, что это не имеет ничего общего с wp-config.php или любой конфигурацией внутри. – meck373

+0

'wp-config.php' - это просто оригинальная версия WordPress с измененным именем базы данных и паролем. Я добавил здесь подробности wp-config. – Suhmi

ответ

0

Вы должны изменить свои секретные ключи в сор-файле config.php. Посетите this link to know more.

+0

Спасибо @Arshad за это предложение, я довольно новичок в Wordpress, задаваясь вопросом, как это связано с удалением папки 'wp-admin'. Есть ли способ проследить эту активность? – Suhmi

Смежные вопросы