WordPress's most reliable, easy to use and feature-rich video player. Supports responsive design, HTML5, playlists, ads, stats, Vimeo and YouTube.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
1,595
10 issue groups
Maintainability
810
11 issue groups
I18n
181
4 issue groups
ERRORSecurityOutput Not EscapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<p>Post $post_id done, removing from queue!</p>\n"'.433
- Category
- Security
- Occurrences
- 433
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<p>Post $post_id done, removing from queue!</p>\n"'.
ERRORSecurityUnsafe Printing FunctionAll output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.336
- Category
- Security
- Occurrences
- 336
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
WARNINGSecurityMissing Unslash$_COOKIE[$cookie_name] not unslashed before sanitization. Use wp_unslash() or similar155
- Category
- Security
- Occurrences
- 155
- Severity
- warning
Sample message
$_COOKIE[$cookie_name] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGSecurityInput Not SanitizedDetected usage of a non-sanitized input variable: $_COOKIE[$cookie_name]145
- Category
- Security
- Occurrences
- 145
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_COOKIE[$cookie_name]
WARNINGMaintainabilityNon Prefixed Function FoundFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "FV_Player_Bunny_Stream".143
- Category
- Maintainability
- Occurrences
- 143
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "FV_Player_Bunny_Stream".
WARNINGSecurityRecommendedProcessing form data without nonce verification.140
- Category
- Security
- Occurrences
- 140
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityNon Prefixed Hookname FoundHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'fv_flowplayer_buttons_'.$key".127
- Category
- Maintainability
- Occurrences
- 127
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'fv_flowplayer_buttons_'.$key".
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.120
- Category
- Maintainability
- Occurrences
- 120
- 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().115
- Category
- Maintainability
- Occurrences
- 115
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
ERRORSecurityNot PreparedUse placeholders and $wpdb->prepare(); found $actual_video_ids109
- Category
- Security
- Occurrences
- 109
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $actual_video_ids
Show 15 moreShow less
WARNINGSecurityMissing109
- Category
- Security
- Occurrences
- 109
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityNon Prefixed Variable Found95
- Category
- Maintainability
- Occurrences
- 95
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$FV_Player_Checker".
ERRORI18nText Domain Mismatch93
- Category
- I18n
- Occurrences
- 93
- Severity
- error
Sample message
Mismatched text domain. Expected 'fv-wordpress-flowplayer' but got 'bbpress'.
WARNINGSecurityInput Not Validated79
- Category
- Security
- Occurrences
- 79
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_GET['fv-email-export']. Check that the array index exists before using it.
WARNINGMaintainabilityNon Prefixed Class Found59
- Category
- Maintainability
- Occurrences
- 59
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "FV_Player_BunnyCDN_Rewrite".
WARNINGSecurityInterpolated Not Prepared52
- Category
- Security
- Occurrences
- 52
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $date_query at " $date_query ORDER BY post_modified_gmt DESC LIMIT 1"
ERRORMaintainabilitydate date50
- Category
- Maintainability
- Occurrences
- 50
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
ERRORMaintainabilitycurl curl setopt40
- Category
- Maintainability
- Occurrences
- 40
- Severity
- error
Sample message
Using cURL functions is highly discouraged. Use wp_remote_get() instead.
ERRORI18nMissing Arg Domain39
- Category
- I18n
- Occurrences
- 39
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
ERRORSecurityUnescaped DBParameter37
- Category
- Security
- Occurrences
- 37
- Severity
- error
Sample message
Unescaped parameter $actual_video_ids used in $wpdb->get_results()\n$actual_video_ids assigned unsafely at line 611.
ERRORI18nMissing Translators Comment26
- Category
- I18n
- Occurrences
- 26
- 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.
ERRORMaintainabilitystrip tags strip tags24
- Category
- Maintainability
- Occurrences
- 24
- Severity
- error
Sample message
strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.
ERRORI18nNon Singular String Literal Domain23
- Category
- I18n
- Occurrences
- 23
- Severity
- error
Sample message
The $domain parameter must be a single text string literal. Found: $translation_domain
WARNINGMaintainabilityslow db query meta key20
- Category
- Maintainability
- Occurrences
- 20
- Severity
- warning
Sample message
Detected usage of meta_key, possible slow query.
ERRORMaintainabilitywp function not compatible with requires wp17
- Category
- Maintainability
- Occurrences
- 17
- Severity
- error
Sample message
Function "get_the_post_thumbnail_url()" requires WordPress 4.4.0, but your plugin minimum supported version is WordPress 3.5.0.
Score History
First score snapshot
v7.5.51.7212
23
Latest
- Findings
- 2,765
- Errors
- 1,311
- Warnings
- 1,454
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 23 | 2,765 | 1,311 | 1,454 | v7.5.51.7212 | 2.0.0 |