Bug #88304
closedPageRouter: Php warning (empty needle)
100%
Description
After Upgrading to TYPO3 v9.5.6 i get the php Warning:
(1/1) #1476107295 TYPO3\CMS\Core\Error\Exception PHP Warning: strpos(): Empty needle in /vagrant/htdocs/typo3/sysext/core/Classes/Routing/PageRouter.php line 126
It only occurs on Subpages (obviously) where the PageRouter is used.
The normalizedParams (scriptName) ist an empty string.
Im using nginx with php-fpm (7.3).
Debug of some of my $_SERVER
values.
$_SERVER['ORIG_PATH_INFO']
=> not set$_SERVER['PATH_INFO']
=> empty string$_SERVER['ORIG_SCRIPT_NAME']
=> not set$_SERVER['SCRIPT_NAME']
=> '/index.php' (10 chars)
To avoid the error:
1. Set TYPO4 to Live Mode in Install Tools Configuration Presets
or
2. Replace the if condition in line 136 with:if (!empty($scriptName) && strpos($urlPath, $scriptName) !== false) {
Updated by Gerrit Code Review over 5 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/60719
Updated by Gerrit Code Review over 5 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/60719
Updated by Gerrit Code Review over 5 years ago
Patch set 3 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/60719
Updated by Gerrit Code Review over 5 years ago
Patch set 4 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/60719
Updated by Gerrit Code Review over 5 years ago
Patch set 5 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/60719
Updated by Gerrit Code Review over 5 years ago
Patch set 6 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/60719
Updated by Gerrit Code Review over 5 years ago
Patch set 1 for branch 9.5 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/60734
Updated by Benjamin Franzke over 5 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 739efe45afa04a0dae540198691fa15fc53e6a38.