qstudio
Forum Replies Created
-
Forum: Plugins
In reply to: [Export User Data] this crashed my site and comleetey stuffed it upClosing this ticket, as no new updates for any users.
Forum: Plugins
In reply to: [Export User Data] Conflict with BP and Event EspressoHi,
Yo are better to ask the author of either of those plugins or to investigate a little further yourself – as we do not use Event Espresso nor support exporting any data from it.
Check for errors in the PHP logs or JS errors on the export page.
Q
Forum: Plugins
In reply to: [Export User Data] this crashed my site and comleetey stuffed it upI’m not sure about the exploit – or if this is related to this plugin – you’d need to investigate that further.
The error line matches a previous issue – https://plugins.trac.ww.wp.xz.cn/browser/export-user-data/trunk/export-user-data.php#L756 – to do with anonymous functions ( not available prior to PHP 5.2 ) – but you’ve stated that you’re on a newer version.
The github hosted version removes this line and a second anonymous function call – anyone else having troubles should try that version and report feedback here.
Forum: Plugins
In reply to: [Export User Data] this crashed my site and comleetey stuffed it upHi,
Thanks for the error report – did you try the github version: https://github.com/qstudio/export-user-data ?
I think there is a chance the latest update has a corrupt file in it – so we might issue an update soon, but the new version needs some testing first.
Q
Forum: Plugins
In reply to: [Export Users to CSV] This completely stuffed up my entire databsesPlease note that randomly blaming every plugin you have installed for your site crashing is not useful to you or the WordPress community.
Instead, if you feel like making a genuine contribution, please read how to correctly compile and posts a bug report.
Forum: Plugins
In reply to: [Export User Data] this crashed my site and comleetey stuffed it upFor any users on PHP < 5.2 – we’re working on a fix that removes the anonymous functions – it can be tested from github: https://github.com/qstudio/export-user-data
Forum: Plugins
In reply to: [Export User Data] Error when activating the pluginFor any users on PHP < 5.2 – we’re working on a fix that removes the anonymous functions – it can be tested from github: https://github.com/qstudio/export-user-data
Forum: Plugins
In reply to: [Export User Data] Filter Export By GroupThanks for the feature request, we will consider this, but it’s not going to be a priority – as the plugin has expanded way beyond it’s original scope already ( mostly towards BuddyPress features ).
This means that the work of maintaining and developing the plugin takes a lot more time and effort than is justifiable in terms of our own needs and usage.
Forum: Plugins
In reply to: [Export User Data] this crashed my site and comleetey stuffed it upThe latest version of the plugin requires a PHP version newer than 5.2.0.
If you are using an older version, your site would not load correctly – but the plugin is not capable of deleting or corrupting your database data – I suggest that next time you check your php error logs before completing a full restore.
Forum: Plugins
In reply to: [Export User Data] this crashed my site and comleetey stuffed it upThis post does nothing more than help you to vent some frustration – if you want to help the community, please try to compile some objective data about the issue and we’ll be happy to look into it.
This plugin, like the support we also offer – is completely free – please try to take that into consideration.
Forum: Plugins
In reply to: [Export User Data] Filter Export By GroupDo you mean groups added by BuddyPress or via another plugin?
User groups are not an built-in WordPress feature.
Forum: Plugins
In reply to: [Polylang] include/exclude sync of AFC Repeater FieldsACF Repeater fields are stored using a variation of the parent field name.
For example – a repeater field called “team_player” with a child item called “team_name” will save each row added in a sequential field called “team_player_0_team_name”, “team_player_1_team_name”, etc.
A simple way to remove all “team_player” fields might be to set-up the filter like this:
/** * Remove defined custom fields from Polylang Sync * * @since 0.1 * @param Array $metas * @return Array Array of meta fields */ function pll_copy_post_metas( $metas ) { // this needs to be added to the PolyLang Settings page as an option ## $unsync = array ( 'team_player' ); #var_dump( $unsync ); #var_dump( $metas ); if ( is_array( $metas ) && is_array( $unsync ) ) { // loop over all passed metas ## foreach ( $metas as $key => $value ) { // loop over each unsynch item ## foreach ( $unsync as $find ) { if ( strpos( $value, $find ) !== false ) { unset( $metas[$key] ); } } } } #wp_die( var_dump( $metas ) ); // kick back the array ## return $metas; }Forum: Plugins
In reply to: [Export User Data] Daily Export of New UsersIf this resolves the issue, please mark the ticket as solved and consider leaving a review.
Q
Forum: Plugins
In reply to: [Export User Data] Error when activating the pluginGood news – don’t forget to leave a review 🙂
Q
Forum: Plugins
In reply to: [Export User Data] Error when activating the pluginGood progress.
The export has an option to limit the number of users your export – perhaps 16,500 is going to kill your available memory – look at the “advanced options” and batch the exports.