Einzelnen Beitrag anzeigen
  #5  
Alt 07.08.08, 13:41
pixell_gesamt pixell_gesamt ist offline
Forum Zuschauer
 
Registriert seit: 07.08.08
Beiträge: 1

Hallo zusammen,

ich kämpfe seit längerem mit RealURL, habe auch schon diese und andere Konfigurationen ausprobiert jedoch ohne erfolg.

Vielleicht kann mir jemand dabei helfen.

So erstmal zu dem Stand der Dinge:

System:
- Windows
- XAMP 1.6.2 (Apache 2.2.4, PHP Version 5.2.2, MySQL 5.0.41)

Apache:

Code:
    RewriteEngine On
    Options None
    Options +FollowSymLinks

    #RewriteBase /

    RewriteRule ^typo3 - [L]
    RewriteRule ^typo3/.* - [L]
    RewriteRule ^(typo3temp|typo3conf|t3lib|tslib|fileadmin|uploads)/$ - [L]
    RewriteRule ^(typo3temp|typo3conf|t3lib|tslib|fileadmin|uploads)/.$ - [L]

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-l

    RewriteRule \.(html)$ /index.php [L]
#    RewriteRule ^(.*)$ /index.php/$1 [L]
#    RewriteRule (\.html|/)$ /index.php/$1 [L]
#    RewriteRule .* /index.php [L]
RealURL:

PHP-Code:

$GLOBALS
['TYPO3_CONF_VARS']['EXTCONF']['realurl'] = array ( 
    
'_DEFAULT' => array (
        
'init' => array (
            
'enableCHashCache' => '1',
            
'appendMissingSlash' => 'ifNotFile',
            
'enableUrlDecodeCache' => '1',
            
'enableUrlEncodeCache' => '1',
        ),
        
'redirects' => array (
        ),
        
'preVars' => array (
            
'0' => array (
                
'GETvar' => 'no_cache',
                
'valueMap' => array (
                    
'nc' => '1',
                ),
                
'noMatch' => 'bypass'
            
),
            
'1' => array (
                
'GETvar' => 'L',
                
'valueMap' => array (
                    
'de' => '0',
                    
'en' => '1',
                ),
                
'noMatch' => 'bypass',
            ),
            
'2' => array (
                
'GETvar' => 'lang',
                
'valueMap' => array (
                    
'de' => 'de',
                    
'en' => 'en',
                ),
                
'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' => '0',
        ),
        
'fixedPostVars' => array (
        ),
/*        'postVarSets' => array (
            '_DEFAULT' => array (
                'archive' => array (
                    '0' => array (
                        'GETvar' => 'tx_ttnews[year]',
                    ),
                    '1' => 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',
                        ),
                    ),
                ),
                'browse' => array (
                    '0' => array (
                        'GETvar' => 'tx_ttnews[pointer]',
                    ),
                ),
                'select_category' => array (
                    '0' => array (
                        'GETvar' => 'tx_ttnews[cat]',
                    ),
                ),
                'article' => array (
                    '0' => 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' => '-',
                            ),
                        ),
                    ),
                    '1' => array (
                        'GETvar' => 'tx_ttnews[swords]',
                    ),
                ),
            ),
        ),*/
        
'fileName' => array (
//
// if you don't want .html-URLs set the following to "false" (e.g. 'defaultToHTMLsuffixOnPrev' => false,)
// then you get http://www.yourdomain.com/imprint/ instead of http://www.yourdomain.com/imprint.html
//
            
'defaultToHTMLsuffixOnPrev' => true,
            
'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',
                    ),
                ),
            ),
        ),
    ),

); 
typo3: 4.2.0
- realUrl 1.4.0
- realurlmanagement 0.3.4
- nfc_realurl_individual 0.1.0
- aeurltool 0.1.0

Ich kann die 1. Ebene anzeigen, bekomme aber in der 2. Ebene nur die Meldung
Code:
 Error!

                                 Reason: "bla.html" could not be found, closest page matching is



und ich will für die Übersicht die Hierarchie der Seiten (und Unterseiten) beibehalten.


Vielen Dank im Voraus.
Mit Zitat antworten