Тема: RealUrl и POST
Показать сообщение отдельно
Старый 17.12.2012, 16:00   #3
Olim
Новенький
 
Регистрация: 06.08.2011
Сообщений: 17
По умолчанию

<?php
$TYPO3_CONF_VARS['FE']['addRootLineFields'] .= ',tx_realurl_pathsegment,alias,nav_title,title';
$TYPO3_CONF_VARS['EXTCONF']['realurl']['_DEFAULT'] = array(
'init' => array(
'enableCHashCache' => 1,
'appendMissingSlash' => 'ifNotFile',
'enableUrlDecodeCache' => 1,
'enableUrlEncodeCache' => 1,
'respectSimulateStaticURLs' => 0,
'enableAllUnicodeLetters' => 1,
'postVarSet_failureMode'=>'redirect_goodUpperDir',
'emptyUrlReturnValue' => '/',
'useCHashCache' => '0',
//'doNotRawUrlEncodeParameterNames' => true,
),

'redirects_regex' => array (
),

'preVars' => array(
array(
'GETvar' => 'no_cache',
'valueMap' => array(
'no_cache' => 1,
),
'noMatch' => 'bypass',
),
array(
'GETvar' => 'L',
'valueMap' => array(
'ru' => '1',
'en' => '0',
'ge' => '3',
'ar' => '4',
),
'noMatch' => 'bypass',
),
),

'pagePath' => array(
'type' => 'user',
'userFunc' => 'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main',
'spaceCharacter' => '-',
'languageGetVar' => 'L',
'expireDays' => 180,
'rootpage_id' => 7,
'languageExceptionUids' => '4',
'languageField' => 'sys_language_uid',
'transOrigPointerField' => 'l18n_parent',
'autoUpdate' => 1,
),

'postVarSets' => array(
'_DEFAULT' => array(
// news archive parameters
'archiv' => array(
array(
'GETvar' => 'tx_ttnews[year]' ,
),
array(
'GETvar' => 'tx_ttnews[month]' ,
'valueMap' => array(
'january' => '01',
'february' => '02',
'march' => '03',
'april' => '04',
'may' => '05',
'june' => '06',
'july' => '07',
'august' => '08',
'september' => '09',
'october' => '10',
'november' => '11',
'december' => '12',
)
),
),
// news pagebrowser
'browse' => array(
array(
'GETvar' => 'tx_ttnews[pointer]',
),
),
// news categories
'select_category' => array (
array(
'GETvar' => 'tx_ttnews[cat]',
),
),
// news articles and searchwords
'artikel' => array(
array(
'GETvar' => 'tx_ttnews[tt_news]',
'lookUpTable' => array(
'table' => 'tt_news',
'id_field' => 'uid',
'alias_field' => 'title',
'addWhereClause' => ' AND NOT deleted',
'useUniqueCache' => 1,
'useUniqueCache_conf' => array(
'strtolower' => 1,
'spaceCharacter' => '-',
),
),
),
array(
'GETvar' => 'tx_ttnews[swords]',
),
),
),
),

'fileName' => array(

'index' => array(
'rss.xml' => array(
'keyValues' => array(
'type' => 100,
),
),
'robots.txt' => array(
'keyValues' => array(
'type' => '201',
),
),
'rss091.xml' => array(
'keyValues' => array(
'type' => 101,
),
),
'rdf.xml' => array(
'keyValues' => array(
'type' => 102,
),
),
'atom.xml' => array(
'keyValues' => array(
'type' => 103,
),
),
'print.htm' => array(
'keyValues' => array(
'type' => '1',
)
),
'index.htm' => array(
'keyValues' => array(
)
),
),
),
);
?>
Olim вне форума   Ответить с цитированием