qstudio
Forum Replies Created
-
Forum: Plugins
In reply to: [Export User Data] Does not export users from Network Admin DashboardWe’re closing this ticket – as we don’t have the need or resources to manage this plugin for network users – yet.
Q
Forum: Plugins
In reply to: [Export User Data] Exporting group membership info in a usable formatHas anyone had time to test this latest update?
Cheers ๐
Q
Forum: Plugins
In reply to: [Export User Data] User ID# – UrgentHow you export and import the users will control how the data is managed.
Basically – phpmyadmin offers a lot of export / import options which will do what you’re looking for.
The csv / excel formats that this plugin provides are not ideal for re-importing into another table – this should be done using .sql
Q
Forum: Plugins
In reply to: [Export User Data] why couldn't export the password field?Good news you resolved this.
Q
Forum: Plugins
In reply to: [Export User Data] User ID# – UrgentID’s are a unique key in most database tables – to only way to keep the old ID’s would be to export the entire table ( or database ) in sql and delete the tables in the new database.
The ID is not included in exports made by this plugin ( but perhaps a case could be made for including this, in order to connect up other usermeta data ).
Q
Forum: Plugins
In reply to: [Export User Data] why couldn't export the password field?Because the password is hashed ( hidden ) in wordpress, so the export would not be any use to you.
Forum: Plugins
In reply to: [Export User Data] Does not export users from Network Admin DashboardThe plugin has never been tested on a multi-site install – as it’s a less requested feature.
If you know anything about writing plugins, you could take a look at how this works – if not, it can go on the feature request list, but it might be a long time until this gets added – due to our current work load.
Good luck!
Q
Forum: Plugins
In reply to: [Export User Data] HOW TO: Exporting A LOT of Data (Out of Memory Issue)Thanks!
Forum: Plugins
In reply to: [Export User Data] Exporting group membership info in a usable format@gingerling – please take a look at the development version ( 0.9.9 ) on github – it includes a BP Group export option along with a few new features:
https://github.com/qstudio/export-user-data
Q
Forum: Plugins
In reply to: [Export User Data] Non-unique meta fields@ntd – we’ve pushed another update to github to try and address this issue, please can you try this and see if your exports run correctly and give us some feedback?
Thanks
Q
Forum: Plugins
In reply to: [Export User Data] HOW TO: Exporting A LOT of Data (Out of Memory Issue)@grexican – I’ve got a question, how could I contact you?
See here for reference: http://wordpress.stackexchange.com/questions/167111/wp-user-query-and-non-unique-usermeta-data
Cheers
Q
Forum: Plugins
In reply to: [Export User Data] HowTo: preselected meta keys for export@cwjordan – I’ve got a question, how could I contact you?
See here for reference: http://wordpress.stackexchange.com/questions/167111/wp-user-query-and-non-unique-usermeta-data
Cheers
Q
Forum: Plugins
In reply to: [Export User Data] Non-unique meta fieldsGood news – that’s the most important!
Q
Forum: Plugins
In reply to: [Export User Data] Non-unique meta fieldsThe plugin uses get_users, which itself uses WP_User_Query – this is the source of the issue, in regards to your question – because the user meta data is returned from this function call.
We might need to change this to return specific user_meta fields to see if this deals more correctly with keys which have non-unique values.
But, like you – we don’t have a lot of free time at present to look into this further.
When we do, I’ll be sure to upload an update to github – when it’s good, we’ll push it to wp.org.
Q
Forum: Plugins
In reply to: [Export User Data] Non-unique meta fieldsIf you check the plugin code on export-user-data:1575 you will see a new method:
known_arrays()
This returns an array of meta fields which are known to contain arrays of data – it’s a bit of a hack for now – this returned array is filterable – so you could add something like to following to your functions.php ( untested code.. ):
function my_export_user_data_known_arrays( $array ) { return array_push( $array, 'my_user_meta_key' ); } add_filter( 'export_user_data_known_arrays', 'my_export_user_data_known_arrays' );Where “my_user_meta_key” is the key that you know contains an array of data.
The code above is untested and will need some changes – read here for more info on using filters:
http://code.tutsplus.com/tutorials/writing-extensible-plugins-with-actions-and-filters–wp-26759
As I mentioned, this is likely a short term fix, for an odd bug – but if it works, please let us know.