[TYPO3] Realurl more than one domain

Remco Zwaan rzwaan at fdc.nl
Thu Jun 8 13:39:44 CEST 2006


Hi Dimitry,
 
 
Thanks for you're quick response...i looked at you're notes and
integrate them in my script..but there is no en/decoding taking
place...can please you take a quick view...on my code...
 
<?
$TYPO3_CONF_VARS['SC_OPTIONS']['t3lib/class.t3lib_tstemplate.php']['link
Data-PostProc'][] =
'EXT:realurl/class.tx_realurl.php:&tx_realurl->encodeSpURL';
$TYPO3_CONF_VARS['SC_OPTIONS']['tslib/class.tslib_fe.php']['checkAlterna
tiveIdMethods-PostProc'][] =
'EXT:realurl/class.tx_realurl.php:&tx_realurl->decodeSpURL';
 
$TYPO3_CONF_VARS['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['clearAl
lCache_additionalTables']['tx_realurl_urldecodecache'] =
'tx_realurl_urldecodecache';
$TYPO3_CONF_VARS['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['clearAl
lCache_additionalTables']['tx_realurl_urlencodecache'] =
'tx_realurl_urlencodecache';
 
$TYPO3_CONF_VARS['FE']['addRootLineFields'] .=
',tx_realurl_pathsegment,alias,nav_title,title';
 
 
$realurl_config = array(
         'pagePath' => array(
            'type' => 'user',
            'userFunc' =>
'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main',
            'spaceCharacter' => '-',
        ),
        'fixedPostVars' => array(),
        'postVarSets' => array(
            '_DEFAULT' => array(
                // news archive parameters
                'archive' => 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]',
                        ),
                    );
                       
                       
                       
$TYPO3_CONF_VARS['EXTCONF']['realurl'] = array('_DEFAULT' =>
$realurl_config,
        'blog.fdcintern.local' => $realurl_config,
        'extranet.fdcintern.local' => $realurl_config,
        'hypotheek.fdcintern.local' => $realurl_config);
 
unset($realurl_config);
 
$TYPO3_CONF_VARS['EXTCONF']['realurl']['blog.fdcintern.local']['pagepath
']['rootpage_id'] = 1;
$TYPO3_CONF_VARS['EXTCONF']['realurl']['extranet.fdcintern.local']['page
path']['rootpage_id'] = 61;
$TYPO3_CONF_VARS['EXTCONF']['realurl']['hypotheek.fdcintern.local']['pag
epath']['rootpage_id'] = 833;
 
?>
 
        
 
Thanks...swoany

 




More information about the TYPO3-english mailing list