Skip to content
Snippets Groups Projects
Commit a5ad9870 authored by Erick Hitter's avatar Erick Hitter
Browse files

Update readme for latest changes

parent 523bcd7b
No related branches found
No related tags found
Loading
......@@ -23,6 +23,14 @@ Provides a WP-CLI command to schedule these events. A UI is under consideration.
## Frequently Asked Questions ##
### Where is command output captured? ###
`error_log()` is used to store WP-CLI's output (`STDOUT`, `STDERR`, and the exit code), along with basic timing information and the command that was executed.
### Can this be used with commands that manipulate files? ###
This depends on how the commands are written, and the environment that hosts Cron Control's runner. The plugin makes no special accommodations to handle files required by or produced by commands.
### Why is PHP 7 required? ###
To support arrays in constants set using `define()`, PHP 7 is required. These are used to set whitelists and blacklists, though filters are also provided; see below.
......
......@@ -23,6 +23,14 @@ Provides a WP-CLI command to schedule these events. A UI is under consideration.
== Frequently Asked Questions ==
= Where is command output captured? =
`error_log()` is used to store WP-CLI's output (`STDOUT`, `STDERR`, and the exit code), along with basic timing information and the command that was executed.
= Can this be used with commands that manipulate files? =
This depends on how the commands are written, and the environment that hosts Cron Control's runner. The plugin makes no special accommodations to handle files required by or produced by commands.
= Why is PHP 7 required? =
To support arrays in constants set using `define()`, PHP 7 is required. These are used to set whitelists and blacklists, though filters are also provided; see below.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment