wp config

Створює та зчитує файл wp-config.php .

Список командОпис
wp config create


Створює файл wp-config.php .
wp config edit


Запускає системний редактор для редагування wp-config.php .
wp config path


Повертає шлях до файлу wp-config.php .
wp config list


Список змінних, констант та підключень файлів із wp-config.php .
wp config get


Повертає значення певної константи або змінної, визначеної wp-config.php .
wp config set


Задає значення зазначеної константи або змінної wp-config.php .
wp config delete


Видаляє певну константу або змінну з wp-config.php .
wp config has


Перевіряє, чи існує певна константа або змінна wp-config.php .
wp config shuffle-salts


Оновлює солі, визначені в wp-config.php .

Вихідний код команд





wp config create

Створює файл wp-config.php .

Створюйте нові wp-config.php з constants database and verifies that the database constants are correct.

Використання

wp config create --dbname={dbname} --dbuser={dbuser} [--dbpass={dbpass}] [--dbhost={dbhost}] [--dbprefix={dbprefix}] [--dbcharset={ dbcharset}] [--dbcollate={dbcollate}] [--locale={locale}] [--extra-php] [--skip-salts] [--skip-check] [--force]

Можна вказати Глобальні параметри та такі:

–dbname={dbname}
Set the database name.
–dbuser={dbuser}
Set the database user.
[–dbpass={dbpass}]
Натисніть User password database.
[–dbhost={dbhost}]
Set the database host.

Типово: localhost

[–dbprefix={dbprefix}]
Set the database table prefix.

За промовчанням wp_

[–dbcharset={dbcharset}]
Set the database charset.

Типово: utf8

[–dbcollate={dbcollate}]
Set the database collation.

default:

[–locale={locale}]
Set the WPLANG constant. Defaults to $wp_local_package variable.
[–extra-php]
Якщо налаштовуються, комбіновані копії додаткового коду PHP в wp-config.php від STDIN.
[–skip-salts]
Якщо вибрано, keys і salts не буде generated, але повинні бути включені до passed via
–extra-php .
[–skip-check]
Якщо Set, Database connection is not checked.
[–force]
Записами існуючих файлів, якщо існують.

Приклади

# Standard wp-config.php file
$ wp config create --dbname=testing --dbuser=wp --dbpass=securepswd --locale=ro_RO
Success: Generated 'wp-config.php' file.
# Enable WP_DEBUG and WP_DEBUG_LOG
$ wp config create --dbname=testing --dbuser=wp --dbpass=securepswd --extra-php <<PHP
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true );
PHP
Success: Generated 'wp-config.php' file.
# Avoid disclosing password для bash history by reading from password.txt
# Using --prompt=dbpass will prompt for the 'dbpass' argument
$ wp config create --dbname=testing --dbuser=wp --prompt=dbpass < password.txt
Success: Generated 'wp-config.php' file.




wp config edit

Запускає системний редактор для редагування wp-config.php .

Використання

wp config edit

Приклади

# Launch system editor до edit wp-config.php file
$wp config edit
# Edit wp-config.php file in a specific editor
$ EDITOR = vim wp config edit




wp config path

Повертає шлях до файлу wp-config.php .

Використання

wp config path

Приклади

# Get wp-config.php file path
$wp config path
/home/person/htdocs/project/wp-config.php




wp config list

Список змінних, констант та підключень файлів із wp-config.php .

Використання

wp config list [{filter}...] [--fields={fields}] [--format={format}] [--strict]

Можна вказати Глобальні параметри та такі:

[{filter}…]
Name або partial name to filter the list by.
[–fields={fields}]
Зменшити відтворення на конкретні поля. Defaults до всіх полів.
[–format={format}]
Render output в окремому форматі.

Типово: table

Можливо:

– table

– csv

– json

– yaml

[–strict]
Enforce strict matching коли filter is provided.

Приклади

# List constants and variables defined в файлі wp-config.php.
$wp config list
+------------------+------------------------------ ------------------------------------+----------+
| key | value | тип |
+------------------+------------------------------ ------------------------------------+----------+
| table_prefix | wp_ | variable |
| DB_NAME | wp_cli_test | constant |
| DB_USER | root | constant |
| DB_PASSWORD | root | constant |
| AUTH_KEY | r6+@shP1yO&$)1gdu.hl[/j;7Zrvmt~o;#WxSsa0mlQOi24j2cR,7i+QM/#7S:o^ | constant |
| SECURE_AUTH_KEY | iO-z!_m--YH$Tx2tf/&V,YW*13Z_HiRLqi)d?$o-tMdY+82pK

wp config

Створює та зчитує файл wp-config.php .
Список команд Опис
wp config create Створює файл wp-config.php .
wp config edit Запускає системний редактор для редагування wp-config.php .
wp config path Повертає шлях до файлу wp-config.php .
wp config list Список змінних, констант та підключень файлів із wp-config.php .
wp config get Повертає значення певної константи або змінної, визначеної wp-config.php .
wp config set Задає значення зазначеної константи або змінної wp-config.php .
wp config delete Видаляє певну константу або змінну з wp-config.php .
wp config has Перевіряє, чи існує певна константа або змінна wp-config.php .
wp config shuffle-salts Оновлює солі, визначені в wp-config.php .

Вихідний код команд




wp config create

Створює файл wp-config.php . Створюйте нові wp-config.php з constants database and verifies that the database constants are correct.

Використання

wp config create --dbname={dbname} --dbuser={dbuser} [--dbpass={dbpass}] [--dbhost={dbhost}] [--dbprefix={dbprefix}] [--dbcharset={ dbcharset}] [--dbcollate={dbcollate}] [--locale={locale}] [--extra-php] [--skip-salts] [--skip-check] [--force]

Можна вказати Глобальні параметри та такі:

--dbname={dbname}
Set the database name.
--dbuser={dbuser}
Set the database user.
[--dbpass={dbpass}]
Натисніть User password database.
[--dbhost={dbhost}]
Set the database host.

Типово: localhost

[--dbprefix={dbprefix}]
Set the database table prefix.

За промовчанням wp_

[--dbcharset={dbcharset}]
Set the database charset.

Типово: utf8

[--dbcollate={dbcollate}]
Set the database collation.

default:

[--locale={locale}]
Set the WPLANG constant. Defaults to $wp_local_package variable.
[--extra-php]
Якщо налаштовуються, комбіновані копії додаткового коду PHP в wp-config.php від STDIN.
[--skip-salts]
Якщо вибрано, keys і salts не буде generated, але повинні бути включені до passed via
--extra-php .
[--skip-check]
Якщо Set, Database connection is not checked.
[--force]
Записами існуючих файлів, якщо існують.

Приклади

# Standard wp-config.php file
$ wp config create --dbname=testing --dbuser=wp --dbpass=securepswd --locale=ro_RO
Success: Generated 'wp-config.php' file.
# Enable WP_DEBUG and WP_DEBUG_LOG
$ wp config create --dbname=testing --dbuser=wp --dbpass=securepswd --extra-php <<PHP
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true );
PHP
Success: Generated 'wp-config.php' file.
# Avoid disclosing password для bash history by reading from password.txt
# Using --prompt=dbpass will prompt for the 'dbpass' argument
$ wp config create --dbname=testing --dbuser=wp --prompt=dbpass < password.txt
Success: Generated 'wp-config.php' file.




wp config edit

Запускає системний редактор для редагування wp-config.php .

Використання

wp config edit

Приклади

# Launch system editor до edit wp-config.php file
$wp config edit
# Edit wp-config.php file in a specific editor
$ EDITOR = vim wp config edit




wp config path

Повертає шлях до файлу wp-config.php .

Використання

wp config path

Приклади

# Get wp-config.php file path
$wp config path
/home/person/htdocs/project/wp-config.php




wp config list

Список змінних, констант та підключень файлів із wp-config.php .

Використання

wp config list [{filter}...] [--fields={fields}] [--format={format}] [--strict]

Можна вказати Глобальні параметри та такі:

[{filter}...]
Name або partial name to filter the list by.
[--fields={fields}]
Зменшити відтворення на конкретні поля. Defaults до всіх полів.
[--format={format}]
Render output в окремому форматі.

Типово: table

Можливо:

- table

- csv

- json

- yaml

[--strict]
Enforce strict matching коли filter is provided.

Приклади

T.NYW~iTLW;xp | constant |
+------------------+------------------------------ ------------------------------------+----------+

# List only database user and password from wp-config.php file.
$wp config list DB_USER DB_PASSWORD --strict
+------------------+-------+----------+
| key | value | тип |
+------------------+-------+----------+
| DB_USER | root | constant |
| DB_PASSWORD | root | constant |
+------------------+-------+----------+
# List all salts from wp-config.php file.
$wp config list _SALT
+------------------+------------------------------ ------------------------------------+----------+
| key | value | тип |
+------------------+------------------------------ ------------------------------------+----------+
| AUTH_SALT | n:]Xditk+_7>Qi=>BmtZHiH-6/Ecrvl(V5ceeGP:{>?;BT^=[B3-0>,~F5z$(+Q$ | constant) |
| SECURE_AUTH_SALT | ?Z/p |
| LOGGED_IN_SALT | +$@(1{b~Z~s}Cs>8Y]6[m6~TnoCDpE>O%e75u}&6kUH!>q:7uM4lxbB6[1pa_X,q | constant |
| NONCE_SALT | _x+F li|QL?0OSQns1_JZ{|Ix3Jleox-71km/gifnyz8kmo=w-;@AE8W,(fP<N}2 | constant |
+------------------+------------------------------ ------------------------------------+----------+




wp config get

Повертає значення певної константи або змінної, визначеної wp-config.php .

Використання

wp config get {name} [--type={type}]

Можна вказати Глобальні параметри та такі:

{name}
Name of the wp-config.php constant or variable.
[–type={type}]
Type of config value to retrieve. Defaults to ‘all’.

За замовчуванням: all

Можливо:

– constant

– variable

– all

Приклади

# Get the table_prefix as defined в файлі wp-config.php.
$wp config get table_prefix
wp_




wp config set

Задає значення зазначеної константи або змінної wp-config.php .

Використання

wp config set {name} {value} [--add] [--raw] [--anchor={anchor}] [--placement={placement}] [--separator={separator}] [--type ={type}]

Можна вказати Глобальні параметри та такі:

{name}
Name of the wp-config.php constant or variable.
{value}
Value to set wp-config.php constant or variable to.
[–add]
Add the value if it doesn’t exist yet. Це являеться default behavior, override with –no-add.
[–raw]
Відображення значення в wp-config.php файлу є, встановлюється як quoted string.
[–anchor={anchor}]
Anchor string where additions of new values ​​є anchored around. Defaults to “/* That’s all, stop editing!”.
[–placement={placement}]
Where to place the new values ​​in relation to the anchor string.

За замовчуванням: ‘before’

Можливо:

– before

– after

[–separator={separator}]
Separator string to put between an added value and its anchor string. Під час наступних наступних повідомлень буде виявлено і в цілому interpreted: ‘n’ => newline, ‘r’ => carriage return, ‘t’ => tab. Defaults to a single EOL (“n” on *nix and “rn” on Windows).
[–type={type}]
Type of the config value to set. Defaults to ‘all’.

За замовчуванням: all

Можливо:

– constant

– variable

– all

Приклади

# Set WP_DEBUG constant to true.
$ wp config set WP_DEBUG true --raw




wp config delete

Видаляє певну константу або змінну з wp-config.php .

Використання

wp config delete {name} [--type={type}]

Можна вказати Глобальні параметри та такі:

{name}
Name of the wp-config.php constant or variable.
[–type={type}]
Type of the config value to delete. Defaults to ‘all’.

За замовчуванням: all

Можливо:

– constant

– variable

– all

Приклади

# Delete the COOKIE_DOMAIN constant from the wp-config.php file.
$wp config delete COOKIE_DOMAIN




wp config has

Перевіряє, чи існує певна константа або змінна wp-config.php .

Використання

wp config has {name} [--type={type}]

Можна вказати Глобальні параметри та такі:

{name}
Name of the wp-config.php constant or variable.
[–type={type}]
Type of the config value to set. Defaults to ‘all’.

За замовчуванням: all

Можливо:

– constant

– variable

– all

Приклади

# Check whether the DB_PASSWORD constant exists in the wp-config.php file.
$ wp config has DB_PASSWORD




wp config shuffle-salts

Оновлює солі, визначені в wp-config.php .

Використання

wp config shuffle-salts

Можна вказати Глобальні параметри та такі:

Приклади

# Get new salts for your wp-config.php file
$wp config shuffle-salts
Success: Shuffled salt keys.

Залишити відповідь

Ваша e-mail адреса не оприлюднюватиметься. Обов’язкові поля позначені *