Skip to content

Commit

Permalink
More updated link URLs.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbillion committed Nov 10, 2023
1 parent 296735a commit b528361
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ In this file is Query Monitor's extension to the `wpdb` class which:
* Logs the full stack trace for each query, which allows it to determine the component that's responsible for the query
* Logs the query result, which allows it to display the affected rows or error message if applicable

If your `WP_CONTENT_DIR` isn't writable and therefore the symlink for `db.php` can't be put in place, Query Monitor still functions, but this extended functionality won't be available. You can [manually create the db.php symlink](https://github.com/johnbillion/query-monitor/wiki/db.php-Symlink) if you have permission.
If your `WP_CONTENT_DIR` isn't writable and therefore the symlink for `db.php` can't be put in place, Query Monitor still functions, but this extended functionality won't be available. You can [manually create the db.php symlink](https://querymonitor.com/help/db-php-symlink/) if you have permission.

## Screenshots

Expand Down Expand Up @@ -240,7 +240,7 @@ This is useful for long-running operations that perform a very high number of da

### Are there any add-on plugins for Query Monitor?

[A list of add-on plugins for Query Monitor can be found here.](https://github.com/johnbillion/query-monitor/wiki/Query-Monitor-Add-on-Plugins)
[A list of add-on plugins for Query Monitor can be found here.](https://querymonitor.com/help/add-on-plugins/)

In addition, Query Monitor transparently supports add-ons for the Debug Bar plugin. If you have any Debug Bar add-ons installed, deactivate Debug Bar and the add-ons will show up in Query Monitor's menu.

Expand Down Expand Up @@ -274,7 +274,7 @@ In addition, if you like the plugin then I'd love for you to [leave a review](ht

Query Monitor is private by default and always will be. It does not persistently store any of the data that it collects. It does not send data to any third party, nor does it include any third party resources.

[Query Monitor's full privacy statement can be found here](https://github.com/johnbillion/query-monitor/wiki/Privacy-Statement).
[Query Monitor's full privacy statement can be found here](https://querymonitor.com/privacy/).

## Accessibility Statement

Expand All @@ -301,7 +301,7 @@ Debugging is rarely done with just one tool. Along with Query Monitor you should
* [Variable Inspector](https://wordpress.org/plugins/variable-inspector/)
* [WP Crontrol](https://wordpress.org/plugins/wp-crontrol/)

Query Monitor also has [several add-on plugins](https://github.com/johnbillion/query-monitor/wiki/Query-Monitor-Add-on-Plugins) which extend its functionality, and transparently supports add-ons for the Debug Bar plugin (see the FAQ for more info).
Query Monitor also has [several add-on plugins](https://querymonitor.com/help/add-on-plugins/) which extend its functionality, and transparently supports add-ons for the Debug Bar plugin (see the FAQ for more info).

See also my list of [WordPress Developer Plugins](https://johnblackbourn.com/wordpress-developer-plugins).

Expand Down
2 changes: 1 addition & 1 deletion classes/QueryMonitor.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public function set_up() {
public function filter_plugin_action_links( array $actions ) {
return array_merge( array(
'settings' => '<a href="#qm-settings">' . esc_html__( 'Settings', 'query-monitor' ) . '</a>',
'add-ons' => '<a href="https://github.com/johnbillion/query-monitor/wiki/Query-Monitor-Add-on-Plugins">' . esc_html__( 'Add-ons', 'query-monitor' ) . '</a>',
'add-ons' => '<a href="https://querymonitor.com/help/add-on-plugins/">' . esc_html__( 'Add-ons', 'query-monitor' ) . '</a>',
), $actions );
}

Expand Down
2 changes: 1 addition & 1 deletion output/html/db_queries.php
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ protected function output_queries( QM_Data_DB_Queries $data ) {

printf(
' <a href="%s" target="_blank" class="qm-external-link">See this wiki page for more information.</a>',
'https://github.com/johnbillion/query-monitor/wiki/db.php-Symlink'
'https://querymonitor.com/help/db-php-symlink/'
);
echo '</th>';
echo '</tr>';
Expand Down
4 changes: 2 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ I maintain several other plugins for developers. Check them out:

Query Monitor is private by default and always will be. It does not persistently store any of the data that it collects. It does not send data to any third party, nor does it include any third party resources.

[Query Monitor's full privacy statement can be found here](https://github.com/johnbillion/query-monitor/wiki/Privacy-Statement).
[Query Monitor's full privacy statement can be found here](https://querymonitor.com/privacy/).

### Accessibility Statement

Expand Down Expand Up @@ -112,7 +112,7 @@ This is useful for long-running operations that perform a very high number of da

### Are there any add-on plugins for Query Monitor?

[A list of add-on plugins for Query Monitor can be found here.](https://github.com/johnbillion/query-monitor/wiki/Query-Monitor-Add-on-Plugins)
[A list of add-on plugins for Query Monitor can be found here.](https://querymonitor.com/help/add-on-plugins/)

In addition, Query Monitor transparently supports add-ons for the Debug Bar plugin. If you have any Debug Bar add-ons installed, deactivate Debug Bar and the add-ons will show up in Query Monitor's menu.

Expand Down
2 changes: 1 addition & 1 deletion wp-content/db.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* Ensure this file is symlinked to your wp-content directory to provide
* additional database query information in Query Monitor's output.
*
* @see https://github.com/johnbillion/query-monitor/wiki/db.php-Symlink
* @see https://querymonitor.com/help/db-php-symlink/
*
* *********************************************************************
*
Expand Down

0 comments on commit b528361

Please sign in to comment.