Salon Booking System – Free Version

Appointment scheduling plugin for salons, spas, and wellness centers to streamline bookings and improve customer satisfaction.

v10.30.31Dimitri GrassiUpdated Added 3k+ installs88% rating0% support resolved
22
Score
650
Errors
619
Warnings
+0
Change

Category Scores

Security0
Repo81
Performance100
Maintainability0

Issues to Review

Prioritized issue groups from the latest Plugin Check scan

1,269 findings

Maintainability

1,036

17 issue groups

Security

190

7 issue groups

I18n

13

1 issue group

ERRORMaintainabilitymissing direct file access protectionPHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;248
Category
Maintainability
Occurrences
248
Severity
error

Sample message

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

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

Sample message

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

ERRORMaintainabilitywp function not compatible with requires wpFunction "current_datetime()" requires WordPress 5.3.0, but your plugin minimum supported version is WordPress 4.1.0.234
Category
Maintainability
Occurrences
234
Severity
error

Sample message

Function "current_datetime()" requires WordPress 5.3.0, but your plugin minimum supported version is WordPress 4.1.0.

ERRORSecurityOutput Not EscapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" - ID {$booking->getId()}: {$status_label} - <span class='"'.115
Category
Security
Occurrences
115
Severity
error

Sample message

All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" - ID {$booking->getId()}: {$status_label} - <span class='"'.

WARNINGMaintainabilityNon Prefixed Class FoundClasses declared by a theme/plugin should start with the theme/plugin prefix. Found: &quot;SLB_Discount_Helper_Booking&quot;.99
Category
Maintainability
Occurrences
99
Severity
warning

Sample message

Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: &quot;SLB_Discount_Helper_Booking&quot;.

WARNINGMaintainabilityNon Prefixed Hookname FoundHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: &quot;&#039;sln_attendant_notav_&#039;.$key&quot;.78
Category
Maintainability
Occurrences
78
Severity
warning

Sample message

Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: &quot;&#039;sln_attendant_notav_&#039;.$key&quot;.

WARNINGSecurityMissing Unslash$_GET[&#039;key&#039;] not unslashed before sanitization. Use wp_unslash() or similar25
Category
Security
Occurrences
25
Severity
warning

Sample message

$_GET[&#039;key&#039;] not unslashed before sanitization. Use wp_unslash() or similar

WARNINGSecurityInput Not SanitizedDetected usage of a non-sanitized input variable: $_POST[&#039;sln_debug_nonce&#039;]23
Category
Security
Occurrences
23
Severity
warning

Sample message

Detected usage of a non-sanitized input variable: $_POST[&#039;sln_debug_nonce&#039;]

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

Sample message

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

Show 15 more
WARNINGMaintainabilityerror log error log20
Category
Maintainability
Occurrences
20
Severity
warning

Sample message

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

WARNINGSecurityRecommended17
Category
Security
Occurrences
17
Severity
warning

Sample message

Processing form data without nonce verification.

WARNINGMaintainabilityNon Prefixed Namespace Found16
Category
Maintainability
Occurrences
16
Severity
warning

Sample message

Namespaces declared by a theme/plugin should start with the theme/plugin prefix. Found: &quot;SLB_API\Controller&quot;.

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

ERRORMaintainabilitydate date10
Category
Maintainability
Occurrences
10
Severity
error

Sample message

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

WARNINGMaintainabilityerror log print r10
Category
Maintainability
Occurrences
10
Severity
warning

Sample message

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

WARNINGMaintainabilityNon Prefixed Function Found9
Category
Maintainability
Occurrences
9
Severity
warning

Sample message

Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: &quot;create_test_booking_builder&quot;.

ERRORMaintainabilityrand rand8
Category
Maintainability
Occurrences
8
Severity
error

Sample message

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

ERRORMaintainabilityapplication detected8
Category
Maintainability
Occurrences
8
Severity
error

Sample message

Application files are not permitted.

WARNINGMaintainabilityslow db query meta query7
Category
Maintainability
Occurrences
7
Severity
warning

Sample message

Detected usage of meta_query, possible slow query.

WARNINGMaintainabilitySchema Change6
Category
Maintainability
Occurrences
6
Severity
warning

Sample message

Attempting a database schema change is discouraged.

WARNINGSecurityInput Not Validated4
Category
Security
Occurrences
4
Severity
warning

Sample message

Detected usage of a possibly undefined superglobal array index: $_POST[&#039;bookingId&#039;]. Check that the array index exists before using it.

ERRORMaintainabilitystrip tags strip tags4
Category
Maintainability
Occurrences
4
Severity
error

Sample message

strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.

ERRORSecurityUnescaped DBParameter3
Category
Security
Occurrences
3
Severity
error

Sample message

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

WARNINGSecurityInterpolated Not Prepared3
Category
Security
Occurrences
3
Severity
warning

Sample message

Use placeholders and $wpdb-&gt;prepare(); found interpolated variable {$index_name} at CREATE INDEX {$index_name}\n

Score History

First score snapshot

v10.30.31

22

Latest

Findings
1,269
Errors
650
Warnings
619
Check
2.0.0

Related Plugins