Daniel Kudwien

Results 45 comments of Daniel Kudwien

Other transliteration packages, such as the [Transliteration component of Drupal](https://github.com/drupal/drupal/tree/8.8.x/core/lib/Drupal/Component/Transliteration) - whose data was originally based on the [Unidecode](https://metacpan.org/pod/release/SBURKE/Text-Unidecode-0.04/lib/Text/Unidecode.pm) CPAN package but heavily improved in the meantime - are using...

Also ran into this. The case of the Shipping task was fixed in WooCommerce 6.8.0, so please update to get some speed back. However, further problems with the onboarding tasks...

Why is it invoked twice: TaskLists::setup_tasks_remaining() checks whether the whole list is complete: https://github.com/woocommerce/woocommerce/blob/77d5842642889d8a4f02a82c0d4890150541586e/plugins/woocommerce/src/Admin/Features/OnboardingTasks/TaskLists.php#L420-L423 But the TaskList asks each task: https://github.com/woocommerce/woocommerce/blob/77d5842642889d8a4f02a82c0d4890150541586e/plugins/woocommerce/src/Admin/Features/OnboardingTasks/TaskList.php#L241-L247 And if it's not complete, TaskLists checks each task...

This appears to duplicate #21, which additionally changes the default listing page (sans run ID) to a source selection page.

You can put the following lines into your `wp-config.php` to not hardcode them: ```php define('JWT_AUTH_SECRET_KEY', $_ENV['JWT_AUTH_SECRET_KEY'] ?? ''); define('JWT_AUTH_CORS_ENABLE', $_ENV['JWT_AUTH_CORS_ENABLE'] ?? ''); ``` This has the benefit that you are...

@oivinds Do you maybe have caching plugins or caching backends enabled that need flushing? Or maybe your PHP opcache does not invalidate files and needs a restart?

✅ Tests are still passing ```console $ URL=http://localhost USERNAME=myuser PASSWORD=mypass composer run test > ./vendor/bin/phpunit PHPUnit 9.5.13 by Sebastian Bergmann and contributors. ............. 13 / 13 (100%) Time: 01:08.257, Memory:...

Just noticed that the WordPress.org support forum for the plugin is full of complaints about this behavior, too: https://wordpress.org/support/plugin/jwt-auth/

> It would be in this case to add a blacklist so that the JWT verification is carried out for certain API requests @cedricDevWP Could you expand on which certain...

@cedricDevWP If I understand you correctly, then you would want to have a permission callback function, so that a route can require authentication via JWT (not allowing any other way...