FileBird – WordPress Media Library Folders & File Manager

Organize thousands of WordPress media files in folders / categories with ease.

v6.5.5Ninja TeamUpdated Added 200k+ installs94% rating71% support resolved
24
Score
239
Errors
377
Warnings
+0
Change

Category Scores

Security0
Repo94
Performance95
Maintainability3

Issues to Review

Prioritized issue groups from the latest Plugin Check scan

616 findings

Maintainability

490

15 issue groups

Security

109

8 issue groups

I18n

7

1 issue group

Performance

2

1 issue group

ERRORMaintainabilitywp function not compatible with requires wpFunction "determine_locale()" requires WordPress 5.0.0, but your plugin minimum supported version is WordPress 3.0.0.168
Category
Maintainability
Occurrences
168
Severity
error

Sample message

Function "determine_locale()" requires WordPress 5.0.0, but your plugin minimum supported version is WordPress 3.0.0.

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

Sample message

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

WARNINGMaintainabilityNon Prefixed Hookname FoundHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "dokan_forced_load_scripts".73
Category
Maintainability
Occurrences
73
Severity
warning

Sample message

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

WARNINGMaintainabilityNon Prefixed Variable FoundGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$globs".43
Category
Maintainability
Occurrences
43
Severity
warning

Sample message

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

ERRORSecurityNot PreparedUse placeholders and $wpdb->prepare(); found $cleanQuery39
Category
Security
Occurrences
39
Severity
error

Sample message

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

WARNINGSecurityRecommendedProcessing form data without nonce verification.16
Category
Security
Occurrences
16
Severity
warning

Sample message

Processing form data without nonce verification.

ERRORSecurityUnescaped DBParameterUnescaped parameter $author used in $wpdb->query()\n$author used without escaping.14
Category
Security
Occurrences
14
Severity
error

Sample message

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

WARNINGSecurityMissing Unslash$_GET['breakdance_wpuiforbuilder_media'] not unslashed before sanitization. Use wp_unslash() or similar12
Category
Security
Occurrences
12
Severity
warning

Sample message

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

WARNINGSecurityInterpolated Not PreparedUse placeholders and $wpdb->prepare(); found interpolated variable $postStatuses at INNER JOIN $wpdb->posts as posts ON posts.ID = term_relationships.object_id AND (posts.post_status IN ($postStatuses)) AND posts.post_type = %s\n10
Category
Security
Occurrences
10
Severity
warning

Sample message

Use placeholders and $wpdb->prepare(); found interpolated variable $postStatuses at INNER JOIN $wpdb->posts as posts ON posts.ID = term_relationships.object_id AND (posts.post_status IN ($postStatuses)) AND posts.post_type = %s\n

Show 15 more issue groups
WARNINGSecurityUnescaped DBParameter8
Category
Security
Occurrences
8
Severity
warning

Sample message

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

WARNINGSecurityInput Not Sanitized7
Category
Security
Occurrences
7
Severity
warning

Sample message

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

ERRORI18nMissing Translators Comment7
Category
I18n
Occurrences
7
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.

WARNINGMaintainabilityslow db query meta key5
Category
Maintainability
Occurrences
5
Severity
warning

Sample message

Detected usage of meta_key, possible slow query.

WARNINGMaintainabilityNon Prefixed Class Found4
Category
Maintainability
Occurrences
4
Severity
warning

Sample message

Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "YayMailWCSettingsBanner".

WARNINGMaintainabilityslow db query meta value3
Category
Maintainability
Occurrences
3
Severity
warning

Sample message

Detected usage of meta_value, possible slow query.

WARNINGMaintainabilityerror log error log3
Category
Maintainability
Occurrences
3
Severity
warning

Sample message

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

ERRORSecurityOutput Not Escaped3
Category
Security
Occurrences
3
Severity
error

Sample message

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

WARNINGMaintainabilitySchema Change2
Category
Maintainability
Occurrences
2
Severity
warning

Sample message

Attempting a database schema change is discouraged.

WARNINGMaintainabilityslow db query meta query2
Category
Maintainability
Occurrences
2
Severity
warning

Sample message

Detected usage of meta_query, possible slow query.

ERRORMaintainabilitydate date2
Category
Maintainability
Occurrences
2
Severity
error

Sample message

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

WARNINGPerformancePost Not In post not in2
Category
Performance
Occurrences
2
Severity
warning

Sample message

Using exclusionary parameters, like post__not_in, in calls to get_posts() should be done with caution, see https://wpvip.com/documentation/performance-improvements-by-removing-usage-of-post__not_in/ for more information.

ERRORMaintainabilitymissing direct file access protection2
Category
Maintainability
Occurrences
2
Severity
error

Sample message

PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;

WARNINGMaintainabilityNon Prefixed Constant Found1
Category
Maintainability
Occurrences
1
Severity
warning

Sample message

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

ERRORMaintainabilityfile system operations fclose1
Category
Maintainability
Occurrences
1
Severity
error

Sample message

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

Score History

First score snapshot

v6.5.5

24

Latest

Findings
616
Errors
239
Warnings
377
Check
2.0.0

Related Plugins