Hello,
I'm creating a new import but I need the mapping for the csv that I have to import.
I go to Field Mapper, I insert the file, I select the mappings and I save.
But when I go in the mapping listing I'm not seeing what I've done.
Any idea?
Thanks a lot,
Davide
Accepted Answer
Pending Moderation
Hello Davide,
Can you check if you see any error in Javascript console? You can use Firebug to analyse your problem and post the screenshot on what you see in firebug console.
Can you check if you see any error in Javascript console? You can use Firebug to analyse your problem and post the screenshot on what you see in firebug console.
Kind regards,
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Accepted Answer
Pending Moderation
Hi,
thank you for your prompt answer.
I'm attaching the screenshots.
Thanks,
Davide
thank you for your prompt answer.
I'm attaching the screenshots.
Thanks,
Davide
Attachments (2)
Accepted Answer
Pending Moderation
Hello,
Can you also post a screenshot of how you are mapping your fields in field mapper? And also post the full screenshot of firebug console. It would also be of great help if you can post a sample file to check.
Can you also post a screenshot of how you are mapping your fields in field mapper? And also post the full screenshot of firebug console. It would also be of great help if you can post a sample file to check.
Kind regards,
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Accepted Answer
Pending Moderation
Hello,
I tested field mapper with your file with same settings here and it went fine, there is nothing wrong i could see from your file except that ; at the end of each record. If there is no more fields you can remove it from the end of each rows. Please try to create a new field mapper template after that and let me know how it goes.
I tested field mapper with your file with same settings here and it went fine, there is nothing wrong i could see from your file except that ; at the end of each record. If there is no more fields you can remove it from the end of each rows. Please try to create a new field mapper template after that and let me know how it goes.
Kind regards,
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Accepted Answer
Pending Moderation
Hello,
just tested, but I have the same problem, anything is saved...
I'm going crazy!
just tested, but I have the same problem, anything is saved...
I'm going crazy!

Accepted Answer
Pending Moderation
Hello,
Can you send a private message of your Joomla administrator login details? I will check in your site directly.
Can you send a private message of your Joomla administrator login details? I will check in your site directly.
Kind regards,
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Accepted Answer
Pending Moderation
Hello Davide,
Thank you so much for sending the details. I checked your site for field mapper, there is actually no error in your field mapper and not even javascript error, the field mapper says its been saved. Can you go to your phpmyadmin>> select your database >> Look for table #__csvi_maps and #__csvi_mapheaders and see if you have rows in these tables?
Thank you so much for sending the details. I checked your site for field mapper, there is actually no error in your field mapper and not even javascript error, the field mapper says its been saved. Can you go to your phpmyadmin>> select your database >> Look for table #__csvi_maps and #__csvi_mapheaders and see if you have rows in these tables?
Kind regards,
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Accepted Answer
Pending Moderation
Hi,
Just checked and they are present.
How can I see them in the control panel?
Thanks a lot,
Davide
Just checked and they are present.
How can I see them in the control panel?
Thanks a lot,
Davide
Accepted Answer
Pending Moderation
Hello Davide,
If you see them in database then field mapper functionality has worked good. I am thinking if this could be something to do with your site cache. Can you try to clear the cache and check?
If you see them in database then field mapper functionality has worked good. I am thinking if this could be something to do with your site cache. Can you try to clear the cache and check?
Kind regards,
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Accepted Answer
Pending Moderation
Hello,
Is this a problem only with field mapper page? how about other pages? Can you test the templates page by creating a new template and check if you see it in the templates list?
Is this a problem only with field mapper page? how about other pages? Can you test the templates page by creating a new template and check if you see it in the templates list?
Kind regards,
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Accepted Answer
Pending Moderation
Hello,
Can you send me mysql database dump of your field mapper tables? The tables are #__csvi_maps and #__csvi_mapheaders. Please post it as a private message or email it to tharuna@csvimproved.com.
Can you send me mysql database dump of your field mapper tables? The tables are #__csvi_maps and #__csvi_mapheaders. Please post it as a private message or email it to tharuna@csvimproved.com.
Kind regards,
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Accepted Answer
Pending Moderation
Hello,
Thank you so much for sending the mysql dump, it really helped. I could see that three fields in #__csvi_maps table are missing in the sql dump file you sent. Not sure how it has gone missing. Can you go to your phpmyadmin and delete the tables #__csvi_maps and #__csvi_mapheaders? Then run the below query by pasting it on SQL tab in your phpmyadmin so new tables are created. You can then try to do a fresh field mapping of fields and see if it works.
Thank you so much for sending the mysql dump, it really helped. I could see that three fields in #__csvi_maps table are missing in the sql dump file you sent. Not sure how it has gone missing. Can you go to your phpmyadmin and delete the tables #__csvi_maps and #__csvi_mapheaders? Then run the below query by pasting it on SQL tab in your phpmyadmin so new tables are created. You can then try to do a fresh field mapping of fields and see if it works.
DROP TABLE IF EXISTS `sr16_csvi_mapheaders` ;
CREATE TABLE IF NOT EXISTS `sr16_csvi_mapheaders` (
`id` INT(10) NOT NULL AUTO_INCREMENT,
`map_id` INT(10) NOT NULL,
`csvheader` VARCHAR(100) NOT NULL,
`templateheader` VARCHAR(100) NOT NULL,
PRIMARY KEY (`id`)
) CHARSET=utf8 COMMENT='Holds map field mapping';
DROP TABLE IF EXISTS `sr16_csvi_maps` ;
CREATE TABLE IF NOT EXISTS `sr16_csvi_maps` (
`csvi_map_id` INT(10) NOT NULL AUTO_INCREMENT,
`title` VARCHAR(100) NULL DEFAULT NULL,
`mapfile` VARCHAR(100) NULL DEFAULT NULL,
`action` VARCHAR(100) NULL DEFAULT NULL,
`component` VARCHAR(100) NULL DEFAULT NULL,
`operation` VARCHAR(100) NULL DEFAULT NULL,
`auto_detect_delimiters` TINYINT(1) UNSIGNED NULL DEFAULT '1',
`field_delimiter` VARCHAR(1) NULL DEFAULT ',',
`text_enclosure` VARCHAR(1) NULL DEFAULT '"',
`locked_by` INT(10) NULL DEFAULT NULL,
`locked_on` DATETIME NULL DEFAULT NULL,
PRIMARY KEY (`csvi_map_id`)
) CHARSET=utf8 COMMENT='Holds map configurations';
Kind regards,
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Accepted Answer
Pending Moderation
Thank you very much Tharuna, just did it and it works.
Last question
I need to update price and quantity, do I need to do 2 template and 2 jobs or there is any way to do more simply?
Thanks a lot for your support!
Davide
Last question
I need to update price and quantity, do I need to do 2 template and 2 jobs or there is any way to do more simply?
Thanks a lot for your support!
Davide
Accepted Answer
Pending Moderation
Hello,
Are you looking for updating price minimum and maximum quantity? In that case you can use price template to update both price and quantity, for quantity use fields price_quantity_start and price_quantity_end. You can have a look at import VirtueMart price documentation to know on this.
I need to update price and quantity, do I need to do 2 template and 2 jobs or there is any way to do more simply?
Are you looking for updating price minimum and maximum quantity? In that case you can use price template to update both price and quantity, for quantity use fields price_quantity_start and price_quantity_end. You can have a look at import VirtueMart price documentation to know on this.
Kind regards,
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
- Page :
- 1
- 2
There are no replies made for this post yet.
Be one of the first to reply to this post!
Be one of the first to reply to this post!
Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here. Register Here »