vjk
Forum Replies Created
-
Forum: Plugins
In reply to: [Import and export users and customers] Cron import brokenSome more info: version 1.15.6.4 is the last one that works. In the next version there were changes to user role handling. The required functionality might not be available when run from cron: https://developer.ww.wp.xz.cn/reference/functions/get_editable_roles/
Thanks, it works now!
regards,
Ville
It was the one in the first message, just insert any hashtag.
regards,
Ville
Yes, there are still always 20 pics shown.
regards,
Ville
Hi,
I’m seeing this as well, using Formidable Forms. Submitting the form triggers an email, and that is where the problem occurs:
PHP Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 23844 bytes) in /home/****/public_html/wp-includes/wp-db.php on line 1889I’m also seeing the empty email log with 1.8 exactly as described above. I downgraded to 1.7.10 and the problems disappeared. So something definitely broke with 1.8 upgrade.
regards,
Ville
Forum: Plugins
In reply to: [Import and export users and customers] wp_delete_user() undefinedHi Javier,
The current version 1.10.6 still seems to have this bug. I hope it will be fixed in the next version.
br,
Ville
Forum: Plugins
In reply to: [Import and export users and customers] Corrupt password after importBut the updated documentation (1.9.9.8) still says:
“If you don’t create a column for passwords: passwords will be generated automatically”I still don’t know what to do.
regards,
VJK
Forum: Plugins
In reply to: [Import and export users and customers] Corrupt password after importIs there something still broken with updating passwords? I imported our user base (as I have done previously) using cron, and the CSV was like this:
Username,Email,Password,display_name,nickname,first_name,last_name,billing_phone
999999,[email protected],,John Doe,John Doe,John Doe,+123 123456As you can see, the password column is there but empty, as instructed. I don’t want to touch the passwords at all. I ran that a moment ago, and couldn’t log in any more. Only after resetting the password I got in. But I’m afraid all of our users now have to reset their passwords. Not good at all. The importer log shows all records as having been “updated”. In reality, there were just a couple of additions.
regards,
VJK
Forum: Plugins
In reply to: [Import and export users and customers] Scheduled cron import doesn’t workForum: Plugins
In reply to: [Import and export users and customers] Scheduled cron import doesn’t workHi,
I can also verify that if I comment out this, the scheduled import works:
if ( ! isset( $_POST[‘acui-nonce’] ) || ! wp_verify_nonce( $_POST[‘acui-nonce’], ‘acui-import’ ) ) {
wp_die( ‘Nonce problem’ );
}Forum: Plugins
In reply to: [Import and export users and customers] Scheduled cron import doesn’t workHi,
The acui_cron_process actually starts and proceeds to acui_fileupload_process. In the beginning of that function,
isset( $_POST[‘acui-nonce’] )
returns false so
wp_die( ‘Nonce problem’ );
is called.Any ideas?