Created
November 29, 2013 10:40
-
-
Save handleman/7704066 to your computer and use it in GitHub Desktop.
Узнать доступ к базе данных через исходный код CMS Wordpress
файл wp-config.php в корне сайта
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define('DB_NAME', 'твой текст'); /** Имя базы данных MySQL */ | |
define('DB_USER', 'твой текст'); /** Имя пользователя MySQL */ | |
define('DB_PASSWORD', 'твой текст'); /** Пароль к базе данных MySQL */ | |
define('DB_HOST', 'localhost'); /** Имя сервера MySQL */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment