zaus

Results 24 comments of zaus

`WP_DEBUG` etc are in your wp_config.php file -- https://codex.wordpress.org/Debugging_in_WordPress Did you manage to get those turned on? Are you using a super/admin account? The only thing I can think of...

I just noticed that in one of the [links I posted earlier](https://wordpress.org/support/topic/wp-admin-sorry-you-are-not-allowed-to-access-this-page/) someone mentioned that their Cloudflare plugin was the culprit...

Superadmin should have `manage_options` by default, which is a native WP capability so you can manage options pages and other high-level stuff. If you can see other settings pages then...

Similar request in the context of exposing conditional logic: https://wordpress.org/support/topic/customization-advice?replies=1#post-6185433

Leverage existing "fplugin" concepts like [`GET_FORM_SUBMISSION`](https://github.com/zaus/forms-3rdparty-integration/blob/master/plugins/fplugin_base.php#L110) and build an array of form/fields around https://github.com/zaus/forms-3rdparty-integration/blob/master/plugin-ui.php#L39

It's funny because originally that's what "add new service" did -- it's cloning the last metabox but then [removing all except the first row and clearing the data](https://github.com/zaus/forms-3rdparty-integration/blob/master/plugin.admin.js#L63). So it'd...

I think you want the `StepUpLeakyTokenBucket` instead? (or maybe the StepDown per #6) But for any strategy, the basic pattern is something like: while(doIHaveMoreActions()) { myAction(); while (yourBucket.ShouldThrottle(n, out snooze))...

I'm testing with something like: // just to see what's happening while the throttle is snoozing... var continueInterstitial = true; var inBetweenLoops = 0; var repeatLoops = 0; var ct...

Followup -- tried creating a custom variable section instead of the service name, but it doesn't work either: ```yml service: My-Shorter-Namespace-Without-Periods custom: dotnetProj: My.Project.That.Has.Periods provider: name: aws runtime: dotnetcore3.1 package:...