Einzelnen Beitrag anzeigen
  #6  
Alt 07.02.07, 13:36
kay kay ist offline
Forum Zuschauer
 
Registriert seit: 04.02.07
Beiträge: 5
Daumen hoch

Gelöst


Hallo,

es lag nicht an der DB! (Obwohl die auch noch mal zu prüfen wäre)

Ich hab folgenden Code in der localconf.php eingefügt und es funktioniert!
PHP-Code:
$TYPO3_CONF_VARS['FE']['addRootLineFields'].= ',tx_realurl_pathsegment';
$TYPO3_CONF_VARS['EXTCONF']['realurl']['_DEFAULT'] = array(
    
'init' => array(
        
'enableCHashCache' => 1
    
),
    
'preVars' => array(
        array(
            
'GETvar' => 'no_cache',
            
'valueMap' => array(
                
'no_cache' => 1,
            ),
            
'noMatch' => 'bypass',
        ),
    array(
        
'GETvar' => 'L',
        
'valueMap' => array(
            
'no' => '1',
        ),
        
'noMatch' => 'bypass',
        ),
    ),
    
'fileName' => array (
    
'defaultToHTMLsuffixOnPrev' => '.htm',
        
'index' => array(
            
'backend.php' => array(
                
'keyValues' => array (
                    
'type' => 100,
                )
            ),
            
'print' => array(                          
                
'keyValues' => array(
                    
'type' => 98,
                )
            ),
        ),
    ),
    
'postVarSets' => array(
        
'_DEFAULT' => array (
            
'article' => array(
                array(
                    
'GETvar' => 'tx_ttnews[tt_news]',
                ),
                array(
                    
'GETvar' => 'tx_ttnews[backPid]',
                ),
            ),
            
'category' => array(
                array(
                    
'GETvar' => 'tx_ttnews[cat]',
                ),
            ),
            
'neste' => array(
                array(
                    
'GETvar' => 'tx_ttnews[pointer]',
                ),
            ),
        ),
    ),
 
'pagePath' => array(
        
'type' => 'user',
        
'userFunc' => 'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main',
        
'spaceCharacter' => '-',
        
'languageGetVar' => 'L',
        
'expireDays' => 3
    
), 
); 
Vielen Dank nochmal an Fabian!!!
Mit Zitat antworten