RealURL error: wrong "L" parameter value
RealURL error: wrong "L" parameter value
RealURL 给出了这个错误。
我的网站只有一种语言,我没有在根页面添加任何网站语言。
我在设置中尝试使用 config.linkVars = L
和 config.linkVars = L(0-5)
没有效果。
RealURL 配置自动生成:
<?php
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['realurl'] = array(
'_DEFAULT' => array(
'init' => array(
'appendMissingSlash' => 'ifNotFile,redirect',
'emptyUrlReturnValue' => '/'
),
'pagePath' => array(
'rootpage_id' => '1'
),
'fileName' => array(
'defaultToHTMLsuffixOnPrev' => 0,
'acceptHTMLsuffix' => 1,
'index' => array(
'print' => array(
'keyValues' => array(
'type' => 98
)
)
)
),
'postVarSets' => array(
'_DEFAULT' => array(
'news' => array(
0 => array(
'GETvar' => 'tx_news_pi1[news]',
'lookUpTable' => array(
'table' => 'tx_news_domain_model_news',
'id_field' => 'uid',
'alias_field' => 'title',
'useUniqueCache' => 1,
'useUniqueCache_conf' => array(
'strtolower' => 1,
'spaceCharacter' => '-'
)
)
)
)
)
)
)
);
我认为这是 RealURL 2.1.7 的问题。
我降级到 RealURL 2.1.5 然后它就可以工作了。
编辑:
现在我将 page.theme.language.languageValue = 0
添加到我的模板常量
参见 => https://github.com/dmitryd/typo3-realurl/issues/407
2.1.7 的快速修复可以是配置的 "uid" 整数值的严格分配
linkVars = L(0-1)
…为我完成了这项工作。而不是 L(0-3)
RealURL 给出了这个错误。
我的网站只有一种语言,我没有在根页面添加任何网站语言。
我在设置中尝试使用 config.linkVars = L
和 config.linkVars = L(0-5)
没有效果。
RealURL 配置自动生成:
<?php
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['realurl'] = array(
'_DEFAULT' => array(
'init' => array(
'appendMissingSlash' => 'ifNotFile,redirect',
'emptyUrlReturnValue' => '/'
),
'pagePath' => array(
'rootpage_id' => '1'
),
'fileName' => array(
'defaultToHTMLsuffixOnPrev' => 0,
'acceptHTMLsuffix' => 1,
'index' => array(
'print' => array(
'keyValues' => array(
'type' => 98
)
)
)
),
'postVarSets' => array(
'_DEFAULT' => array(
'news' => array(
0 => array(
'GETvar' => 'tx_news_pi1[news]',
'lookUpTable' => array(
'table' => 'tx_news_domain_model_news',
'id_field' => 'uid',
'alias_field' => 'title',
'useUniqueCache' => 1,
'useUniqueCache_conf' => array(
'strtolower' => 1,
'spaceCharacter' => '-'
)
)
)
)
)
)
)
);
我认为这是 RealURL 2.1.7 的问题。 我降级到 RealURL 2.1.5 然后它就可以工作了。
编辑:
现在我将 page.theme.language.languageValue = 0
添加到我的模板常量
参见 => https://github.com/dmitryd/typo3-realurl/issues/407
2.1.7 的快速修复可以是配置的 "uid" 整数值的严格分配
linkVars = L(0-1)
…为我完成了这项工作。而不是 L(0-3)