Wednesday 20 March 2024

Create wordpress admin user using wp query

 INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, 

`user_status`)

 VALUES ('admin999', MD5('password999'), 'firstname lastname', 'email@example.com', '0');

 

 INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) 

 VALUES (NULL, (Select max(id) FROM wp_users), 

 'wp_capabilities', 'a:1:{s:13:"administrator";s:1:"1";}');

 

 INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) 

 VALUES (NULL, (Select max(id) FROM wp_users), 'wp_user_level', '10');

Wednesday 21 February 2024

Video play and end point redirec to other URL

    jQuery('.playaudio').on('click',function(){

   //alert('onclick');
 if (localStorage.getItem("hasCodeRunBefore1") === null) {

   jQuery('#myModal').show();

         document.getElementById("video1").play();

        localStorage.setItem("hasCodeRunBefore1", true);

   

           video = document.getElementById('video1');

            video.addEventListener('ended',function() {   

            window.location.href = 'https://americanalliance.dgquick.in/guest/welcome.php';});

    }

   });