Use the WooCommerce Dropshipping Plugin for AliExpress to import products, reviews, set flexible pricing rules, and automate order fulfillment.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Maintainability
462
10 issue groups
Security
408
12 issue groups
I18n
365
3 issue groups
ERRORI18nText Domain MismatchMismatched text domain. Expected 'ali2woo-lite' but got "ali2woo".349
- Category
- I18n
- Occurrences
- 349
- Severity
- error
Sample message
Mismatched text domain. Expected 'ali2woo-lite' but got "ali2woo".
WARNINGMaintainabilityNon-prefixed namespaceNamespaces declared by a theme/plugin should start with the theme/plugin prefix. Found: "AliNext_Lite".161
- Category
- Maintainability
- Occurrences
- 161
- Severity
- warning
Sample message
Namespaces declared by a theme/plugin should start with the theme/plugin prefix. Found: "AliNext_Lite".
WARNINGSecurityMissing nonce verificationProcessing form data without nonce verification.120
- Category
- Security
- Occurrences
- 120
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_FILES[self::FIELD_FIELD_NO_AVATAR_PHOTO]76
- Category
- Security
- Occurrences
- 76
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_FILES[self::FIELD_FIELD_NO_AVATAR_PHOTO]
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.72
- Category
- Maintainability
- Occurrences
- 72
- 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().69
- Category
- Maintainability
- Occurrences
- 69
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGSecurityRequest data is not unslashed$_COOKIE[self::COOKIE_IMPORT_SORT] not unslashed before sanitization. Use wp_unslash() or similar62
- Category
- Security
- Occurrences
- 62
- Severity
- warning
Sample message
$_COOKIE[self::COOKIE_IMPORT_SORT] not unslashed before sanitization. Use wp_unslash() or similar
ERRORMaintainabilityMissing direct file access protectionPHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;61
- Category
- Maintainability
- Occurrences
- 61
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$alinext_lite".50
- Category
- Maintainability
- Occurrences
- 50
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$alinext_lite".
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<div class='error'><p>{$activationError}</p></div>"'.50
- Category
- Security
- Occurrences
- 50
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<div class='error'><p>{$activationError}</p></div>"'.
Show 15 moreShow less
WARNINGSecurityDatabase parameter is not escaped27
- Category
- Security
- Occurrences
- 27
- Severity
- warning
Sample message
Unescaped parameter $checkSql used in $wpdb->get_var()\n$checkSql assigned unsafely at line 252.
WARNINGMaintainabilityNon-prefixed hook name21
- Category
- Maintainability
- Occurrences
- 21
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "delete_attachment".
ERRORSecuritySQL query is not prepared20
- Category
- Security
- Occurrences
- 20
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $externalProductId
ERRORSecurityException output is not escaped20
- Category
- Security
- Occurrences
- 20
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$ApiResponse'.
WARNINGMaintainabilityerror log error log12
- Category
- Maintainability
- Occurrences
- 12
- Severity
- warning
Sample message
error_log() found. Debug code should not normally be used in production.
ERRORI18nMissing Translators Comment10
- Category
- I18n
- Occurrences
- 10
- 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.
WARNINGSecuritywp redirect wp redirect8
- Category
- Security
- Occurrences
- 8
- Severity
- warning
Sample message
wp_redirect() found. Using wp_safe_redirect(), along with the "allowed_redirect_hosts" filter if needed, can help avoid any chances of malicious redirects within code. It is also important to remember to call exit() after a redirect so that no other unwanted code is executed.
WARNINGSecurityInput is not validated8
- Category
- Security
- Occurrences
- 8
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_FILES[self::FIELD_FIELD_NO_AVATAR_PHOTO]['error']. Check that the array index exists before using it.
ERRORSecurityDatabase parameter is not escaped7
- Category
- Security
- Occurrences
- 7
- Severity
- error
Sample message
Unescaped parameter $oldVariationQuery used in $wpdb->get_col()\n$oldVariationQuery assigned unsafely at line 655.
WARNINGMaintainabilityerror log print r6
- Category
- Maintainability
- Occurrences
- 6
- Severity
- warning
Sample message
print_r() found. Debug code should not normally be used in production.
ERRORI18nMissing Arg Domain6
- Category
- I18n
- Occurrences
- 6
- Severity
- error
Sample message
Missing $domain parameter in function call to esc_html__().
WARNINGMaintainabilityNon-prefixed class5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "Constants".
ERRORSecurityUnsafe printing function5
- Category
- Security
- Occurrences
- 5
- Severity
- error
Sample message
All output should be run through an escaping function (like echo esc_html_x() or echo esc_attr_x()), found '_ex'.
WARNINGSecurityNonce verification recommended5
- Category
- Security
- Occurrences
- 5
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityNot In Footer5
- Category
- Maintainability
- Occurrences
- 5
- 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.
External Connections
Not analyzed yet.
Score History
First score snapshot
v3.7.0
25
Latest
- Findings
- 1,278
- Errors
- 550
- Warnings
- 728
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 25 | 1,278 | 550 | 728 | v3.7.0 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.