Hi,
i guess you are using Visforms 3.12.3 beta
I just learned a few days ago, that there is a bug with the data export in Visforms 3.12.3 beta. I have already fixed it and it will be released with the next Visforms release.
The bug is easy to fix, because only 3 lines of code in one file are involved.
Open the file administrator\components\com_visforms\models\visdatas.php
Replace the code at line 408 - 410
Code:
$where = ' and c.includefieldonexport = 1';
$where .= (!(empty($params->exppublishfieldsonly))) ? ' and c.published = 1' : '';
$where .= " and c.typefield NOT in('submit', 'image', 'reset', 'fieldsep', 'pagebreak')";
with
Code:
$where = ' includefieldonexport = 1';
$where .= (!(empty($params->exppublishfieldsonly))) ? ' and published = 1' : '';
$where .= " and typefield NOT in('submit', 'image', 'reset', 'fieldsep', 'pagebreak')";
This should fix the problem.
If you are not using Visforms 3.12.3 beta, maybe you have not set up the export properly (record sets are not published and you have enabled the export option "published records only" or something like that). In this case please check out the documentation in order to set up the export properly:
vi-solutions.de/en/documentations/visfor...rms/314-save-results
Regards,
Aicha