Einzelnen Beitrag anzeigen
  #3  
Alt 26.07.07, 22:40
awolf42 awolf42 ist offline
Forum Newbie
 
Registriert seit: 22.07.07
Beiträge: 13

Hallo,

habe es eins zu eins übernommen, leider funktioniert es bei mir überhaupt nicht. Die "normalen" Seiten werden zwar korrekt vom Namen her umgesetzt, aber beim Aufruf kommt 404. Dto. bei den tt_news Kategorien; bei den einzelnen Artikeln wird auch der Seitenname nicht erzeugt, d.h. es wird "?tx_ttnews[backPid]=13&cHash=..." drangehängt, und beim Aufruf kommt ebenfalls 404.

Vielleicht kannst du mal einen Blick drauf werfen, falls ich mich unklar ausgedrückt habe: Lernen heute: Lernen heute

Werde es sonst wieder auf simulateStaticDocuments umstellen müssen

Danke und Gruß

Zitat:
Zitat von Aldarin Beitrag anzeigen
Ich hab es nochmal komplett auseinander genommen. Vielleicht hilft es jemanden. Nach 3 Stunden Try and Fail und 1 Stunde Verzweiflungsschreie kam das raus:

PHP-Code:
/**
* Real Url config for tt_news
*
*/

$TYPO3_CONF_VARS['EXTCONF']['realurl'] = array(
    
'_DEFAULT' => array(
        
'init' => array(
            
'enableCHashCache' => 1,
            
'appendMissingSlash' => 'ifNotFile',
            
'enableUrlDecodeCache' => 1,
            
'enableUrlEncodeCache' => 1,
        ),
        
'redirects' => array(),
        
'preVars' => array(
            array(
                
'GETvar' => 'no_cache',
                
'valueMap' => array(
                    
'nc' => 1,
                ),
                
'noMatch' => 'bypass',
            ),
            array(
                
'GETvar' => 'L',
                
'valueMap' => array(
                    
'dk' => '2',
                    
'de' => '1',
                ),
                
'noMatch' => 'bypass',
            ),
        ),
        
'pagePath' => array(
            
'type' => 'user',
            
'userFunc' => 'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main',
            
'spaceCharacter' => '-',
            
'languageGetVar' => 'L',
            
'expireDays' => 7,
            
'rootpage_id' => 472,
        ),
        
'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
                
'article' => 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]',
                        ),
                    ),
                ),
            ),
        
// configure filenames for different pagetypes
        
'fileName' => array(
            
'index' => array(
                
'rss.xml' => array(
                    
'keyValues' => array(
                        
'type' => 100,
                    ),
                ),
                
'rss091.xml' => array(
                    
'keyValues' => array(
                        
'type' => 101,
                     ),
                ),
                
'rdf.xml' => array(
                    
'keyValues' => array(
                        
'type' => 102,
                    ),
                ),
                
'atom.xml' => array(
                    
'keyValues' => array(
                        
'type' => 103,
                    ),
                ),
            ),
        ),
    ),
); 
__________________
Danke und Gruß
Andreas
Mit Zitat antworten