Introduction
How To Modify WP Toolkit Setting Options From The Command Line?
Procedure
The setting options refer to the options available in the WHM Home » Plugins » WP Toolkit » Settings interface. These options can also be modified from the command line using the following command:
/usr/local/bin/wp-toolkit --config -operation set -option-name OPTION_NAME -option-value OPTION_VALUE
OPTION_NAME & OPTION_VALUE in the above command need to be replaced with a specific setting option's name and its appropriate value. You can get the list of all these options and their current values using this command:
/usr/local/bin/wp-toolkit --config -operation list
Now for example imagine I want to set the value of "httpTimeout" option to "20", you can do that with the following command:
/usr/local/bin/wp-toolkit --config -operation set -option-name httpTimeout -option-value 20
The configuration option 'httpTimeout' is set to '20'