WPIntell

Source evidence

CSV is a mess!

Export Users Data to CSV · support · 2015-03-25T22:42:00+00:00

complaintsentiment
mediumseverity
0.8relevance
2replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

6 / 34 rows with source links

17.6% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

28 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
eternal8pcurr unresolved
There is absolutely no structure to the csv file. I wanted to get all the email addresses of my customers. https://wordpress.org/plugins/export-users-data-to-csv/ The CSV should be comma separated, not semi-colon Turn On Social is correct, the plugin doesn’t work the way it is written,but you can modify it easily. There are two lines that need to be edited in users-data-to-csv.php in the plugin directory. Line 149 change echo implode( ';', $headers ) . "\n"; to echo implode( ',', $headers ) . "\n"; Line 167 change echo implode( ';', $data ) . "\n"; to echo implode( ',', $data ) . "\n"; Not sure why the author used semi-colons but it is an easy fix.

Comments

2 shown
Turn On Social 2015-10-28T19:34:00+00:00

The CSV should be comma separated, not semi-colon

edkratz 2015-11-06T21:46:00+00:00

Turn On Social is correct, the plugin doesn’t work the way it is written,but you can modify it easily. There are two lines that need to be edited in users-data-to-csv.php in the plugin directory. Line 149 change echo implode( ';', $headers ) . "\n"; to echo implode( ',', $headers ) . "\n"; Line 167 change echo implode( ';', $data ) . "\n"; to echo implode( ',', $data ) . "\n"; Not sure why the author used semi-colons but it is an easy fix.