The error tells you what is wrong and it is not the module.
This is the table missing:
Use phpmyadmin and import the above into your sentora_core DB.
You may also be missing other tables too.
Full default SQL: https://github.com/sentora/sentora-insta...a_core.sql
Do NOT import the entire file! Just the parts that are missing!
Make a backup first!
Quote:Table 'sentora_core.x_distlist` doesn't exist.You have issues with your installation.
This is the table missing:
Code:
/*Table structure for table `x_distlists` */
DROP TABLE IF EXISTS `x_distlists`;
CREATE TABLE `x_distlists` (
`dl_id_pk` int(6) unsigned NOT NULL AUTO_INCREMENT,
`dl_acc_fk` int(6) DEFAULT NULL,
`dl_address_vc` varchar(255) DEFAULT NULL,
`dl_created_ts` int(30) DEFAULT NULL,
`dl_deleted_ts` int(30) DEFAULT NULL,
PRIMARY KEY (`dl_id_pk`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
You may also be missing other tables too.
Full default SQL: https://github.com/sentora/sentora-insta...a_core.sql
Do NOT import the entire file! Just the parts that are missing!
Make a backup first!