Hello @seannevo ,
Thank you for reaching out.
Could you please share a screenshot of the database errors you’re seeing? This will help us better understand the issue and provide guidance to resolve it. You can upload the screenshot in snipboard or any other online site for screenshot sharing and share the generated link here.
Looking forward to your reply.
Best regards,
Hi Sunjida, thanks for the reply. I did include a screenshot in my original post, can you not see it? Here’s a Snipboard link https://snipboard.io/npeGOb.jpg
Hello @seannevo ,
It seems that some tables, such as wp_tutor_cart_items, were not created in your database.
Please check your database engine , it should be set to InnoDB for Tutor LMS to properly create all necessary tables.
If your database engine is different, kindly change it to InnoDB and then reinstall Tutor LMS. This should resolve the issue.
Otherwise you can create the table by run the following query on your database and check if the issue resolved or not.
CREATE TABLE IF NOT EXISTS wp_tutor_cart_items (
id bigint(20) unsigned NOT NULL AUTO_INCREMENT,
cart_id bigint(20) unsigned NOT NULL,
course_id bigint(20) unsigned NOT NULL,
item_type varchar(255) DEFAULT NULL,
item_details json DEFAULT NULL,
PRIMARY KEY (id),
KEY cart_id (cart_id),
KEY course_id (course_id)
);
Regards,
Sunjida