Actions
Bug #69864
closedAdd most common tracking parameter to default cHashExcludedParameters
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2015-09-16
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
7
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
If a user links to a TYPO3 page with tracking parameters like pk_campaign, pk_kwd, utm_source, ...
TYPO3 include them in cHash calculation. As the calculated cHash does not match, TYPO3 answers with 404 (Default [FE][pageNotFoundOnCHashError] = 1).
To avoid this, the most common tracking parameters should be added to the default value of $GLOBALS['TYPO3_CONF_VARS']['FE']['cHashExcludedParameters'].
As a workaround user can add
$GLOBALS['TYPO3_CONF_VARS']['FE']['cHashExcludedParameters'] .= ', pk_campaign, pk_kwd, utm_source, utm_medium, utm_campaign, utm_term, utm_content';
to the AdditionalConfiguration or set the value in the install tool.
Actions