<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>WordPress &#8250; Support Tag: users-to-csv</title>
<link>http://wordpress.org/support/</link>
<description>WordPress &#8250; Support Tag: users-to-csv</description>
<language>en</language>
<pubDate>Thu, 26 Nov 2009 01:12:47 +0000</pubDate>

<item>
<title>Bohlin on "users-to-csv and  capability manager"</title>
<link>http://wordpress.org/support/topic/315392#post-1226663</link>
<pubDate>Sun, 27 Sep 2009 16:20:03 +0000</pubDate>
<dc:creator>Bohlin</dc:creator>
<guid isPermaLink="false">1226663@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hello&#60;/p&#62;
&#60;p&#62;I would like to create a role that is able to export the user list with user-to-csv but not have all admin capabilities. &#60;/p&#62;
&#60;p&#62;I use capability manager to manage my roles but i have not managed to allow other roles than admin to use users-to-csv.&#60;/p&#62;
&#60;p&#62;Is htere a way to include usertocsv in the list of capabilities in capability manager? Or is it possible to do something in the user-tocsv code that give other roles the possibility to export users?&#60;/p&#62;
&#60;p&#62;regards&#60;br /&#62;
Lars
&#60;/p&#62;</description>
</item>
<item>
<title>klabunde1998 on "[Plugin: Users to CSV] Commas Not Semi-Colons and an idea"</title>
<link>http://wordpress.org/support/topic/237371#post-1188159</link>
<pubDate>Wed, 26 Aug 2009 01:51:54 +0000</pubDate>
<dc:creator>klabunde1998</dc:creator>
<guid isPermaLink="false">1188159@http://wordpress.org/support/</guid>
<description>&#60;p&#62;BigZack&#60;br /&#62;
Thanks for the help, works much better in excel!
&#60;/p&#62;</description>
</item>
<item>
<title>WebTechGlobal on "[Plugin: Users to CSV] Commas Not Semi-Colons and an idea"</title>
<link>http://wordpress.org/support/topic/237371#post-1143152</link>
<pubDate>Sat, 18 Jul 2009 22:10:41 +0000</pubDate>
<dc:creator>WebTechGlobal</dc:creator>
<guid isPermaLink="false">1143152@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I created a similiar CSV plugin but it is CSV to POST.&#60;/p&#62;
&#60;p&#62;I put it together this week and going to make some serious updates to it so that it does anything CSV+WORDPRESS. I've seen CSV to USERS alot, is this in big demand then? Why are people exporting user data as CSV file, is this how they are backing it up I guess?&#60;/p&#62;
&#60;p&#62;My plugin is here, hopefully by the time someone else finds this my plugin also does user data but right now it does ANY CSV file TO post without editing the CSV file...&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.webtechglobal.co.uk/wordpress-services/wordpress-csv-2-post-plugin&#34; rel=&#34;nofollow&#34;&#62;http://www.webtechglobal.co.uk/wordpress-services/wordpress-csv-2-post-plugin&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Lens on "[Plugin: Users to CSV] Export extra fields"</title>
<link>http://wordpress.org/support/topic/250037#post-1140345</link>
<pubDate>Thu, 16 Jul 2009 13:32:00 +0000</pubDate>
<dc:creator>Lens</dc:creator>
<guid isPermaLink="false">1140345@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Ok I found a little work around. Its not very clean I suppose, but I am not a coder. This works with the extra fields from &#60;a href=&#34;http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/&#34;&#62;cimy&#60;/a&#62;. I suppose it should also be easy to adjust this for Register Plus.&#60;/p&#62;
&#60;p&#62;Ok here we go for the modifications of the users2csv.php file (Version 1.4.2):&#60;/p&#62;
&#60;p&#62;Line 149 add to the following array the additional fields you would like to have: &#60;/p&#62;
&#60;p&#62;&#60;code&#62;$fields = array(&#38;#39;URL&#38;#39;,&#38;#39;E-Mail&#38;#39;,&#38;#39;URL&#38;#39;,&#38;#39;Display Name&#38;#39;,&#38;#39;Registration Date&#38;#39;,&#38;#39;First Name&#38;#39;,&#38;#39;Last Name&#38;#39;,&#38;#39;Nickname&#38;#39;);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;example:&#60;br /&#62;
&#60;code&#62;$fields = array(&#38;#39;URL&#38;#39;,&#38;#39;E-Mail&#38;#39;,&#38;#39;URL&#38;#39;,&#38;#39;Display Name&#38;#39;,&#38;#39;Registration Date&#38;#39;,&#38;#39;First Name&#38;#39;,&#38;#39;Last Name&#38;#39;,&#38;#39;Language&#38;#39;,&#38;#39;Adress&#38;#39;,&#38;#39;Zip Code&#38;#39;,&#38;#39;City&#38;#39;,&#38;#39;Country&#38;#39;,&#38;#39;Phone&#38;#39;);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Be sure these extra fields have been created in Cimy or Register Plus&#60;/p&#62;
&#60;p&#62;Line 169:&#60;br /&#62;
Below this Line add a new query to query the table from cimy or Register Plus:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;Line 169
$query = &#38;quot;SELECT meta_value FROM &#38;quot;.$wpdb-&#38;gt;prefix.&#38;quot;usermeta WHERE user_id = &#38;quot;.$results[$i][&#38;#39;UID&#38;#39;].&#38;quot; AND meta_key = &#38;quot;;

Added query example for cimy:
$query2 = &#38;quot;SELECT value FROM &#38;quot;.$wpdb-&#38;gt;prefix.&#38;quot;cimy_uef_data WHERE user_id = &#38;quot;.$results[$i][&#38;#39;UID&#38;#39;].&#38;quot; AND field_id = &#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Now add after Line 175/176 `&#60;br /&#62;
$nnquery = $query . &#34;'nickname'&#34;;&#60;br /&#62;
$results[$i]['nickname'] = $wpdb-&#38;gt;get_var($nnquery);`&#60;/p&#62;
&#60;p&#62;The new queries for your extra fields (example):&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$langquery = $query2 . &#38;quot;&#38;#39;1&#38;#39;&#38;quot;;
$results[$i][&#38;#39;1&#38;#39;] = $wpdb-&#38;gt;get_var($langquery);
$streetquery = $query2 . &#38;quot;&#38;#39;3&#38;#39;&#38;quot;;
$results[$i][&#38;#39;3&#38;#39;] = $wpdb-&#38;gt;get_var($streetquery);
$codequery = $query2 . &#38;quot;&#38;#39;4&#38;#39;&#38;quot;;
$results[$i][&#38;#39;4&#38;#39;] = $wpdb-&#38;gt;get_var($codequery);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The numbers are the field_id from cimy. Check them through phpmyadmin.&#60;br /&#62;
Hope someone may understand this. At least it works for me :)
&#60;/p&#62;</description>
</item>
<item>
<title>croila on "[Plugin: Users to CSV] Export extra fields"</title>
<link>http://wordpress.org/support/topic/250037#post-1122424</link>
<pubDate>Wed, 01 Jul 2009 11:46:09 +0000</pubDate>
<dc:creator>croila</dc:creator>
<guid isPermaLink="false">1122424@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Me too! I would really like to know how to export the extra data, so ALL the data pertaining to each user is in the one spreadsheet. If anyone can help here, that would be brilliant.
&#60;/p&#62;</description>
</item>
<item>
<title>RonKZ on "[Plugin: Users to CSV] Does not work"</title>
<link>http://wordpress.org/support/topic/187189#post-1109317</link>
<pubDate>Fri, 19 Jun 2009 01:21:58 +0000</pubDate>
<dc:creator>RonKZ</dc:creator>
<guid isPermaLink="false">1109317@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I use Thunderbird, and using either comma-delimited or tab delimited, it's impossible to get fields to match up.  I've also done ditto matching everything up via a spreadsheet and saving a revised *.csv file, that is no better.  I have wasted many hours on this or even a couple of days, to get about 100 users into my tBird address book, but it has never come out right.  &#60;/p&#62;
&#60;p&#62;I'm sure part of the problem is tBird but believe it is also user2csv.  Bright ideas are welcome.
&#60;/p&#62;</description>
</item>
<item>
<title>BigZack on "[Plugin: Users to CSV] Commas Not Semi-Colons and an idea"</title>
<link>http://wordpress.org/support/topic/237371#post-1095857</link>
<pubDate>Tue, 09 Jun 2009 03:29:26 +0000</pubDate>
<dc:creator>BigZack</dc:creator>
<guid isPermaLink="false">1095857@http://wordpress.org/support/</guid>
<description>&#60;blockquote&#62;&#60;p&#62;
edit &#60;strong&#62;wp-content/plugins/users-to-csv/users2csv.php&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;and change line 194 from...&#60;/p&#62;
&#60;p&#62;   $sep = &#34;&#60;strong&#62;;&#60;/strong&#62;&#34;;&#60;/p&#62;
&#60;p&#62;to...&#60;/p&#62;
&#60;p&#62;   $sep = &#34;&#60;strong&#62;,&#60;/strong&#62;&#34;;
&#60;/p&#62;&#60;/blockquote&#62;</description>
</item>
<item>
<title>Dekortage on "[Plugin: Users to CSV] I get 404 page not found in wp 2.7.1 when trying to export  any ideas?"</title>
<link>http://wordpress.org/support/topic/257254#post-1058136</link>
<pubDate>Mon, 27 Apr 2009 19:26:29 +0000</pubDate>
<dc:creator>Dekortage</dc:creator>
<guid isPermaLink="false">1058136@http://wordpress.org/support/</guid>
<description>&#60;p&#62;There are two sets of links, one for commenters and another for posters.  So you have to edit four lines of HTML in that area, and you'll fix all the links.
&#60;/p&#62;</description>
</item>
<item>
<title>thecoveted on "[Plugin: Users to CSV] I get 404 page not found in wp 2.7.1 when trying to export  any ideas?"</title>
<link>http://wordpress.org/support/topic/257254#post-1056887</link>
<pubDate>Sun, 26 Apr 2009 12:39:53 +0000</pubDate>
<dc:creator>thecoveted</dc:creator>
<guid isPermaLink="false">1056887@http://wordpress.org/support/</guid>
<description>&#60;p&#62;this works great with that hack... but i think i exports only every person who has commmented on the blog.&#60;/p&#62;
&#60;p&#62;also.. i'm wondering if there is a way to get the passwords and extra fields?
&#60;/p&#62;</description>
</item>
<item>
<title>brianlees on "[Plugin: Users to CSV] BUG - Excel error because first column is called "ID""</title>
<link>http://wordpress.org/support/topic/263930#post-1051933</link>
<pubDate>Tue, 21 Apr 2009 12:07:15 +0000</pubDate>
<dc:creator>brianlees</dc:creator>
<guid isPermaLink="false">1051933@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Because the CSV file's first column is called &#34;ID&#34;, Excel improperly recognizes the file as a SYLK file and will not open it.  If you open the file in a text editor, change &#34;ID&#34; to &#34;UID&#34;, it opens fine.&#60;/p&#62;
&#60;p&#62;Is there any way we can get this changed in the release version of the plugin so the first column is called UID instead?  If you are curious about it, click on the following links for more information:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://mail.python.org/pipermail/python-bugs-list/2006-August/034602.html&#34;&#62;http://mail.python.org/pipermail/python-bugs-list/2006-August/034602.html&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://mail.python.org/pipermail/python-bugs-list/2006-August/034602.html&#34;&#62;http://www.pcreview.co.uk/forums/thread-1061043.php&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Dekortage on "[Plugin: Users to CSV] I get 404 page not found in wp 2.7.1 when trying to export  any ideas?"</title>
<link>http://wordpress.org/support/topic/257254#post-1047774</link>
<pubDate>Thu, 16 Apr 2009 19:35:15 +0000</pubDate>
<dc:creator>Dekortage</dc:creator>
<guid isPermaLink="false">1047774@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I had the same problem, but only after I adjusted Wordpress so that it worked from my domain's root directory instead of the /wordpress subdirectory.  &#60;/p&#62;
&#60;p&#62;So here's how I fixed it. Open up users2csv.php and look at lines 227-233.  Remove the text &#34;&#38;lt;?php bloginfo('url');?&#38;gt;/wp-admin/&#34; from those lines. It now works for me.
&#60;/p&#62;</description>
</item>
<item>
<title>brianlees on "[Plugin: Users to CSV] Extend the exported data?"</title>
<link>http://wordpress.org/support/topic/223364#post-1042312</link>
<pubDate>Fri, 10 Apr 2009 14:10:17 +0000</pubDate>
<dc:creator>brianlees</dc:creator>
<guid isPermaLink="false">1042312@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Any word on this?  I use Register Plus as well and I need a dead-simple way for non-computer savvy people to export the user list.  Users2CSV seems to be the easiest...but I just need to be able to extend it to include all the fields I added in Register Plus.
&#60;/p&#62;</description>
</item>
<item>
<title>brianlees on "[Plugin: Users to CSV] Export extra fields"</title>
<link>http://wordpress.org/support/topic/250037#post-1042308</link>
<pubDate>Fri, 10 Apr 2009 14:05:20 +0000</pubDate>
<dc:creator>brianlees</dc:creator>
<guid isPermaLink="false">1042308@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I need the same thing (extra fields in RegisterPlus).  Did anyone ever answer your question?&#60;/p&#62;
&#60;p&#62;As for opening the CSV files in Excel.  All you should need to do is associate CSV files with Excel directly by modifing the &#34;Open With&#34; and saying always use this app.&#60;/p&#62;
&#60;p&#62;Brian
&#60;/p&#62;</description>
</item>
<item>
<title>ehsan4php on "[Users to CSV] Failing to open the CSV file"</title>
<link>http://wordpress.org/support/topic/174768#post-1033498</link>
<pubDate>Wed, 01 Apr 2009 15:09:25 +0000</pubDate>
<dc:creator>ehsan4php</dc:creator>
<guid isPermaLink="false">1033498@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Using version 1.4 and here are the places I had to modify:&#60;/p&#62;
&#60;p&#62;1. Line 56 (which evilzenscientist referred to line 37), same modification. Although only changing it doesn't fix the &#34;;&#34; problem, so following is the next.&#60;/p&#62;
&#60;p&#62;2. Line 194 change $sep = &#34;;&#34;; to $sep = &#34;,&#34;;&#60;/p&#62;
&#60;p&#62;3. Then there was a problem with MS Excel that reported something like:&#60;/p&#62;
&#60;p&#62;&#34;Excel has detected that the 'MyOutput.csv' is a SYLK file, but cannot load it. Either the file has errorsa or it is not a SYLK file. Click OK to try to openn the file in a different format.&#34;&#60;/p&#62;
&#60;p&#62;To fix it I had to replace all the instance of 'ID' to 'USERID', that solved all the issues.&#60;/p&#62;
&#60;p&#62;So far so good. I will report more changes if there is any.
&#60;/p&#62;</description>
</item>
<item>
<title>samm5195 on "[Plugin: Users to CSV] I get 404 page not found in wp 2.7.1 when trying to export  any ideas?"</title>
<link>http://wordpress.org/support/topic/257254#post-1029956</link>
<pubDate>Sun, 29 Mar 2009 00:18:42 +0000</pubDate>
<dc:creator>samm5195</dc:creator>
<guid isPermaLink="false">1029956@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I installed plugin and activated it when I try to export my users it goes to 404 page not found&#60;br /&#62;
does anyone have any ideas as to whats going on or is there a bug fix for the plugin I'm using current version
&#60;/p&#62;</description>
</item>
<item>
<title>danaparkinson on "[Plugin: Users to CSV] Export extra fields"</title>
<link>http://wordpress.org/support/topic/250037#post-1006458</link>
<pubDate>Thu, 05 Mar 2009 16:05:25 +0000</pubDate>
<dc:creator>danaparkinson</dc:creator>
<guid isPermaLink="false">1006458@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Do any of you have an idea how I can export extra fields? Currently the plugin only exports the standard data. I've used Register-Plus to add the extra fields. Any idea how to have it set up nicely in Excel? Currently I can only open the data in Notepad.
&#60;/p&#62;</description>
</item>
<item>
<title>wp-boy on "[Plugin: Users to CSV] Does not work"</title>
<link>http://wordpress.org/support/topic/187189#post-991671</link>
<pubDate>Thu, 19 Feb 2009 20:59:08 +0000</pubDate>
<dc:creator>wp-boy</dc:creator>
<guid isPermaLink="false">991671@http://wordpress.org/support/</guid>
<description>&#60;p&#62;hey joost,&#60;/p&#62;
&#60;p&#62;I like your plugin &#34;user2csv&#34; but is there any way or do you plan on adding a way for the date and time of the &#34;unique&#34; comment to be published next to the name and email?&#60;/p&#62;
&#60;p&#62;this way I can do a contest on my blog during a time and then a emailing to just those people who posted comment in that time frame.&#60;/p&#62;
&#60;p&#62;even better...&#60;/p&#62;
&#60;p&#62;if you could csv commenters by the post they commented on.&#60;/p&#62;
&#60;p&#62;thanks.&#60;/p&#62;
&#60;p&#62;-Justin
&#60;/p&#62;</description>
</item>
<item>
<title>andypatmore on "[Plugin: Users to CSV] Commas Not Semi-Colons and an idea"</title>
<link>http://wordpress.org/support/topic/237371#post-965924</link>
<pubDate>Sun, 25 Jan 2009 15:21:05 +0000</pubDate>
<dc:creator>andypatmore</dc:creator>
<guid isPermaLink="false">965924@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Firstly, GREAT plugin! I didn't know I needed this until I found it!&#60;/p&#62;
&#60;p&#62;Anyway, a question. I was under the impression that a CSV file was comma separated and not semi-colon? Does mean that I have to save the file, change the extension to txt and them import it into my spreadsheet program that way.&#60;/p&#62;
&#60;p&#62;Can I change to comma separated output and if so how?&#60;/p&#62;
&#60;p&#62;Second, a suggestion. If you are looking to develop this plugin further, may I suggest that you allow the export fields to be defined? I only need first name, last name and email address. It may be useful to allow a user defined field so that I can tag the source of the list (ie. blog 1, blog 2, etc)&#60;/p&#62;
&#60;p&#62;thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>clicknathan on "[Plugin: Users to CSV] Firefox is trying to open the file users.php instead of exporting the CSV"</title>
<link>http://wordpress.org/support/topic/234988#post-958231</link>
<pubDate>Sat, 17 Jan 2009 00:42:32 +0000</pubDate>
<dc:creator>clicknathan</dc:creator>
<guid isPermaLink="false">958231@http://wordpress.org/support/</guid>
<description>&#60;p&#62;And the users.php file is empty... any ideas?
&#60;/p&#62;</description>
</item>
<item>
<title>Producer82 on "[Plugin: Users to CSV] How to export email addresses only?"</title>
<link>http://wordpress.org/support/topic/230636#post-943616</link>
<pubDate>Sat, 03 Jan 2009 15:10:04 +0000</pubDate>
<dc:creator>Producer82</dc:creator>
<guid isPermaLink="false">943616@http://wordpress.org/support/</guid>
<description>&#60;p&#62;never mind, I just figured out how to do it in phpmyadmin, thanks anyways.
&#60;/p&#62;</description>
</item>
<item>
<title>Producer82 on "[Plugin: Users to CSV] How to export email addresses only?"</title>
<link>http://wordpress.org/support/topic/230636#post-943607</link>
<pubDate>Sat, 03 Jan 2009 14:58:23 +0000</pubDate>
<dc:creator>Producer82</dc:creator>
<guid isPermaLink="false">943607@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I'm using Dadamail for my mailing list but when I import the CSV file that this plugin creates, it doesn't work because of all the extra stuff your plugin puts into the csv file (like the person's name, date they signed up, website etc). I can't manually remove the extra stuff because I have around 9,500 members :/&#60;/p&#62;
&#60;p&#62;Is there any thing in your plugin code that I can change so it'll export one e-mail address per line and nothing else?
&#60;/p&#62;</description>
</item>
<item>
<title>joostdevalk on "[Plugin: Users to CSV] Does not work"</title>
<link>http://wordpress.org/support/topic/187189#post-941248</link>
<pubDate>Wed, 31 Dec 2008 18:02:28 +0000</pubDate>
<dc:creator>joostdevalk</dc:creator>
<guid isPermaLink="false">941248@http://wordpress.org/support/</guid>
<description>&#60;p&#62;should be a submenu under users, but it could be that the plugin wasn't working properly for you yet. The shortly to be released version 1.4 should fix that.
&#60;/p&#62;</description>
</item>
<item>
<title>joostdevalk on "[Plugin: Users to CSV] Extend the exported data?"</title>
<link>http://wordpress.org/support/topic/223364#post-941244</link>
<pubDate>Wed, 31 Dec 2008 18:01:23 +0000</pubDate>
<dc:creator>joostdevalk</dc:creator>
<guid isPermaLink="false">941244@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I haven't looked into it as I don't use the plugin, it'd require changing the query for users, depending on how register plus stores the data.
&#60;/p&#62;</description>
</item>
<item>
<title>joostdevalk on "[Plugin: Users to CSV] bugfix if you get database errors"</title>
<link>http://wordpress.org/support/topic/229596#post-941174</link>
<pubDate>Wed, 31 Dec 2008 16:25:31 +0000</pubDate>
<dc:creator>joostdevalk</dc:creator>
<guid isPermaLink="false">941174@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Thx askibinski! Added this fix in version 1.4!
&#60;/p&#62;</description>
</item>
<item>
<title>askibinski on "[Plugin: Users to CSV] bugfix if you get database errors"</title>
<link>http://wordpress.org/support/topic/229596#post-940273</link>
<pubDate>Tue, 30 Dec 2008 15:09:24 +0000</pubDate>
<dc:creator>askibinski</dc:creator>
<guid isPermaLink="false">940273@http://wordpress.org/support/</guid>
<description>&#60;p&#62;If you use the first export option (all users) and get a bunch of errors saying wp_usermeta tables not found, you need to change this on line 150 of users2csv.php:&#60;/p&#62;
&#60;p&#62;find:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;wp_usermeta&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;and replace it with:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;quot;.$wpdb-&#38;gt;prefix.&#38;quot;usermeta&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;The error is caused by the plugin falsely assuming you are using 'wp' as a prefix for your tables. Which is not necessarily true because you can provide your own prefix during installation of Wordpress.
&#60;/p&#62;</description>
</item>
<item>
<title>biv on "[Plugin: Users to CSV] Extend the exported data?"</title>
<link>http://wordpress.org/support/topic/223364#post-920693</link>
<pubDate>Thu, 11 Dec 2008 14:49:33 +0000</pubDate>
<dc:creator>biv</dc:creator>
<guid isPermaLink="false">920693@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Anyone?
&#60;/p&#62;</description>
</item>
<item>
<title>biv on "[Plugin: Users to CSV] Extend the exported data?"</title>
<link>http://wordpress.org/support/topic/223364#post-917781</link>
<pubDate>Mon, 08 Dec 2008 16:55:03 +0000</pubDate>
<dc:creator>biv</dc:creator>
<guid isPermaLink="false">917781@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I'm using the users2csv plugin to see if it fits my needs. This in combination with the Register Plus plugin.&#60;/p&#62;
&#60;p&#62;But how can I extend the users2csv plugin so it will export the data created by the Register Plus plugin? Tried different things, but couldn't get it to work..&#60;/p&#62;
&#60;p&#62;Did perhaps someone got already got this done and would share his/her modification? Thanx in advance.
&#60;/p&#62;</description>
</item>
<item>
<title>Anonymous on "[Plugin: Users to CSV] Does not work"</title>
<link>http://wordpress.org/support/topic/187189#post-797742</link>
<pubDate>Mon, 07 Jul 2008 03:48:01 +0000</pubDate>
<dc:creator>Anonymous</dc:creator>
<guid isPermaLink="false">797742@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I placed the users2csv.php in the plugins folder and it showed up in my plugin in wordpress then I activated it. Then went to users and nothing shows up in there saying csv, but the plugin is activated so I am not sure whats going on but nothing works.
&#60;/p&#62;</description>
</item>
<item>
<title>mosey on "[Users to CSV] Failing to open the CSV file"</title>
<link>http://wordpress.org/support/topic/174768#post-791370</link>
<pubDate>Fri, 27 Jun 2008 02:15:14 +0000</pubDate>
<dc:creator>mosey</dc:creator>
<guid isPermaLink="false">791370@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Not sure if it's a good idea to use a comma instead of a semi-colon as a separator. It depends on the data though I guess. Most of my data have sentences which *have* commas but not necessarily semi-colons, so the colon seems ideal.&#60;/p&#62;
&#60;p&#62;If possible could maybe use '&#124;'?
&#60;/p&#62;</description>
</item>
<item>
<title>mrnabo on "[Users to CSV] Failing to open the CSV file"</title>
<link>http://wordpress.org/support/topic/174768#post-791293</link>
<pubDate>Thu, 26 Jun 2008 22:58:22 +0000</pubDate>
<dc:creator>mrnabo</dc:creator>
<guid isPermaLink="false">791293@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I edited that line of code, and can open it with a basic text-editor, but not with Excel 2008. Is there a reason for that and is it important?&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
</item>

</channel>
</rss>
