Backup Migration

Backup, migrate, and create staging sites with free cloud storage and support.

v2.1.6InisevUpdated Added 80k+ installs98% rating73% support resolved
21
Score
981
Errors
1,093
Warnings
+0
Change

Category Scores

Security0
Repo75
Performance100
Maintainability0

Issues to Review

Prioritized issue groups from the latest Plugin Check scan

2,074 findings

Maintainability

1,492

18 issue groups

Security

173

5 issue groups

I18n

171

2 issue groups

WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$BMI::RESPONSE::SENT".327
Category
Maintainability
Occurrences
327
Severity
warning

Sample message

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

ERRORMaintainabilityunlink unlinkunlink() is discouraged. Use wp_delete_file() to delete a file.237
Category
Maintainability
Occurrences
237
Severity
error

Sample message

unlink() is discouraged. Use wp_delete_file() to delete a file.

WARNINGMaintainabilityNon-prefixed namespaceNamespaces declared by a theme/plugin should start with the theme/plugin prefix. Found: "BMI\Plugin".133
Category
Maintainability
Occurrences
133
Severity
warning

Sample message

Namespaces declared by a theme/plugin should start with the theme/plugin prefix. Found: "BMI\Plugin".

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

WARNINGMaintainabilityNon-prefixed constantGlobal constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "BASE_PATH".90
Category
Maintainability
Occurrences
90
Severity
warning

Sample message

Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "BASE_PATH".

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

Sample message

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

ERRORMaintainabilityfile system operations fwriteFile operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fwrite().60
Category
Maintainability
Occurrences
60
Severity
error

Sample message

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

ERRORI18nUnordered Placeholders TextMultiple placeholders in translatable strings should be ordered. Expected "%1$d, %2$g, %3$G, %4$h, %5$H, %6$s, %7$h, %8$d", but got "%d, %g, %G, %h, %H, %s, %h, %d" in 'Invalid % character used. Only these are allowed: %Y, %M, %D, %d, %j, %m, %n, %y, %a, %A, %B, %g, %G, %h, %H, %i, %s, %hash, %domain'.58
Category
I18n
Occurrences
58
Severity
error

Sample message

Multiple placeholders in translatable strings should be ordered. Expected "%1$d, %2$g, %3$G, %4$h, %5$H, %6$s, %7$h, %8$d", but got "%d, %g, %G, %h, %H, %s, %h, %d" in 'Invalid % character used. Only these are allowed: %Y, %M, %D, %d, %j, %m, %n, %y, %a, %A, %B, %g, %G, %h, %H, %i, %s, %hash, %domain'.

WARNINGMaintainabilityNon-prefixed hook nameHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "bmi_ajax_offline".57
Category
Maintainability
Occurrences
57
Severity
warning

Sample message

Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "bmi_ajax_offline".

Show 15 more
ERRORMaintainabilityfile system operations fclose55
Category
Maintainability
Occurrences
55
Severity
error

Sample message

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

ERRORMaintainabilityfile system operations touch54
Category
Maintainability
Occurrences
54
Severity
error

Sample message

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

ERRORMaintainabilityfile system operations fopen52
Category
Maintainability
Occurrences
52
Severity
error

Sample message

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

ERRORMaintainabilitycurl curl setopt48
Category
Maintainability
Occurrences
48
Severity
error

Sample message

Using cURL functions is highly discouraged. Use wp_remote_get() instead.

ERRORMaintainabilityfile system operations mkdir48
Category
Maintainability
Occurrences
48
Severity
error

Sample message

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

WARNINGSecurityDatabase parameter is not escaped47
Category
Security
Occurrences
47
Severity
warning

Sample message

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

WARNINGMaintainabilityerror log error log47
Category
Maintainability
Occurrences
47
Severity
warning

Sample message

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

ERRORMaintainabilitydate date45
Category
Maintainability
Occurrences
45
Severity
error

Sample message

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

WARNINGMaintainabilityDiscouraged PHP function44
Category
Maintainability
Occurrences
44
Severity
warning

Sample message

The use of function ini_set() is discouraged

WARNINGSecurityRequest data is not unslashed42
Category
Security
Occurrences
42
Severity
warning

Sample message

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

WARNINGMaintainabilityerror log print r41
Category
Maintainability
Occurrences
41
Severity
warning

Sample message

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

WARNINGSecurityMissing nonce verification37
Category
Security
Occurrences
37
Severity
warning

Sample message

Processing form data without nonce verification.

ERRORMaintainabilityrename rename26
Category
Maintainability
Occurrences
26
Severity
error

Sample message

rename() is discouraged. Use WP_Filesystem::move() to rename a file.

WARNINGSecurityInput is not sanitized24
Category
Security
Occurrences
24
Severity
warning

Sample message

Detected usage of a non-sanitized input variable: $_FILES['file_data']

ERRORSecuritySQL query is not prepared23
Category
Security
Occurrences
23
Severity
error

Sample message

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

External Connections

Not analyzed yet.

Score History

First score snapshot

v2.1.6

21

Latest

Findings
2,074
Errors
981
Warnings
1,093
Check
2.0.0

Relationship Map

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

29 nodes

Related Plugins