Volodymyr Kolesnykov

Results 33 comments of Volodymyr Kolesnykov

👋🏽 I have developed yet another [WebAuthn provider](https://github.com/sjinks/wp-two-factor-provider-webauthn) for Two Factor. Its main advantage is that it seamlessly integrates with the U2F FIDO provider without having the user register their...

> It would be great if we could provide a 100% seamless upgrade path to all users @kasparsd the only issue is that there are only a couple of WebAuthn...

@pjv yes; I am planning to get a couple of peer reviews/code reviews this week and address the found issues. After that, I will upload the plugin to WP.org. In...

@pjv https://wordpress.org/plugins/two-factor-provider-webauthn/

@dziudek you can use [this addon](https://wordpress.org/plugins/two-factor-provider-webauthn/) to Two Factor until #427 gets merged.

@simonwheatley @tessaneedham does it look good if I do it this way?

To add the index to a large table: ```sql ALTER TABLE wp_postmeta LOCK=NONE, ALGORITHM=NOCOPY, ADD KEY vip_meta_key_value (meta_key(191), meta_value(100)); ALTER TABLE wp_postmeta LOCK=NONE, ALGORITHM=NOCOPY, DROP KEY meta_key, ADD KEY meta_key...

It probably makes sense to create a one-time cron job that will run these queries: ```sql ALTER TABLE wp_postmeta LOCK=NONE, ALGORITHM=NOCOPY, ADD KEY vip_meta_key_value (meta_key(191), meta_value(100)); ALTER TABLE wp_postmeta LOCK=NONE,...