Export User Data - Version 0.9.1

Version Description

  • Tested with WP 3.9
  • Fix for BuddyPress 2.0 bug
Download this release

Release Info

Developer qlstudio
Plugin Icon wp plugin Export User Data
Version 0.9.1
Comparing to
See all releases

Code changes from version 0.9.0 to 0.9.1

Files changed (3) hide show
  1. export-user-data.php +9 -3
  2. readme.md +105 -0
  3. readme.txt +6 -2
export-user-data.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: Export User Data
5
  Plugin URI: http://qstudio.us/plugins/
6
  Description: Export User data, metadata and BuddyPressX Profile data.
7
- Version: 0.9.0
8
  Author: Q Studio
9
  Author URI: http://qstudio.us
10
  License: GPL2
@@ -146,7 +146,13 @@ if ( ! class_exists( 'Q_Export_User_Data' ) )
146
  **/
147
  public function generate_data()
148
  {
149
-
 
 
 
 
 
 
150
  if ( ! isset( $_POST['_wpnonce-q-eud-export-user-page_export'] ) ) {
151
 
152
  return false;
@@ -202,7 +208,7 @@ if ( ! class_exists( 'Q_Export_User_Data' ) )
202
  exit;
203
 
204
  }
205
-
206
  /* get sitename and clean it up */
207
  $sitename = sanitize_key( get_bloginfo( 'name' ) );
208
  if ( ! empty( $sitename ) ) {
4
  Plugin Name: Export User Data
5
  Plugin URI: http://qstudio.us/plugins/
6
  Description: Export User data, metadata and BuddyPressX Profile data.
7
+ Version: 0.9.1
8
  Author: Q Studio
9
  Author URI: http://qstudio.us
10
  License: GPL2
146
  **/
147
  public function generate_data()
148
  {
149
+
150
+ // hack to avoid BP error ##
151
+ // http://wordpress.org/support/topic/blank-page-107?replies=5#post-5526525
152
+ if ( !defined ( "DOING_AJAX" ) ) {
153
+ define( 'DOING_AJAX', true );
154
+ }
155
+
156
  if ( ! isset( $_POST['_wpnonce-q-eud-export-user-page_export'] ) ) {
157
 
158
  return false;
208
  exit;
209
 
210
  }
211
+
212
  /* get sitename and clean it up */
213
  $sitename = sanitize_key( get_bloginfo( 'name' ) );
214
  if ( ! empty( $sitename ) ) {
readme.md ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Export User Data #
2
+ **Contributors:** qlstudio
3
+ **Tags:** user, users, xprofile, usermeta csv, excel, batch, export, save, download
4
+ **Requires at least:** 3.2
5
+ **Tested up to:** 3.9.0
6
+ **Stable tag:** 0.9.1
7
+ **License:** GPLv2
8
+
9
+ Export users data, metadata and buddypress xprofile data to a csv or Excel file
10
+
11
+ ## Description ##
12
+
13
+ A plugin that exports ALL user data, meta data and BuddyPress xProfile data.
14
+
15
+ Includes an option to export the users by role, registration date range, usermeta option and two export formats.
16
+
17
+ ### Features ###
18
+
19
+ * Exports all users fields
20
+ * Exports users meta
21
+ * Exports users by role
22
+ * Exports users by date range
23
+ * Export user BuddyPress xProfile data
24
+
25
+ For feature request and bug reports, [please use the WP Support Website](http://www.wp-support.co/view/categories/export-user-data).
26
+
27
+ Please do not use the Wordpress.org forum to report bugs, as we no longer monitor or respond to questions there.
28
+
29
+ ## Installation ##
30
+
31
+ For an automatic installation through WordPress:
32
+
33
+ 1. Go to the 'Add New' plugins screen in your WordPress admin area
34
+ 2. Search for 'Export User Data'
35
+ 3. Click 'Install Now' and activate the plugin
36
+ 4. Go the 'Export User Data' menu, under 'Users'
37
+
38
+ For a manual installation via FTP:
39
+
40
+ 1. Upload the `export-user-data` directory to the `/wp-content/plugins/` directory
41
+ 2. Activate the plugin through the 'Plugins' screen in your WordPress admin area
42
+ 3. Go the 'Export User Data' menu, under 'Users'
43
+
44
+ To upload the plugin through WordPress, instead of FTP:
45
+
46
+ 1. Upload the downloaded zip file on the 'Add New' plugins screen (see the 'Upload' tab) in your WordPress admin area and activate.
47
+ 2. Go the 'Export User Data' menu, under 'Users'
48
+
49
+ ## Frequently Asked Questions ##
50
+
51
+ ### How to use? ###
52
+
53
+ Click on the 'Export User Data' link in the 'Users' menu, choose the role and the date range or don't select anything if you want to export all users, then click 'Export'. That's all!
54
+
55
+ ## Screenshots ##
56
+
57
+ ###1. User export screen###
58
+ ![ScreenShot](http://s.w.org/plugins/export-user-data/screenshot-1.png?r=859689)
59
+
60
+ ## Changelog ##
61
+
62
+ ### 0.9.1 ###
63
+ * Tested with WP 3.9
64
+ * Fix for BuddyPress 2.0 bug
65
+
66
+ ### 0.9.0 ###
67
+ * Moved plugin class to singleton model
68
+ * Improved language handling
69
+ * French translation - thanks @bastho - http://wordpress.org/support/profile/bastho
70
+
71
+ ### 0.8.3 ###
72
+ * clarified export limit options
73
+
74
+ ### 0.8.2 ###
75
+ * corrected buddypress export option - broken in 0.8.1
76
+ * changed get_users arguments, in attempt to reduce memory usage
77
+
78
+ ### 0.8.1 ###
79
+ * Added experimental range limiter for exports
80
+ * Extra input data sanitizing
81
+
82
+ ### 0.8 ###
83
+ * moved plugin instatiation to the WP hook: init
84
+ * moved bp calls outside export loop
85
+ * added extra isset calls on values in export loop to clean up error log not sets
86
+
87
+ ### 0.7.8 ###
88
+ * added xml template for Excel exports - thanks to phil@fixitlab.com :)
89
+
90
+ ### 0.7.2 ###
91
+ * fixes to allow exports without selecting extra user date from usermeta or x-profile
92
+
93
+ ### 0.6.3 ###
94
+ * added multiselect to pick usermeta and xprofile fields
95
+
96
+ ### 0.5 ###
97
+ * First public release.
98
+
99
+ ## Upgrade Notice ##
100
+
101
+ ### 0.6.3 ###
102
+ Latest.
103
+
104
+ ### 0.5 ###
105
+ First release.
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: qlstudio
3
  Tags: user, users, xprofile, usermeta csv, excel, batch, export, save, download
4
  Requires at least: 3.2
5
- Tested up to: 3.8.1
6
- Stable tag: 0.9.0
7
  License: GPLv2
8
 
9
  Export users data, metadata and buddypress xprofile data to a csv or Excel file
@@ -58,6 +58,10 @@ Click on the 'Export User Data' link in the 'Users' menu, choose the role and th
58
 
59
  == Changelog ==
60
 
 
 
 
 
61
  = 0.9.0 =
62
  * Moved plugin class to singleton model
63
  * Improved language handling
2
  Contributors: qlstudio
3
  Tags: user, users, xprofile, usermeta csv, excel, batch, export, save, download
4
  Requires at least: 3.2
5
+ Tested up to: 3.9.0
6
+ Stable tag: 0.9.1
7
  License: GPLv2
8
 
9
  Export users data, metadata and buddypress xprofile data to a csv or Excel file
58
 
59
  == Changelog ==
60
 
61
+ = 0.9.1 =
62
+ * Tested with WP 3.9
63
+ * Fix for BuddyPress 2.0 bug
64
+
65
  = 0.9.0 =
66
  * Moved plugin class to singleton model
67
  * Improved language handling