KD Submissions 1.0.8

Does KD Submissions work with WordPress 6.7.2 and PHP 8.1.12? A smoke test was performed on .

Summary

Errors
2PHP warnings
6PHP notices
1PHP deprecation warnings
7Database errors
No JavaScript exceptions
All test pages loaded successfully
No resource errors
Performance

Memory usage: 58.75 KiB
The average PHP memory usage increased by this amount after activating by the plugin.

Page speed impact: insignificant.
The plugin didn't make the site noticeably slower.

Environment
WordPress version6.7.2
PHP version8.1.12
MySQL version10.6.10
PHP memory limit512M
Plugin Info
Last updated
Active installs 90+
WordPress.org page https://wordpress.org/plugins/kd-submissions/
Badges

WordPress compatibility badge PHP compatibility badge

Get badge code

Pages 3

Plugins ‹ Test site — WordPress

Page screenshot: Plugins ‹ Test site — WordPress
URL /wp-admin/plugins.php?plugin_status=all&paged=1&s
Requested URL /wp-admin/plugins.php?action=activate&plugin=kd-submissions%2Fkd-submissions.php&plugin_status=all&paged=1&s&_wpnonce=c3d2cb0ae4
Aspect after-activation
HTTP status 200
Load time 0.490 s
Memory usage 3.56 MiB
JS errors None
Resource errors None

Pieteikumi

Page screenshot: Pieteikumi
URL /wp-admin/admin.php?page=pieteikumi
Aspect menu-item
HTTP status 200
Load time 0.219 s
Memory usage N/A
JS errors None
Resource errors None

Test site – Just another WordPress site

Page screenshot: Test site – Just another WordPress site
URL /
Aspect front-page
HTTP status 200
Load time 0.229 s
Memory usage 3.46 MiB
JS errors None
Resource errors None

Benchmark

URL Load time Memory usage
Inactive Active Change Inactive Active Change
/wp-admin/index.php0.483 s0.275 s-0.208 s3.48 MiB3.55 MiB+ 74.56 KiB
/wp-admin/edit.php0.292 s0.220 s-0.072 s3.54 MiB3.6 MiB+ 56.44 KiB
/wp-admin/post-new.php0.788 s1.096 s+0.308 s5.93 MiB6 MiB+ 78.82 KiB
/wp-admin/upload.php0.610 s0.331 s-0.279 s3.5 MiB3.55 MiB+ 55.69 KiB
/wp-admin/options-writing.php0.212 s0.200 s-0.012 s3.47 MiB3.53 MiB+ 59.68 KiB
/wp-admin/media-new.php0.280 s0.231 s-0.049 s3.46 MiB3.53 MiB+ 67.88 KiB
/wp-admin/edit-tags.php?taxonomy=category0.174 s0.186 s+0.012 s3.48 MiB3.55 MiB+ 78.55 KiB
/wp-admin/post-new.php?post_type=page1.045 s0.979 s-0.066 s5.92 MiB5.99 MiB+ 74.35 KiB
/wp-admin/options-discussion.php0.289 s0.281 s-0.008 s3.48 MiB3.53 MiB+ 56.18 KiB
/wp-admin/edit-comments.php0.251 s0.223 s-0.028 s3.5 MiB3.55 MiB+ 55.68 KiB
/0.443 s0.226 s-0.217 s3.47 MiB3.46 MiB- 11.54 KiB
Average 0.442 s0.386 s-0.056 s3.93 MiB3.99 MiB+ 58.75 KiB

Code Statistics

Note: Third-party libraries and minified JS/CSS files are excluded from these statistics where possible, so the numbers you see here may be lower than those reported by other tools.

PHP
JavaScript
CSS
Language % Lines of code Comment lines Files
PHP37.9%1,7521895
JavaScript32.7%1,5132073
CSS27.3%1,262481
Markdown1.6%7201
SVG0.5%2317
Total 4,622 445 17

PHP Code Analysis | More results »

Lines of code 1,326
Total complexity 139
Median class complexity 0.0
Median method complexity 0.0
Most complex class
Most complex function keyd_get_dashboard_stats()
Classes 0
Methods 0
Functions 29

Additions

Things that the plugin adds to the site. This section is not intended to be comprehensive. The test tool only looks for a few specific types of added content.

Database Tables 2

PHP Error Log 31 lines

[03-Apr-2025 21:30:56 UTC] PHP Notice:  Function wpdb::prepare was called <strong>incorrectly</strong>. The query argument of wpdb::prepare() must have a placeholder. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 3.9.0.) in /wp-includes/functions.php on line 6114
[03-Apr-2025 21:30:56 UTC] PHP Deprecated:  strtoupper(): Passing null to parameter #1 ($string) of type string is deprecated in /wp-content/plugins/kd-submissions/kd-submissions.php on line 1094
[03-Apr-2025 21:30:56 UTC] WordPress database error Table 'wordpress.wp_e_submissions' doesn't exist for query ALTER TABLE wp_e_submissions ENGINE=InnoDB made by activate_plugin, do_action('activate_kd-submissions/kd-submissions.php'), WP_Hook->do_action, WP_Hook->apply_filters, keyd_submissions_update_database_schema, keyd_ensure_innodb
[03-Apr-2025 21:30:56 UTC] WordPress database error Can't create table `wordpress`.`wp_submission_comments` (errno: 150 "Foreign key constraint is incorrectly formed") for query CREATE TABLE IF NOT EXISTS wp_submission_comments (
        id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
        submission_id BIGINT(20) UNSIGNED NOT NULL,
        comment TEXT NOT NULL,
        created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
        PRIMARY KEY (id),
        FOREIGN KEY (submission_id) REFERENCES wp_e_submissions(id) ON DELETE CASCADE
    ) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci made by activate_plugin, do_action('activate_kd-submissions/kd-submissions.php'), WP_Hook->do_action, WP_Hook->apply_filters, keyd_submissions_update_database_schema, dbDelta
[03-Apr-2025 21:30:56 UTC] WordPress database error Can't create table `wordpress`.`wp_submission_statuses` (errno: 150 "Foreign key constraint is incorrectly formed") for query CREATE TABLE IF NOT EXISTS wp_submission_statuses (
        id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
        submission_id BIGINT(20) UNSIGNED NOT NULL,
        status_id BIGINT(20) UNSIGNED NOT NULL,
        PRIMARY KEY (id),
        UNIQUE (submission_id, status_id),
        FOREIGN KEY (submission_id) REFERENCES wp_e_submissions(id) ON DELETE CASCADE,
        FOREIGN KEY (status_id) REFERENCES wp_statuses(id) ON DELETE CASCADE
    ) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci made by activate_plugin, do_action('activate_kd-submissions/kd-submissions.php'), WP_Hook->do_action, WP_Hook->apply_filters, keyd_submissions_update_database_schema, dbDelta
[03-Apr-2025 21:30:56 UTC] PHP Notice:  Function wpdb::prepare was called <strong>incorrectly</strong>. The query argument of wpdb::prepare() must have a placeholder. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 3.9.0.) in /wp-includes/functions.php on line 6114
[03-Apr-2025 21:30:56 UTC] PHP Notice:  Function wpdb::prepare was called <strong>incorrectly</strong>. The query argument of wpdb::prepare() must have a placeholder. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 3.9.0.) in /wp-includes/functions.php on line 6114
[03-Apr-2025 21:30:56 UTC] WordPress database error Table 'wordpress.wp_e_submissions' doesn't exist for query ALTER TABLE wp_e_submissions CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci made by activate_plugin, do_action('activate_kd-submissions/kd-submissions.php'), WP_Hook->do_action, WP_Hook->apply_filters, keyd_submissions_update_database_schema, keyd_set_default_collation
[03-Apr-2025 21:30:56 UTC] PHP Notice:  Function wpdb::prepare was called <strong>incorrectly</strong>. The query argument of wpdb::prepare() must have a placeholder. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 3.9.0.) in /wp-includes/functions.php on line 6114
[03-Apr-2025 21:30:56 UTC] WordPress database error Table 'wordpress.wp_e_submissions_values' doesn't exist for query ALTER TABLE wp_e_submissions_values CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci made by activate_plugin, do_action('activate_kd-submissions/kd-submissions.php'), WP_Hook->do_action, WP_Hook->apply_filters, keyd_submissions_update_database_schema, keyd_set_default_collation
[03-Apr-2025 21:30:56 UTC] PHP Notice:  Function wpdb::prepare was called <strong>incorrectly</strong>. The query argument of wpdb::prepare() must have a placeholder. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 3.9.0.) in /wp-includes/functions.php on line 6114
[03-Apr-2025 21:30:56 UTC] WordPress database error Table 'wordpress.wp_submission_statuses' doesn't exist for query ALTER TABLE wp_submission_statuses CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci made by activate_plugin, do_action('activate_kd-submissions/kd-submissions.php'), WP_Hook->do_action, WP_Hook->apply_filters, keyd_submissions_update_database_schema, keyd_set_default_collation
[03-Apr-2025 21:30:56 UTC] PHP Notice:  Function wpdb::prepare was called <strong>incorrectly</strong>. The query argument of wpdb::prepare() must have a placeholder. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 3.9.0.) in /wp-includes/functions.php on line 6114
[03-Apr-2025 21:30:56 UTC] WordPress database error Table 'wordpress.wp_submission_comments' doesn't exist for query ALTER TABLE wp_submission_comments CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci made by activate_plugin, do_action('activate_kd-submissions/kd-submissions.php'), WP_Hook->do_action, WP_Hook->apply_filters, keyd_submissions_update_database_schema, keyd_set_default_collation
[03-Apr-2025 21:30:57 UTC] PHP Warning:  Cannot modify header information - headers already sent by (output started at /wp-includes/script-loader.php:2938) in /wp-includes/pluggable.php on line 1435
[03-Apr-2025 21:30:57 UTC] PHP Warning:  Cannot modify header information - headers already sent by (output started at /wp-includes/script-loader.php:2938) in /wp-includes/pluggable.php on line 1438
See also: All tests for this plugin