Spreadsheet Price Changer for WooCommerce and WP E-commerce - Light
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Maintainability
922
11 issue groups
Security
268
11 issue groups
I18n
122
3 issue groups
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$I".635
- Category
- Maintainability
- Occurrences
- 635
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$I".
ERRORI18nText Domain MismatchMismatched text domain. Expected 'excel-like-price-change-for-woocommerce-and-wp-e-commerce-light' but got "sellingcommander".106
- Category
- I18n
- Occurrences
- 106
- Severity
- error
Sample message
Mismatched text domain. Expected 'excel-like-price-change-for-woocommerce-and-wp-e-commerce-light' but got "sellingcommander".
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"\"{$tout->id}\":"'.74
- Category
- Security
- Occurrences
- 74
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"\"{$tout->id}\":"'.
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.73
- Category
- Maintainability
- Occurrences
- 73
- 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().72
- Category
- Maintainability
- Occurrences
- 72
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
ERRORSecuritySQL query is not preparedUse placeholders and $wpdb->prepare(); found !53
- Category
- Security
- Occurrences
- 53
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found !
ERRORMaintainabilitywp function not compatible with requires wpFunction "get_rest_url()" requires WordPress 4.4.0, but your plugin minimum supported version is WordPress 3.6.0.38
- Category
- Maintainability
- Occurrences
- 38
- Severity
- error
Sample message
Function "get_rest_url()" requires WordPress 4.4.0, but your plugin minimum supported version is WordPress 3.6.0.
WARNINGMaintainabilityMissing VersionResource version not set in call to wp_enqueue_script(). This means new versions of the script may not always be loaded due to browser caching.29
- Category
- Maintainability
- Occurrences
- 29
- Severity
- warning
Sample message
Resource version not set in call to wp_enqueue_script(). This means new versions of the script may not always be loaded due to browser caching.
WARNINGSecurityInterpolated SQL is not preparedUse placeholders and $wpdb->prepare(); found interpolated variable $import_uid at "DELETE FROM $wpdb->options WHERE option_name LIKE '$import_uid%'"25
- Category
- Security
- Occurrences
- 25
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $import_uid at "DELETE FROM $wpdb->options WHERE option_name LIKE '$import_uid%'"
WARNINGSecurityRequest data is not unslashed$_COOKIE[$parm_name] not unslashed before sanitization. Use wp_unslash() or similar25
- Category
- Security
- Occurrences
- 25
- Severity
- warning
Sample message
$_COOKIE[$parm_name] not unslashed before sanitization. Use wp_unslash() or similar
Show 15 moreShow less
ERRORSecurityDatabase parameter is not escaped20
- Category
- Security
- Occurrences
- 20
- Severity
- error
Sample message
Unescaped parameter $customers_join used in $wpdb->get_col()\n$customers_join assigned unsafely at line 2003.
WARNINGSecurityNonce verification recommended18
- Category
- Security
- Occurrences
- 18
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityNot In Footer17
- Category
- Maintainability
- Occurrences
- 17
- Severity
- warning
Sample message
In footer ($in_footer) is not set explicitly wp_enqueue_script; It is recommended to load scripts in the footer. Please set this value to `true` to load it in the footer, or explicitly `false` if it should be loaded in the header.
WARNINGSecurityDatabase parameter is not escaped16
- Category
- Security
- Occurrences
- 16
- Severity
- warning
Sample message
Unescaped parameter $q used in $wpdb->get_col()\n$q assigned unsafely at line 2013.
ERRORMaintainabilityfile system operations fwrite15
- Category
- Maintainability
- Occurrences
- 15
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fwrite().
WARNINGSecurityInput is not sanitized13
- Category
- Security
- Occurrences
- 13
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_COOKIE[$parm_name]
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().
WARNINGMaintainabilityNon-prefixed hook name12
- Category
- Maintainability
- Occurrences
- 12
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "active_plugins".
ERRORMaintainabilityfile system operations fopen10
- Category
- Maintainability
- Occurrences
- 10
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fopen().
WARNINGSecurityMissing nonce verification9
- Category
- Security
- Occurrences
- 9
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityLike Without Wildcards8
- Category
- Security
- Occurrences
- 8
- Severity
- warning
Sample message
Unless you are using SQL wildcards, using LIKE is inefficient. Use a straight compare instead. Found: LIKE 'product'.
WARNINGMaintainabilityDeprecated parameter: get_terms parameter 28
- Category
- Maintainability
- Occurrences
- 8
- Severity
- warning
Sample message
The parameter "$args" at position #2 of get_terms() has been deprecated since WordPress version 4.5.0. Instead do not pass the parameter.
ERRORI18nMissing Translators Comment8
- Category
- I18n
- Occurrences
- 8
- 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.
ERRORI18nNon Singular String Literal Text8
- Category
- I18n
- Occurrences
- 8
- Severity
- error
Sample message
The $text parameter must be a single text string literal. Found: $att->label
WARNINGSecurityInput is not validated7
- Category
- Security
- Occurrences
- 7
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_FILES['file']['tmp_name']. Check that the array index exists before using it.
External Connections
Potential connections found in static code analysis.
Outbound calls
37
External assets
0
Incoming endpoints
24
Notable Domains
Platform / Reference Domains
External Asset Domains
No external asset domains detected.
Incoming Endpoints
register_rest_route
register_rest_route
register_rest_route
register_rest_route
register_rest_route
register_rest_route
Admin AJAX endpoints3
wp_ajax
wp_ajax
wp_ajax
Score History
First score snapshot
v2.4.37
23
Latest
- Findings
- 1,385
- Errors
- 386
- Warnings
- 999
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 23 | 1,385 | 386 | 999 | v2.4.37 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.