Plugin Contributor
helened
(@helened)
Thanks for reporting this!
The hyphen(-) in the temporary table name is triggering a syntax error in your MariaDb setup. I will fix this in the next revision of WassUp.
If you are familiar with PHP and want to fix it yourself, you can revise the plugin file “lib/main.php” in WordPress plugin editor and change this line near the bottom of the file (line#1648):
//use a temporary table for large datasets
$tmptable='_wassup_'.$current_user->user_login.rand();
to:
//use a temporary table for large datasets
$tmptable='_wassup_'.rand();