We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Routing in plugins like described here neos/Neos.Demo#190 (comment) is currently broken.
The EventSourcedFrontendNodeRoutePartHandler expects a NodeAdress instance and not a serialized string:
EventSourcedFrontendNodeRoutePartHandler
NodeAdress
neos-development-collection/Neos.Neos/Classes/FrontendRouting/EventSourcedFrontendNodeRoutePartHandler.php
Line 265 in a2dd063
Fix:
if (!$nodeAddress instanceof NodeAddress) { $nodeAddress = NodeAddressFactory::create($this->contentRepositoryRegistry->get($currentRequestSiteDetectionResult->contentRepositoryId)) ->createFromUriString($nodeAddress); }
But the real question is why was it a string in the first place? I fear because of this weird thing?
neos-development-collection/Neos.Neos/Classes/Routing/NodeIdentityConverterAspect.php
Line 34 in 5f80a56
With this fix the Neos.Neos:Plugin works as described here neos/Neos.Demo#190
Neos.Neos:Plugin
Things i tested in the controller (we should ad an behat test for each):
500 Internal Server Error
x-mhs: foobar
The text was updated successfully, but these errors were encountered:
ResponseInterface
BUGFIX: neos#4909 fix subrequest on show action
235632d
> Could not resolve a route and its corresponding URI for the given parameters.
Successfully merging a pull request may close this issue.
Routing in plugins like described here neos/Neos.Demo#190 (comment) is currently broken.
The
EventSourcedFrontendNodeRoutePartHandler
expects aNodeAdress
instance and not a serialized string:neos-development-collection/Neos.Neos/Classes/FrontendRouting/EventSourcedFrontendNodeRoutePartHandler.php
Line 265 in a2dd063
Fix:
But the real question is why was it a string in the first place? I fear because of this weird thing?
neos-development-collection/Neos.Neos/Classes/Routing/NodeIdentityConverterAspect.php
Line 34 in 5f80a56
With this fix the
Neos.Neos:Plugin
works as described here neos/Neos.Demo#190Things i tested in the controller (we should ad an behat test for each):
500 Internal Server Error
x-mhs: foobar
The text was updated successfully, but these errors were encountered: