qstudio
Forum Replies Created
-
Forum: Plugins
In reply to: [Export User Data] White pageIf you’re happy – please rate the plugin and mark this request as closed.
Q
Forum: Plugins
In reply to: [Export User Data] White pageoffset is the number to start the export from
for example:
1st export — 0( offset ) — 1000 ( total number )
2nd export — 1000 ( offset ) – 1000 ( total number )
3rd export — 2000 ( offset ) – 1000 ( total number )
Q
Forum: Plugins
In reply to: [Export User Data] Exporting S2Member EOT dateclosing and moving request to wp-support forums – http://www.wp-support.co/view/question/exporting-s2member-eot-date
Forum: Plugins
In reply to: [Export User Data] Export only updated profileclosing and moving this suggestion to the wp-support website – http://www.wp-support.co/view/question/export-only-updated-profile
Forum: Plugins
In reply to: [Export User Data] Address formats in user metaI’m closing this request – as no reply from the author.
Forum: Plugins
In reply to: [Export User Data] Multisite support?I’m closing this request – as no reply from the author.
Forum: Plugins
In reply to: [Export User Data] Language issue – cannot export non-english charactersI’m closing this request – as no reply from the author.
Forum: Plugins
In reply to: [Export User Data] All BP xProfile Fields are blankI’m closing this request – as no reply from the author.
Forum: Plugins
In reply to: [Export User Data] No file exportedI’m closing this request – as no reply from the author.
Forum: Plugins
In reply to: [Export User Data] 502 Bad Gateway ErrorI’m closing this request – as no reply from the author.
Forum: Plugins
In reply to: [Export User Data] White page0.8.1 broke all buddypress exports 🙁 … but the latest release has both a range limit option and perhaps a solution to memory over-usage..
Please try to export your whole list first – if that fails, try to limit the number and see how that helps.
Q
Forum: Plugins
In reply to: [Export User Data] White pageok – I pushed a new update, with a simple limit range option.. it’s basic, but please try it and see if it helps.
Q
Forum: Plugins
In reply to: [Export User Data] White pageThe error also shows us where the overload happens:
meta.php: 578
$cache[$mpid][$mkey][] = $mval;which is part of the update_meta_cache() function – so, the calls to get_user_meta() are being cached to save resources on future loads, but in this case, they are also overloading PHP.
One option would be to try using direct $wpdb calls – but this is generally not recommended and it’s not future safe..
Forum: Plugins
In reply to: [Export User Data] White pageExcellent and really, as expected.
As you can see, as you increase the number of users you try to export, you also increase the amount of resources used – eventually you hit the limit and PHP stops executing..
However, your PHP limit is very low – 104mb.
I suggest you ask your host to increase your PHP limit to 256mb – you can also validate your PHP settings by running phpinfo()
Q
Forum: Plugins
In reply to: [Export User Data] White pageThanks – did you also try to activate Error Logging in your wp-config.php – an actual error message from the server would really help solve this problem?
Q