[TYPO3] realurl - language

Dionisios Fragkopoulos dfragos at auth.gr
Sun Apr 16 02:16:44 CEST 2006


I use the one tree - 2 languages way. The problem is that the one subtree 
uses titles in Greek and allthough the realurl work fine for the pages in 
English tree(english titles here), I can't make it work It doesn't recognize 
the greek pages. I use utf-8....

The code I use in localconf.php is

<?php
$TYPO3_CONF_VARS['SC_OPTIONS']['t3lib/class.t3lib_tstemplate.php']['linkData
-PostProc'][] = 'EXT:realurl/class.tx_realurl.php:&tx_realurl->encodeSpURL';
$TYPO3_CONF_VARS['SC_OPTIONS']['tslib/class.tslib_fe.php']['checkAlternative
IdMethods-PostProc'][] =
'EXT:realurl/class.tx_realurl.php:&tx_realurl->decodeSpURL';
$TYPO3_CONF_VARS['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['clearAllCac
he_additionalTables']['tx_realurl_urldecodecache'] =
'tx_realurl_urldecodecache';
$TYPO3_CONF_VARS['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['clearAllCac
he_additionalTables']['tx_realurl_urlencodecache'] =
'tx_realurl_urlencodecache';
$TYPO3_CONF_VARS['FE'] ['addRootLineFields'] .=
',tx_realurl_pathsegment,alias,nav_title,title';
$TYPO3_CONF_VARS['EXTCONF']['realurl']['_DEFAULT'] = array(
 'init' => array(
  'enableCHashCache' => 1,
  'enableUrlDecodeCache' => 1,
  'enableUrlEncodeHash' => 1,
  'appendMissingSlash' => 'ifNotFile'
 ),
 'redirects' => array(),
 'preVars' => array(
  array(
   'GETvar' => 'no_cache',
   'valueMap' => array(
    'no_cache' => 1,
   ),
   'noMatch' => 'bypass',
  ),
  array(
   'GETvar' => 'L',
   'valueMap' => array(
    'de' => '0',
    'en' => '1',
   ),
   'noMatch' => 'bypass',
  ),
 ),

  'pagePath' => array(
  'type' => 'user',
        'userFunc' =>
'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main',
  'spaceCharacter' => '-',
  'languageGetVar' => 'L',
  'expireDays' => '3',
  'rootpage_id' => '1'
 ),
 'noMatch' => 'bypass',

 'fileName' => array (
  'defaultToHTMLsuffixOnPrev' => 1,
  'index' => array(
   'page.html' => array(
    'keyValues' => array (
     'type' => 1,
    )
   ),
  ),
  '_DEFAULT' => array(
   'keyValues' => array(
    'type' => 1,
   ),
  ),
 ),

);
?>

Thanks in advance 





More information about the TYPO3-english mailing list