Php error log says #19 {main}
thrown in /srv/htdocs/wp-content/plugins/license-manager-for-woocommerce/includes/api/Authentication.php on line 221
and that is
/**
* Return the user data for the given consumer_key.
*
* @param string $consumerKey Part of the user authentication
*
* @return array
*/
public function getUserDataByConsumerKey($consumerKey)
{
global $wpdb;
$consumerKey = wc_api_hash(sanitize_text_field($consumerKey));
$user = $wpdb->get_row(
$wpdb->prepare(
"
SELECT id, user_id, permissions, consumer_key, consumer_secret, nonces
FROM {$wpdb->prefix}lmfwc_api_keys
WHERE consumer_key = %s
",
$consumerKey
)
);
return $user;
}