Hi we registers some security when security is not registered when notice shows to setup vibebp .
please try adding this code in your wplms-customizer.php file in wplms custmizer plugin. :
add_action('init',function(){
$x = set_transient('vibebp_admin_security');
if($x)
return;
$security = wp_generate_password(12,false,false);
set_transient('vibebp_admin_security',$security,60*60);
});
after adding code then run setup wizard , if wplms customizer is not available in site then add it to your theme functions.php file .a