Almost forgot - you have to add the following to your template setup. Hope this helps. Its the first time I've been able to add something useful....
#REAL URL config.simulateStaticDocuments = 0 config.baseURL = http://lorrainemilligan.co.uk/ config.tx_realurl_enable = 1 config.prefixLocalAnchors = all On 12/2/09 5:46 pm, "Jamie Gorst" <[email protected]> wrote: > I recently installed RealURL 1.1.0 on two versions of Typo and its working a > treat. I also made sure RealURL Management 0.3.4 is working as I run > multiple domains off one installation. > > I did find a useful bit of code that needs to be added to localconf.php - > can't remember where I got it from, however I've posted it below. > > Regards > Jamie > > $TYPO3_CONF_VARS['EXT']['extConf']['realurl'] = > 'a:4:{s:10:"configFile";s:26:"typo3conf/realurl_conf.php";s:14:"enableAutoCo > nf";s:1:"1";s:14:"autoConfFormat";s:1:"0";s:12:"enableDevLog";s:1:"0";}'; > // Modified or inserted by TYPO3 Extension Manager. > // Updated by TYPO3 Extension Manager 24-01-09 12:40:30 > $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, > ###### include your rootpage id here > 'rootpage_id' => 1, > ), > '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, > ), > ), > ), > ), > ), > > > _______________________________________________ > TYPO3-english mailing list > [email protected] > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english _______________________________________________ TYPO3-english mailing list [email protected] http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english
