Skip to content

Commit

Permalink
More updates to docs and links.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbillion committed Mar 13, 2024
1 parent 51ced98 commit 7d97e01
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "johnbillion/wp-crontrol",
"description": "WP Crontrol lets you view and control what's happening in the WP-Cron system.",
"homepage": "https://github.com/johnbillion/wp-crontrol/",
"homepage": "https://wp-crontrol.com",
"license": "GPL-2.0-or-later",
"type": "wordpress-plugin",
"authors": [
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"private": true,
"author": "John Blackbourn",
"repository": "johnbillion/wp-crontrol",
"homepage": "https://github.com/johnbillion/wp-crontrol",
"homepage": "https://wp-crontrol.com",
"engines": {
"node": ">=18"
},
Expand Down
20 changes: 10 additions & 10 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ Tested up to: 6.4
Stable tag: 1.16.1
Donate link: https://github.com/sponsors/johnbillion

WP Crontrol enables you to view and control what's happening in the WP-Cron system.
WP Crontrol enables you to take control of the cron events on your WordPress website.

## Description

WP Crontrol enables you to view and control what's happening in the WP-Cron system. From the admin screens you can:
WP Crontrol enables you to take control of the cron events on your WordPress website. From the admin screens you can:

* View all cron events along with their arguments, recurrence, callback functions, and when they are next due.
* Edit, delete, pause, resume, and immediately run cron events.
Expand All @@ -37,7 +37,7 @@ I maintain several other plugins for developers. Check them out:

WP Crontrol is private by default and always will be. It does not send data to any third party, nor does it include any third party resources.

[WP Crontrol's full privacy statement can be found here](https://github.com/johnbillion/wp-crontrol/wiki/Privacy-statement).
[WP Crontrol's full privacy statement can be found here](https://wp-crontrol.com/privacy).

### Accessibility Statement

Expand All @@ -53,11 +53,11 @@ Yes, it's actively tested and working up to PHP 8.2.

### I get the error "There was a problem spawning a call to the WP-Cron system on your site". How do I fix this?

[You can read all about problems spawning WP-Cron on the WP Crontrol wiki](https://github.com/johnbillion/wp-crontrol/wiki/Problems-with-spawning-a-call-to-the-WP-Cron-system).
[You can read all about problems spawning WP-Cron on the WP Crontrol website](https://wp-crontrol.com/help/problems-spawning-wp-cron/).

### Why do some cron events miss their schedule?

[You can read all about cron events that miss their schedule on the WP Crontrol wiki](https://github.com/johnbillion/wp-crontrol/wiki/Cron-events-that-have-missed-their-schedule).
[You can read all about cron events that miss their schedule on the WP Crontrol website](https://wp-crontrol.com/help/missed-cron-events/).

### Why do some cron events reappear shortly after I delete them?

Expand Down Expand Up @@ -101,11 +101,11 @@ From the Tools → Cron Events → Add New screen, create a PHP cron event that

wp_remote_get( 'http://example.com' );

[You can read all about the features and security of PHP cron events on the WP Crontrol wiki](https://github.com/johnbillion/wp-crontrol/wiki/PHP-cron-events).
[You can read all about the features and security of PHP cron events on the WP Crontrol website](https://wp-crontrol.com/docs/php-cron-events/).

### Why do changes that I make to some cron events not get saved?

[You can read all about problems with editing cron events on the WP Crontrol wiki](https://github.com/johnbillion/wp-crontrol/wiki/Problems-adding-or-editing-WP-Cron-events).
[You can read all about problems with editing cron events on the WP Crontrol website](https://wp-crontrol.com/help/problems-managing-events/).

### Can I export a list of cron events?

Expand Down Expand Up @@ -147,7 +147,7 @@ The next step is to write your function. Here's a simple example:

In the Tools → Cron Events admin panel, click on "Add New". In the form that appears, select "PHP Cron Event" and enter the schedule and next run time. The event schedule is how often your event will be executed. If you don't see a good interval, then add one in the Settings → Cron Schedules admin panel. In the "Hook code" area, enter the PHP code that should be run when your cron event is executed. You don't need to provide the PHP opening tag (`<?php`).

[You can read all about the features and security of PHP cron events on the WP Crontrol wiki](https://github.com/johnbillion/wp-crontrol/wiki/PHP-cron-events).
[You can read all about the features and security of PHP cron events on the WP Crontrol website](https://wp-crontrol.com/docs/php-cron-events).

### Which users can manage cron events and schedules?

Expand All @@ -161,15 +161,15 @@ If file editing has been disabled via the `DISALLOW_FILE_MODS` or `DISALLOW_FILE

Therefore, the user access level required to execute arbitrary PHP code does not change with WP Crontrol activated.

[You can read all about the features and security of PHP cron events on the WP Crontrol wiki](https://github.com/johnbillion/wp-crontrol/wiki/PHP-cron-events).
[You can read all about the features and security of PHP cron events on the WP Crontrol website](https://wp-crontrol.com/docs/php-cron-events/).

### Are any WP-CLI commands available?

The cron commands which were previously included in WP Crontrol are now part of WP-CLI itself. See `wp help cron` for more info.

### What happens when I deactivate the WP Crontrol plugin?

[You can read all about what happens when you deactivate the plugin on the WP Crontrol wiki](https://github.com/johnbillion/wp-crontrol/wiki/What-happens-when-I-deactivate-the-WP-Crontrol-plugin%3F).
[You can read all about what happens when you deactivate the plugin on the WP Crontrol website](https://wp-crontrol.com/docs/deactivation/).

### How can I report a security bug?

Expand Down
12 changes: 6 additions & 6 deletions src/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -849,8 +849,8 @@ function admin_help_tab() {
$content .= '<li>';
$content .= sprintf(
/* translators: %s: URL to the documentation */
__( '<a href="%s">Read the WP Crontrol wiki</a> which contains information about events that have missed their schedule, problems with spawning a call to the WP-Cron system, and much more.', 'wp-crontrol' ),
'https://github.com/johnbillion/wp-crontrol/wiki'
__( '<a href="%s">Read the WP Crontrol website</a> which contains information about events that have missed their schedule, problems with spawning a call to the WP-Cron system, and much more.', 'wp-crontrol' ),
'https://wp-crontrol.com'
);
$content .= '</li>';
$content .= '<li>';
Expand Down Expand Up @@ -900,7 +900,7 @@ function plugin_action_links( $actions, $plugin_file, $plugin_data, $context ) {
),
'crontrol-help' => sprintf(
'<a href="%s">%s</a>',
'https://github.com/johnbillion/wp-crontrol/wiki',
'https://wp-crontrol.com',
esc_html__( 'Help', 'wp-crontrol' )
),
);
Expand All @@ -918,7 +918,7 @@ function network_plugin_action_links( $actions ) {
$new = array(
'crontrol-help' => sprintf(
'<a href="%s">%s</a>',
'https://github.com/johnbillion/wp-crontrol/wiki',
'https://wp-crontrol.com',
esc_html__( 'Help', 'wp-crontrol' )
),
);
Expand Down Expand Up @@ -1168,7 +1168,7 @@ function show_cron_status( $tab ) {
'<p>%1$s</p><p><a href="%2$s">%3$s</a></p>',
/* translators: %s: Help page URL. */
esc_html__( 'PHP default timezone is not set to UTC. This may cause issues with cron event timings.', 'wp-crontrol' ),
'https://github.com/johnbillion/wp-crontrol/wiki/PHP-default-timezone-is-not-set-to-UTC',
'https://wp-crontrol.com/help/php-default-timezone/',
esc_html__( 'More information', 'wp-crontrol' )
);
?>
Expand Down Expand Up @@ -1196,7 +1196,7 @@ function show_cron_status( $tab ) {
esc_html__( 'There was a problem spawning a call to the WP-Cron system on your site. This means WP-Cron events on your site may not work. The problem was: %s', 'wp-crontrol' ),
'</p><p><strong>' . esc_html( $status->get_error_message() ) . '</strong>'
),
'https://github.com/johnbillion/wp-crontrol/wiki/Problems-with-spawning-a-call-to-the-WP-Cron-system',
'https://wp-crontrol.com/help/problems-spawning-wp-cron/',
esc_html__( 'More information', 'wp-crontrol' )
);
?>
Expand Down
2 changes: 1 addition & 1 deletion src/event-list-table.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public function prepare_items() {
'<div id="crontrol-late-message" class="notice notice-warning"><p>%1$s</p><p><a href="%2$s">%3$s</a></p></div>',
/* translators: %s: Help page URL. */
esc_html__( 'One or more cron events have missed their schedule.', 'wp-crontrol' ),
'https://github.com/johnbillion/wp-crontrol/wiki/Cron-events-that-have-missed-their-schedule',
'https://wp-crontrol.com/help/missed-cron-events/',
esc_html__( 'More information', 'wp-crontrol' )
);
} );
Expand Down
6 changes: 3 additions & 3 deletions wp-crontrol.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php
/**
* Plugin Name: WP Crontrol
* Plugin URI: https://wordpress.org/plugins/wp-crontrol/
* Plugin URI: https://wp-crontrol.com
* Description: WP Crontrol enables you to view and control what's happening in the WP-Cron system.
* Author: John Blackbourn & crontributors
* Author URI: https://github.com/johnbillion/wp-crontrol/graphs/contributors
* Author: John Blackbourn
* Author URI: https://wp-crontrol.com
* Version: 1.16.1
* Text Domain: wp-crontrol
* Domain Path: /languages/
Expand Down

0 comments on commit 7d97e01

Please sign in to comment.