WP Migrate Lite – Migration Made Easy

Migrate your database. Export full sites including media, themes, and plugins. Find and replace content with support for serialized data.

v2.7.9WP EngineUpdated Added 200k+ installs86% rating25% support resolved
23
Score
368
Errors
254
Warnings
+0
Change

Category Scores

Security0
Repo91
Performance98
Maintainability0

Issues to Review

Prioritized issue groups from the latest Plugin Check scan

622 findings

Security

311

12 issue groups

I18n

130

4 issue groups

Maintainability

107

9 issue groups

ERRORSecurityException output is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"WPMDB_Replace constructor expects '$key' key to be present in the array argument"'.82
Category
Security
Occurrences
82
Severity
error

Sample message

All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"WPMDB_Replace constructor expects '$key' key to be present in the array argument"'.

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.73
Category
I18n
Occurrences
73
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.

WARNINGSecurityMissing nonce verificationProcessing form data without nonce verification.45
Category
Security
Occurrences
45
Severity
warning

Sample message

Processing form data without nonce verification.

ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" $val\r\n"'.34
Category
Security
Occurrences
34
Severity
error

Sample message

All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" $val\r\n"'.

ERRORSecuritySQL query is not preparedUse placeholders and $wpdb->prepare(); found $alter_table_name33
Category
Security
Occurrences
33
Severity
error

Sample message

Use placeholders and $wpdb->prepare(); found $alter_table_name

ERRORI18nText Domain MismatchMismatched text domain. Expected 'wp-migrate-db' but got 'Ex. Remote URL: http://wp.dev'.32
Category
I18n
Occurrences
32
Severity
error

Sample message

Mismatched text domain. Expected 'wp-migrate-db' but got 'Ex. Remote URL: http://wp.dev'.

WARNINGSecurityRequest data is not unslashed$_GET['download'] not unslashed before sanitization. Use wp_unslash() or similar25
Category
Security
Occurrences
25
Severity
warning

Sample message

$_GET['download'] not unslashed before sanitization. Use wp_unslash() or similar

WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.24
Category
Maintainability
Occurrences
24
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().24
Category
Maintainability
Occurrences
24
Severity
warning

Sample message

Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().

WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_GET['download']23
Category
Security
Occurrences
23
Severity
warning

Sample message

Detected usage of a non-sanitized input variable: $_GET['download']

Show 15 more
WARNINGMaintainabilityNon-prefixed global variable19
Category
Maintainability
Occurrences
19
Severity
warning

Sample message

Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$class".

WARNINGSecurityInterpolated SQL is not prepared15
Category
Security
Occurrences
15
Severity
warning

Sample message

Use placeholders and $wpdb->prepare(); found interpolated variable $alter_table_name at "SHOW TABLES LIKE '$alter_table_name'"

WARNINGSecurityInput is not validated14
Category
Security
Occurrences
14
Severity
warning

Sample message

Detected usage of a possibly undefined superglobal array index: $_GET['download']. Check that the array index exists before using it.

ERRORI18nMissing Arg Domain14
Category
I18n
Occurrences
14
Severity
error

Sample message

Missing $domain parameter in function call to __().

WARNINGSecurityNonce verification recommended12
Category
Security
Occurrences
12
Severity
warning

Sample message

Processing form data without nonce verification.

WARNINGSecurityDatabase parameter is not escaped11
Category
Security
Occurrences
11
Severity
warning

Sample message

Unescaped parameter $alter_table_name used in $wpdb->get_results()\n$alter_table_name assigned unsafely at line 1877.

ERRORI18nUnordered Placeholders Text11
Category
I18n
Occurrences
11
Severity
error

Sample message

Multiple placeholders in translatable strings should be ordered. Expected "%1$1s, %2$2s", but got "%1s, %2s" in 'The imported table `%1s` contains characters which are invalid in the target schema.<br><br>If this is a WP Migrate export file, ensure that the `Compatible with older versions of MySQL` setting under `Advanced Options` is unchecked and try exporting again.<br><br> See <a href="%2s">our documentation</a> for more information.'.

ERRORSecurityDatabase parameter is not escaped10
Category
Security
Occurrences
10
Severity
error

Sample message

Unescaped parameter $query used in $wpdb->query()\n$query used without escaping.

WARNINGMaintainabilityerror log error log10
Category
Maintainability
Occurrences
10
Severity
warning

Sample message

error_log() found. Debug code should not normally be used in production.

ERRORMaintainabilityrand mt rand8
Category
Maintainability
Occurrences
8
Severity
error

Sample message

mt_rand() is discouraged. Use the far less predictable wp_rand() instead.

WARNINGMaintainabilityNon-prefixed hook name7
Category
Maintainability
Occurrences
7
Severity
warning

Sample message

Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: &quot;wp_migrate_db_cli_after_load&quot;.

ERRORSecurityUnsafe printing function7
Category
Security
Occurrences
7
Severity
error

Sample message

All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.

ERRORMaintainabilitydate date5
Category
Maintainability
Occurrences
5
Severity
error

Sample message

date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.

ERRORMaintainabilityfile system operations fclose5
Category
Maintainability
Occurrences
5
Severity
error

Sample message

File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fclose().

ERRORMaintainabilityfile system operations fopen5
Category
Maintainability
Occurrences
5
Severity
error

Sample message

File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fopen().

External Connections

Not analyzed yet.

Score History

First score snapshot

v2.7.9

23

Latest

Findings
622
Errors
368
Warnings
254
Check
2.0.0

Relationship Map

Author, categories, issues, domains, and nearby plugins.

29 nodes

Related Plugins

Machete

7k+ active installs

99
ACF Clone Repeater

1k+ active installs

98
Duplicate Widgets

3k+ active installs

98
BlogVault Backup & Staging

80k+ active installs

82