Hi,
The plugin does not allow to add any record because there was an problem with the table creation.
Please you this SQL query to create the table in your database:
CREATE TABLE IF NOT EXISTS `#__hikaserial_consumer` (
`consumer_id` INT(10) NOT NULL AUTO_INCREMENT,
`consumer_type` VARCHAR(255) NOT NULL,
`consumer_published` INT(4) NOT NULL DEFAULT 0,
`consumer_name` VARCHAR(255) NOT NULL,
`consumer_ordering` INT(10) NOT NULL DEFAULT 0,
`consumer_description` TEXT NOT NULL DEFAULT '',
`consumer_params` TEXT NOT NULL DEFAULT '',
`consumer_access` VARCHAR(255) NOT NULL DEFAULT 'all',
PRIMARY KEY (`consumer_id`)
) ENGINE=MyISAM;
You can use your favorite database manager (like PhpMyAdmin) and replace
#__hikaserial_consumer with your table prefix, like
jos_hikaserial_consumer (if the table prefix is "jos").
Otherwise, you can use the special HikaSerial database page (which require super admin account).
administrator/index.php?option=com_hikaserial&ctrl=config&task=sql
Just past the SQL code (with #__) and click on apply. The table would be created and the consumer plugin could save his data.
The HikaSerial package has been updated, so for people who does not upgrade already, the problem would not appear.
Regards and sorry for the inconvenient.