| 开发者 | emtiazzahid |
|---|---|
| 更新时间 | 2026年9月18日 23:51 |
| PHP版本: | 7.4 及以上 |
| WordPress版本: | 7.1 |
| 版权: | GPLv2 or later |
| 版权网址: | 版权信息 |
wp faultwright issues list, wp faultwright issues show <id>, wp faultwright cron check, wp faultwright changes list, wp faultwright prune, wp faultwright test-error, wp faultwright digest.faultwright_ignore_error, faultwright_js_noise_patterns, faultwright_explanations, faultwright_severity, faultwright_event_recorded, faultwright_notification_channels, faultwright_capability, faultwright_ai_prompt, faultwright_retention_days, faultwright_mail_activity_count.
faultwright folder to /wp-content/plugins/ or install it from the Plugins screen.Yes. Faultwright never reads or changes PHP's error-reporting level, so it cannot tell whether a call was wrapped in @. Warnings are grouped and counted, so a silenced call that fails repeatedly shows up as one group. Notices and deprecations are off by default and can be enabled in Settings.
No. When nothing goes wrong, the PHP handler costs well under a millisecond and no database queries run on the front end. The JavaScript collector is 1.4 KB and only talks to the server when an error happens. Sampling lets you record a fraction of front-end visitors.
No. Faultwright captures errors directly. If WP_DEBUG_LOG is on, new lines in debug.log are imported as well and de-duplicated.
No. Nothing leaves your site unless you click "Explain with AI" with your own key configured. There is no telemetry.
A tiny file copied into wp-content/mu-plugins that loads Faultwright before every other plugin, so a fatal error raised while another plugin starts up is still captured. You can remove it from Settings → Capture at any time; uninstalling deletes it.
It explains them and points at the most likely culprit with the change history. Rolling a plugin back or contacting the author remains a manual step.
Error records store the visitor's role, never a user ID, email address or IP address. IP addresses are hashed (/24) for rate limiting only and expire after one minute. Query strings are stripped from recorded URLs by default. Failed-email records keep the subject line and, optionally, the recipient domain, never the full address. The change log records which logged-in user activated, updated or changed something, so you can see who did what. The plugin adds a suggested paragraph to Settings → Privacy → Policy Guide.
The admin app and the browser collector ship un-minified in assets/src/; the files in assets/build/ are produced from them with npm install && npm run build (the package.json is included). Nothing else is compiled or obfuscated.
No. Query Monitor inspects a single request while you look at it. Faultwright is a persistent history for site owners and the people who maintain sites for them.
Add define( 'FAULTWRIGHT_DISABLE', true ); to wp-config.php.