我设法使新闻(tx_news)在默认语言下工作。然后我想本地化新闻,所以我为他们创建了转换。但是,当我访问非默认语言的列表视图时,它失败并带有
Request parameters could not be validated (&cHash comparison failed)
失败的链接不包含cHash,它看起来像这样
http://host.com/mysite/en/about-us/
可能是什么原因以及如何解决?这是realURL设置
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['realurl']=array (
'_DEFAULT' =>
array (
'init' =>
array (
'enableCHashCache' => true,
'enableCHashCache' => 1,
'respectSimulateStaticURLs' => 0,
'appendMissingSlash' => 'ifNotFile,redirect',
//'adminJumpToBackend' => true,
'enableUrlDecodeCache' => true,
'enableUrlEncodeCache' => true,
'emptyUrlReturnValue' => '/mysite/',
),
'pagePath' =>
array (
'type' => 'user',
'userFunc' => 'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main',
'spaceCharacter' => '-',
'languageGetVar' => 'L',
'rootpage_id' => '1',
'firstHitPathCache'=> '1',
),
'preVars' =>
array (
0 =>
array (
'GETvar' => 'L',
'valueMap' =>
array (
'cs' => '1',
),
'noMatch' => 'bypass',
),
),
'fixedPostVars' => array(
'19' => array(
array(
'GETvar' => 'tx_news_pi1[controller]',
'noMatch' => 'bypass',
),
array(
'GETvar' => 'tx_news_pi1[action]',
'noMatch' => 'bypass',
),
array(
'GETvar' => 'tx_news_pi1[news]',
'lookUpTable' => array(
'table' =>
'tx_news_domain_model_news',
'id_field' => 'uid',
'alias_field' => 'title',
'addWhereClause' => ' AND NOT deleted',
'useUniqueCache' => 1,
'useUniqueCache_conf' => array(
'strtolower' => 1,
'spaceCharacter' => '-',
),
'enable404forInvalidAlias' => '1',
'languageGetVar' => 'L',
'languageExceptionUids' => '',
'languageField' => 'sys_language_uid',
'transOrigPointerField' => 'l10n_parent',
),
),
),
),
),
);
答案 0 :(得分:12)
由于这个错误,我经常打架。
转到Typo3安装工具=>所有配置并更改值1 => 0表示此属性。
[FE] [pageNotFoundOnCHashError] = 0
我希望这个gona解决问题!!!
答案 1 :(得分:2)
我似乎已经通过清空数据库中的tx_realurl_chashcache
来修复它。
答案 2 :(得分:1)
我不得不禁用页面的缓存。在我的网站上似乎是" no_cache"参数混乱了混乱计算。这样我就能保持 - 我认为重要 - 安全设置[FE] [pageNotFoundOnCHashError] = 0
答案 3 :(得分:1)
在Typo3 8.x版本中:
单击后端中的“口语”模块,然后单击“刷新所有条目”
现在,当您浏览前端时,将重新创建这些条目。而且一切都应该正常工作。
基本上,这里我们将删除所有页面的所有页面路径条目,以便重新创建它们。
您还可以通过选择“删除此页面的所有条目”选项来删除所选页面的条目