[10-Oct-2025 16:40:23 UTC] PHP Warning:  Cannot modify header information - headers already sent by (output started at /home/ninjatech/public_html/lms_chameleon_associates/wp-content/plugins/sfwd-lms/vendor-prefixed/stellarwp/telemetry/src/views/optin.php:9) in /home/ninjatech/public_html/lms_chameleon_associates/wp-admin/admin-header.php on line 14
[10-Oct-2025 16:40:23 UTC] PHP Warning:  Cannot modify header information - headers already sent by (output started at /home/ninjatech/public_html/lms_chameleon_associates/wp-content/plugins/sfwd-lms/vendor-prefixed/stellarwp/telemetry/src/views/optin.php:9) in /home/ninjatech/public_html/lms_chameleon_associates/wp-includes/option.php on line 1740
[10-Oct-2025 16:40:23 UTC] PHP Warning:  Cannot modify header information - headers already sent by (output started at /home/ninjatech/public_html/lms_chameleon_associates/wp-content/plugins/sfwd-lms/vendor-prefixed/stellarwp/telemetry/src/views/optin.php:9) in /home/ninjatech/public_html/lms_chameleon_associates/wp-includes/option.php on line 1741
[11-Oct-2025 11:44:38 UTC] ------------ Migrating and recalculating group seats-----------
[11-Oct-2025 11:44:38 UTC] ------------ End of migrating and recalculating total group seats-----------
[15-Oct-2025 12:55:12 UTC] WordPress database error Can't create table `ninjatech_lms_chameleon_associates`.`ca_uotincan_reporting` (errno: 150 "Foreign key constraint is incorrectly formed") for query CREATE TABLE ca_uotincan_reporting (
					`id`          BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
					`group_id`    BIGINT(20) UNSIGNED NULL DEFAULT NULL,
					`user_id`     BIGINT(20) UNSIGNED NOT NULL,
					`course_id`   BIGINT(20) UNSIGNED NULL DEFAULT NULL,
					`lesson_id`   BIGINT(20) UNSIGNED NULL DEFAULT NULL,
					`module`      VARCHAR(255),
					`module_name` VARCHAR(255),
					`target`      VARCHAR(255),
					`target_name` VARCHAR(255),
					`verb`        VARCHAR(50),
					`result`      INT(7),
					`minimum`     INT(7),
					`completion`  BOOL,
					`xstored`      DATETIME,

					PRIMARY KEY (`id`),
					CONSTRAINT `ca__fk_TinCanUser`   FOREIGN KEY(`user_id`)   REFERENCES ca_users(`ID`) ON UPDATE CASCADE ON DELETE CASCADE,
					CONSTRAINT `ca__fk_TinCanGroup`  FOREIGN KEY(`group_id`)  REFERENCES ca_posts(`ID`) ON UPDATE CASCADE ON DELETE CASCADE,
					CONSTRAINT `ca__fk_TinCanCourse` FOREIGN KEY(`course_id`) REFERENCES ca_posts(`ID`) ON UPDATE CASCADE ON DELETE CASCADE,
					CONSTRAINT `ca__fk_TinCanLesson` FOREIGN KEY(`lesson_id`) REFERENCES ca_posts(`ID`) ON UPDATE CASCADE ON DELETE CASCADE
				) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ENGINE=INNODB;  made by activate_plugin, plugin_sandbox_scrape, include_once('/plugins/tin-canny-learndash-reporting/tin-canny-learndash-reporting.php'), include_once('/plugins/tin-canny-learndash-reporting/src/uncanny-tincan/uncanny-tincan.php'), UCTINCAN\Init->__construct, UCTINCAN\Init->check_upgrade, UCTINCAN\Database->upgrade, call_user_func, UCTINCAN\Database->create_table_uotincan_reporting
[15-Oct-2025 12:55:12 UTC] WordPress database error Can't create table `ninjatech_lms_chameleon_associates`.`ca_uotincan_resume` (errno: 150 "Foreign key constraint is incorrectly formed") for query 
			CREATE TABLE ca_uotincan_resume (
			    `id`          BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
				`user_id`     BIGINT(20) UNSIGNED NOT NULL,
				`course_id`   BIGINT(20) UNSIGNED NULL DEFAULT NULL,
				`lesson_id`   BIGINT(20) UNSIGNED NULL DEFAULT NULL,
				`module_id`   BIGINT(20) NOT NULL,
				`state`       VARCHAR(50),
				`value`       TEXT,

			    PRIMARY KEY (`id`)
			,
			CONSTRAINT `ca__fk_Resume_User`   FOREIGN KEY(`user_id`)   REFERENCES ca_users(`ID`) ON UPDATE CASCADE ON DELETE CASCADE,
			CONSTRAINT `ca__fk_Resume_Module` FOREIGN KEY(`module_id`) REFERENCES ca_snc_file_info(`ID`) ON UPDATE CASCADE ON DELETE CASCADE
		) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ENGINE=INNODB; made by activate_plugin, plugin_sandbox_scrape, include_once('/plugins/tin-canny-learndash-reporting/tin-canny-learndash-reporting.php'), include_once('/plugins/tin-canny-learndash-reporting/src/uncanny-tincan/uncanny-tincan.php'), UCTINCAN\Init->__construct, UCTINCAN\Init->check_upgrade, UCTINCAN\Database->upgrade, call_user_func, UCTINCAN\Database->create_table_uotincan_resume
[15-Oct-2025 12:55:12 UTC] WordPress database error Can't create table `ninjatech_lms_chameleon_associates`.`ca_uotincan_quiz` (errno: 150 "Foreign key constraint is incorrectly formed") for query CREATE TABLE ca_uotincan_quiz (
					`id`          BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
					`group_id`    BIGINT(20) UNSIGNED NULL DEFAULT NULL,
					`user_id`     BIGINT(20) UNSIGNED NOT NULL,
					`course_id`   BIGINT(20) UNSIGNED NULL DEFAULT NULL,
					`lesson_id`   BIGINT(20) UNSIGNED NULL DEFAULT NULL,
					`module`      VARCHAR(255),
					`module_name` VARCHAR(255),
					`activity_id` VARCHAR(255),
					`activity_name` VARCHAR(255),
					`result`      INT(7),
					`max_score` DECIMAL(4,2) UNSIGNED NULL DEFAULT 0,
					`min_score` DECIMAL(4,2) UNSIGNED NULL DEFAULT 0,
					`raw_score` DECIMAL(4,2) UNSIGNED NULL DEFAULT 0,
					`scaled_score` DECIMAL(4,2) UNSIGNED NULL DEFAULT 0,
					`correct_response` VARCHAR(255),
					`available_responses` VARCHAR(255),
					`user_response` TEXT,
					`xstored`      DATETIME,
					`duration` INT(8) NOT NULL,

					PRIMARY KEY (`id`),
					CONSTRAINT `ca__fk_TinCanQuizUser`   FOREIGN KEY(`user_id`)   REFERENCES ca_users(`ID`) ON UPDATE CASCADE ON DELETE CASCADE,
					CONSTRAINT `ca__fk_TinCanQuizGroup`  FOREIGN KEY(`group_id`)  REFERENCES ca_posts(`ID`) ON UPDATE CASCADE ON DELETE CASCADE,
					CONSTRAINT `ca__fk_TinCanQuizCourse` FOREIGN KEY(`course_id`) REFERENCES ca_posts(`ID`) ON UPDATE CASCADE ON DELETE CASCADE,
					CONSTRAINT `ca__fk_TinCanQuizLesson` FOREIGN KEY(`lesson_id`) REFERENCES ca_posts(`ID`) ON UPDATE CASCADE ON DELETE CASCADE
				) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ENGINE=INNODB;  made by activate_plugin, plugin_sandbox_scrape, include_once('/plugins/tin-canny-learndash-reporting/tin-canny-learndash-reporting.php'), include_once('/plugins/tin-canny-learndash-reporting/src/uncanny-tincan/uncanny-tincan.php'), UCTINCAN\Init->__construct, UCTINCAN\Init->check_upgrade, UCTINCAN\Database->upgrade, call_user_func, UCTINCAN\Database->create_table_uotincan_quiz
[15-Oct-2025 15:20:05 UTC] PHP Warning:  Undefined array key "ldgr_enable_unlimited_members" in /home/ninjatech/public_html/lms_chameleon_associates/wp-content/plugins/ld-group-registration/modules/classes/class-ld-group-registration-unlimited-members.php on line 65
[15-Oct-2025 15:28:48 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/ninjatech/public_html/lms_chameleon_associates/wp-content/plugins/wdm-course-review/public/class-feedback-handler.php on line 415
[17-Oct-2025 11:34:45 UTC] PHP Warning:  Array to string conversion in /home/ninjatech/public_html/lms_chameleon_associates/wp-content/plugins/sfwd-lms/includes/settings/class-ld-settings-fields.php on line 741
