The ultimate WordPress plugin for SEO automation - from link fixing to AI-powered schema generation and chatbot support.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
573
9 issue groups
Maintainability
417
15 issue groups
I18n
76
1 issue group
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.120
- Category
- Maintainability
- Occurrences
- 120
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGMaintainabilityNo CachingDirect database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().114
- Category
- Maintainability
- Occurrences
- 114
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.113
- Category
- Security
- Occurrences
- 113
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityMissing nonce verificationProcessing form data without nonce verification.101
- Category
- Security
- Occurrences
- 101
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityRequest data is not unslashed$_GET['date_range'] not unslashed before sanitization. Use wp_unslash() or similar89
- Category
- Security
- Occurrences
- 89
- Severity
- warning
Sample message
$_GET['date_range'] not unslashed before sanitization. Use wp_unslash() or similar
ERRORI18nMissing Translators CommentA function call to __() with texts containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.76
- Category
- I18n
- Occurrences
- 76
- Severity
- error
Sample message
A function call to __() with texts containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_FILES['import_file']['name']74
- Category
- Security
- Occurrences
- 74
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_FILES['import_file']['name']
WARNINGSecurityInterpolated SQL is not preparedUse placeholders and $wpdb->prepare(); found interpolated variable $backup_table at "CREATE TABLE $backup_table LIKE $table_name"66
- Category
- Security
- Occurrences
- 66
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $backup_table at "CREATE TABLE $backup_table LIKE $table_name"
WARNINGSecurityDatabase parameter is not escapedUnescaped parameter $backup_table used in $wpdb->query()\n$backup_table assigned unsafely at line 889.52
- Category
- Security
- Occurrences
- 52
- Severity
- warning
Sample message
Unescaped parameter $backup_table used in $wpdb->query()\n$backup_table assigned unsafely at line 889.
WARNINGSecurityInput is not validatedDetected usage of a possibly undefined superglobal array index: $_FILES['import_file']['error'][$key]. Check that the array index exists before using it.38
- Category
- Security
- Occurrences
- 38
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_FILES['import_file']['error'][$key]. Check that the array index exists before using it.
Show 15 moreShow less
WARNINGMaintainabilityNon-prefixed hook name35
- Category
- Maintainability
- Occurrences
- 35
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "srk/api_base_url".
ERRORMaintainabilitydate date29
- Category
- Maintainability
- Occurrences
- 29
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
ERRORSecuritySetting is missing a sanitization callback28
- Category
- Security
- Occurrences
- 28
- Severity
- error
Sample message
Sanitization missing for register_setting().
WARNINGMaintainabilityNon-prefixed class26
- Category
- Maintainability
- Occurrences
- 26
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "SRK_API_Client".
WARNINGMaintainabilityNon-prefixed function19
- Category
- Maintainability
- Occurrences
- 19
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "activate_seorepairkit_plugin".
ERRORMaintainabilityfile system operations fclose13
- Category
- Maintainability
- Occurrences
- 13
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fclose().
WARNINGSecurityUnquoted Complex Placeholder12
- Category
- Security
- Occurrences
- 12
- Severity
- warning
Sample message
Complex placeholders used for values in the query string in $wpdb->prepare() will NOT be quoted automagically. Found: %1s.
WARNINGMaintainabilityslow db query meta key10
- Category
- Maintainability
- Occurrences
- 10
- Severity
- warning
Sample message
Detected usage of meta_key, possible slow query.
ERRORMaintainabilitywp function not compatible with requires wp10
- Category
- Maintainability
- Occurrences
- 10
- Severity
- error
Sample message
Function "str_starts_with()" requires WordPress 5.9.0, but your plugin minimum supported version is WordPress 5.0.0.
WARNINGMaintainabilityNon-prefixed global variable9
- Category
- Maintainability
- Occurrences
- 9
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$meta_keys_exact".
ERRORMaintainabilityparse url parse url9
- Category
- Maintainability
- Occurrences
- 9
- Severity
- error
Sample message
parse_url() is discouraged because of inconsistency in the output across PHP versions; use wp_parse_url() instead.
WARNINGMaintainabilitySchema Change8
- Category
- Maintainability
- Occurrences
- 8
- Severity
- warning
Sample message
Attempting a database schema change is discouraged.
ERRORMaintainabilityPlugin Directory Write6
- Category
- Maintainability
- Occurrences
- 6
- Severity
- error
Sample message
Plugin folders are deleted when upgraded. Do not save data to the plugin folder using file_put_contents(). Detected usage of constant WP_PLUGIN_DIR. Use wp_upload_dir() to get the uploads directory path or save to the database instead.
ERRORMaintainabilityOffloaded Content5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- error
Sample message
Found call to wp_enqueue_script() with external resource. Offloading scripts to your servers or any remote service is disallowed.
WARNINGMaintainabilityslow db query meta value4
- Category
- Maintainability
- Occurrences
- 4
- Severity
- warning
Sample message
Detected usage of meta_value, possible slow query.
External Connections
Not analyzed yet.
Score History
First score snapshot
v2.1.8
25
Latest
- Findings
- 1,098
- Errors
- 196
- Warnings
- 902
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 25 | 1,098 | 196 | 902 | v2.1.8 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.