1. maik85
  2. RO CSVI
  3. Sunday, 10 January 2016
  4.  Subscribe via email
Hi,

I can't export vm category_name and category_desc. I've tried to update the available fields, but these are still missing for vm category export. For vm category import both fields are available. I've also tried to clear the available fileds database table and updated the fields again, but the result is the same. The fields are only for category import available, not for category export.

csvi pro 6.4.3
vm 3.0.12
J 3.4.8

Edit: I saw the same problem on product export. The fields like product name and product desc are not available for export, only for import.

Edit 2: It was an update from csvi pro 5.21.2. If I make a complete fresh install, all fields available. But in this case my old templates are gone and a restore of csvi 5 templates in csvi 6 are not possible, there are many errors. So any ideas?
Accepted Answer Pending Moderation
Hello,
You have two options to solve this issue. First option is
1. Update CSVI5 to CSVI 6, on maintainence tab, backup templates so you have them in CSVI6 format
2. Uninstall CSVI completely, do a fresh install of CSVI 6
3. On maintenance tab run the restore template using the file you backed up.

Another option is that you can delete the table csvi_availablefields table completely from phpmyadmin and run the below query so a new table is created and run the update available fields and that would solve the problem.

CREATE TABLE IF NOT EXISTS `#__csvi_availablefields` (
`csvi_availablefield_id` INT(11) NOT NULL AUTO_INCREMENT,
`csvi_name` VARCHAR(255) NOT NULL,
`component_name` VARCHAR(55) NOT NULL,
`component_table` VARCHAR(55) NOT NULL,
`component` VARCHAR(55) NOT NULL,
`action` VARCHAR(6) NOT NULL,
`isprimary` TINYINT(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`csvi_availablefield_id`),
UNIQUE INDEX `component_name_table` (`component_name`, `component_table`, `component`, `action`)
) CHARSET=utf8 COMMENT='Available fields for CSVI'";
Kind regards,

Tharuna

=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
  1. more than a month ago
  2. RO CSVI
  3. # 1
  • Page :
  • 1


There are no replies made for this post yet.
Be one of the first to reply to this post!