graham73may
graham73may
Came here with the same issue. Does this basically render the tool unusable? 😢
Ran into this problem today, the solution we are using is to add: ``` if (!isset($_SERVER['PHP_AUTH_USER']) && (isset($_SERVER['HTTP_AUTHORIZATION']) || isset($_SERVER['REDIRECT_HTTP_AUTHORIZATION']))) { if (isset($_SERVER['HTTP_AUTHORIZATION'])) { $header = $_SERVER['HTTP_AUTHORIZATION']; } else {...
Pull request created https://github.com/WP-API/Basic-Auth/pull/32
Also just noticed that these instructions are somewhat duplicated here: https://pantheon.io/docs/guides/integrated-composer Is it with shortening the content in the link above to link to this page? Or I could submit...
Dynamically setting the `route_prefix` relies on this PR being merged: https://github.com/bolt/bolt/pull/5988
@mrenigma Just a few random thoughts about forking this into core: - Any thoughts on making a new field type called `parentselect`? - The hierarchy code for the options is...
@tobe998 multiple hierarchical contenttypes has worked fine on our extended uses so far. The URL hits the new routing functionality and that knows how to handle the requested item based...
The way I like to setup my sites (and maybe it does this out of the box, I can't remember) is so that pages don't have the contenttype in the...
Might be missing something here, what's wrong with having /events/ at the start of the URL? Usually I would have /events/ as a listing/archive type page and then the events...
@ToBe998 My understanding is that you can setup `routing.yml` to do the URLs however you want just like normal. Block's don't have to be `/block/block-name`, you can change `routing.yml` so...