KD Submissions 1.0.7

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: 28.34 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=387dca7bb6
Aspect after-activation
HTTP status 200
Load time 0.384 s
Memory usage 3.53 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.117 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.176 s
Memory usage 3.45 MiB
JS errors None
Resource errors None

Benchmark

URL Load time Memory usage
Inactive Active Change Inactive Active Change
/wp-admin/index.php0.329 s0.296 s-0.033 s3.48 MiB3.52 MiB+ 41.2 KiB
/wp-admin/edit.php0.199 s0.198 s-0.001 s3.54 MiB3.58 MiB+ 41.3 KiB
/wp-admin/post-new.php0.783 s0.644 s-0.139 s5.93 MiB5.97 MiB+ 45.63 KiB
/wp-admin/upload.php0.777 s0.489 s-0.288 s3.5 MiB3.52 MiB+ 22.33 KiB
/wp-admin/options-writing.php0.235 s0.189 s-0.046 s3.47 MiB3.5 MiB+ 26.32 KiB
/wp-admin/media-new.php0.295 s0.243 s-0.052 s3.46 MiB3.5 MiB+ 34.52 KiB
/wp-admin/edit-tags.php?taxonomy=category0.207 s0.195 s-0.012 s3.48 MiB3.52 MiB+ 45.18 KiB
/wp-admin/post-new.php?post_type=page0.763 s0.586 s-0.177 s5.92 MiB5.96 MiB+ 41.16 KiB
/wp-admin/options-discussion.php0.295 s0.225 s-0.070 s3.48 MiB3.5 MiB+ 22.82 KiB
/wp-admin/edit-comments.php0.425 s0.178 s-0.247 s3.5 MiB3.52 MiB+ 22.32 KiB
/0.367 s0.162 s-0.205 s3.48 MiB3.45 MiB- 31.08 KiB
Average 0.425 s0.310 s-0.115 s3.93 MiB3.96 MiB+ 28.34 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
PHP34.6%1,1041154
JavaScript31.8%1,0141052
CSS30.8%982331
Markdown2.2%7001
SVG0.7%2317
Total 3,193 254 15

PHP Code Analysis | More results »

Lines of code 860
Total complexity 97
Median class complexity 0.0
Median method complexity 0.0
Most complex class
Most complex function keyd_filter_submissions_by_form()
Classes 0
Methods 0
Functions 26

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

[19-Feb-2025 16:09:21 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
[19-Feb-2025 16:09:21 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 1018
[19-Feb-2025 16:09:21 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
[19-Feb-2025 16:09:21 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
[19-Feb-2025 16:09:21 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
[19-Feb-2025 16:09:21 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
[19-Feb-2025 16:09:21 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
[19-Feb-2025 16:09:21 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
[19-Feb-2025 16:09:21 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
[19-Feb-2025 16:09:21 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
[19-Feb-2025 16:09:21 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
[19-Feb-2025 16:09:21 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
[19-Feb-2025 16:09:21 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
[19-Feb-2025 16:09:21 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
[19-Feb-2025 16:09:23 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
[19-Feb-2025 16:09:23 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