xenator
Forum Replies Created
-
Forum: Plugins
In reply to: [Import and export users and customers] Uncaught Error while importing usersOk I’ve found the problem ??
In importer.php you’re “initializing” the role variable with an empty string:
$role = “”; (line 178).But later on in line 337 you’re using [] to add the first element hence use it like an array. This does not work:
$role[] = $role;
This leads to an exception on PHP7.x (I guess it should also in earlier versions of PHP?)
Use $role = array(); instead of $role = “”; and it works just fine!
Regards
Sebastian- This reply was modified 6 years, 6 months ago by xenator.
Thanks for your fast reply.
I had a look into wp-cron and many things are much clearer now ??
Thanks!
Hello Javier,
it seems there is still a problem with the cron import.
I’ve activated the daily import but the last execution timestamp is 2 days old.
How can I look into this?It also seems that not all csv entries are processed properly.
On the cron overview tab (../wp-admin/tools.php?page=acui&tab=cron) I can see all the imported users, but some users are missing from the csv. Those users were added 2 days ago!Regards
- This reply was modified 6 years, 6 months ago by xenator.
Now it seems to be working. Maybe the system needs some time to process all data entries.
Also the last executed cronjob time is not shown anymore.
Mine gets stuck at 2018-08-16 20:42:22.
No matter if I deactivate the cron and activate it again. Users get imported, but the timestamp is not updated.Just tried it with version 1.11.3.7
Problem is also there. No first_name / last_name after import.It works with the filname changedpw_email.php and HTML content within that file!
Thanks for the support!
It still doesn’t work.
For example I’ve created a file called ‘changedpw_email.html’, but it still takes the english version of the PHP file.
What am I doing wrong?
- This reply was modified 6 years, 10 months ago by xenator.
Can anyone please answer this? It seems a lot of people have this problem.
Just found this in the documentation
https://docs.ultimatemember.com/article/121-using-html-in-e-mail-templates
but it doesn’t work!
What am I doing wrong?
Forum: Plugins
In reply to: [WP News and Scrolling Widgets] Plugin breaks another pluginSure ??
Forum: Plugins
In reply to: [WP News and Scrolling Widgets] Plugin breaks another pluginI’ve enabled debug in wp-config.php with
// Enable WP_DEBUG mode define( 'WP_DEBUG', true ); // Enable Debug logging to the /wp-content/debug.log file define( 'WP_DEBUG_LOG', true );
But I don’t see any debug.log File in wp-content.
Forum: Plugins
In reply to: [WP News and Scrolling Widgets] Plugin breaks another pluginIt’s also not possible to change the password via /index.php/account/password/ when the news plugin is active! I always get a message telling me that the site cannot be found.
Forum: Plugins
In reply to: [WP News and Scrolling Widgets] Plugin breaks another pluginHello!
It’s definately a problem with the news plugin.
After activating the plugin I’m no longer able to change data and save it in the ultimate member account site (URL /index.php/account/).
I just checked it again and it doesn’t work anymore when the news plugin is active.
Regards
Forum: Plugins
In reply to: [WP News and Scrolling Widgets] limit not workingOk nevermind it’s working now!