Files
2026-07-02 15:54:39 -06:00

18 lines
519 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Debugging WP-CLI
## WP not found / wrong WP root
- Run `wp --info`.
- Provide `--path=<wordpress-root>` if WP is not in the current directory.
- Confirm `wp-config.php` exists in the expected root.
## HTTP/URL targeting issues
- On multisite, include `--url=<site-url>` for site-specific actions.
## Permission/file ownership issues
- If running in containers, ensure youre using the same user/volume mapping as the app.
- Avoid `--allow-root` unless you understand the environment and have no alternative.