How to export member information via CSV
Permalink
I notice in 5.8 there is not a builtin function to export member information via a CSV or HTML file. Is an add-on available?
If not, In my 5.6 application I wrote several blocks that read the field names and field data, exporting as a PDF. Where can I get information on reading field names and field data for 5.8? Will the process be more complex in 5.8 than 5.6.
With appreciation...
Todd
If not, In my 5.6 application I wrote several blocks that read the field names and field data, exporting as a PDF. Where can I get information on reading field names and field data for 5.8? Will the process be more complex in 5.8 than 5.6.
With appreciation...
Todd
[Sorry! was not watching and posted to the wrong place!]
Michael -
Watched a movie. More tomorrow including my true blue Hell's Angel patient.
Todd
R.Todd Cary
Bend, OR 97702
Nexus 5 phone
On Dec 29, 2016 10:01 PM, "concrete5 Community" <discussions@concretecms.com>
wrote:
Michael -
Watched a movie. More tomorrow including my true blue Hell's Angel patient.
Todd
R.Todd Cary
Bend, OR 97702
Nexus 5 phone
On Dec 29, 2016 10:01 PM, "concrete5 Community" <discussions@concretecms.com>
wrote:
Just tried to install this on 5.7.5.13 and got an error caused by lines 62 to 65 in the package controller.
The error message is
Any ideas?
public function on_start() { require $this->getPackagePath() . '/vendor/autoload.php'; }
The error message is
Concrete\Package\CsvUserImportExport\Controller::on_start(): Failed opening required 'H:/wamp/www/packages/csv_user_import_export/vendor/autoload.php' (include_path='H:\wamp\www\concrete\vendor;.;C:\php\pear')
Any ideas?
Same error on 5.8.0.3
Hi weyboat,
Before installation, you need to run Composer to install the dependencies listed in composer.json.
http://getcomposer.org/
Before installation, you need to run Composer to install the dependencies listed in composer.json.
http://getcomposer.org/
HaHa, I will have a go on my windows machine...
Okay, I managed to run composer install which created a vendor folder with sub folders and the autoload file.
The package installed okay but when I run it, I get this error message.
The package installed okay but when I run it, I get this error message.
The error is coming from H:\wamp\www\concrete\src\View\View.php on line 205
Okay, Finally got this working..
What finally worked for me was to shut down my wamp server whilst I ran the 'composer install' from the command line.
Then, restart wamp server, logged in to the site, installed the addon and 'bingo' it works!
What finally worked for me was to shut down my wamp server whilst I ran the 'composer install' from the command line.
Then, restart wamp server, logged in to the site, installed the addon and 'bingo' it works!
Nope, not quite...
I can successfully export the users with all the attribute data to a csv file.
But I can't discover how to import the csv file?
I can successfully export the users with all the attribute data to a csv file.
But I can't discover how to import the csv file?
@weyboat
I believe the import function is on a todo list for development.
I believe the import function is on a todo list for development.
I recommend checking out the CSV User Import & Export add-on by community member hissy. The add-on exports users and their attributes.
https://github.com/hissy/addon_csv_user_import_export...
When installing the add-on in v8, I encountered one error that was resolved by:
- changing this line
https://github.com/hissy/addon_csv_user_import_export/blob/master/cs...
- to this