📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-07-06 16:02:57 +00:00
parent 32b074b266
commit 3b9ece8c79
299 changed files with 1063 additions and 858 deletions
@@ -31,10 +31,13 @@ themes. All three are one bad edit away from a white-screen-of-death or a broken
this section, even for a one-line change, even if the user is in a hurry.**
**Before any edit or deletion, in this order:**
1. **Back up the specific file(s) you're about to touch**, not just "have a backup somewhere":
1. **Back up the specific file(s) you're about to touch outside the web root**, not just "have a backup somewhere":
```
cp wp-config.php wp-config.php.bak-$(date +%Y%m%d-%H%M%S)
cp .htaccess .htaccess.bak-$(date +%Y%m%d-%H%M%S)
umask 077
backup_dir="../wp-site-health-backups/$(date +%Y%m%d-%H%M%S)"
mkdir -p "$backup_dir"
cp -p wp-config.php "$backup_dir/wp-config.php"
cp -p .htaccess "$backup_dir/.htaccess"
```
If shell access isn't available, tell the user to download the current file via SFTP/host file
manager first, and don't proceed until they confirm they have it.
@@ -57,7 +60,7 @@ this section, even for a one-line change, even if the user is in a hurry.**
know which change did it.
6. **Give the user the exact rollback command** alongside every edit:
```
cp wp-config.php.bak-<timestamp> wp-config.php
cp ../wp-site-health-backups/<timestamp>/wp-config.php wp-config.php
```
State this even if nothing goes wrong — it costs one line and saves a panicked user later.
@@ -282,7 +285,10 @@ blocks above, not prose paragraphs, unless the user asks for more explanation on
1. Triage → Tier 1 (safe, reversible via wp-config.php)
2. Back up `wp-config.php`:
```
cp wp-config.php wp-config.php.bak-$(date +%Y%m%d-%H%M%S)
umask 077
backup_dir="../wp-site-health-backups/$(date +%Y%m%d-%H%M%S)"
mkdir -p "$backup_dir"
cp -p wp-config.php "$backup_dir/wp-config.php"
```
3. Edit and lint:
```php
@@ -19,12 +19,13 @@ most shared hosts disable this and there is no performance downside for
standard WP installs. No action needed.
### File permissions should be reviewed — Tier 2
`wp-config.php` and `/wp-content/` directory permissions. Draft the expected
permissions:
`wp-config.php` and `/wp-content/` directory permissions. Do not recursively
chmod the whole web root, because it may contain host-managed files or private
backup material. Draft the expected permissions for the WordPress-owned paths:
```bash
find . -type f -exec chmod 644 {} \;
find . -type d -exec chmod 755 {} \;
chmod 600 wp-config.php
find wp-content -type d -exec chmod 755 {} +
find wp-content -type f -exec chmod 644 {} +
chmod 400 .htaccess # if Apache; nginx ignores it
```
The user must verify with their host that the filesystem supports these