[TYPO3] RealURL: after upgrade 1 of 3 domains in multisite inst. no longer shows pages

Robert Wuergler typo3 at wuergler-consulting.ch
Wed Sep 24 17:29:34 CEST 2008


> Hi!

Hi Dmitry and Thanks!


 > RealURL management is a third-party extension and RealURL does not
> guarantie compatibility with any such extensions.

Ok, unless config is screwed I might try without, just to make sure.

>> Strange thing obviously: 2 of the 3 domains still work perfect AND when
>> I roll back to RealURL 1.4 all of them work again. So there's probably
>> no point pasting configs etc.
> 
> Actually it is. Problem is most likely in config. Where else could it be?

Well, it must be then ...
So below it is, it originates from various sources, not really knowing
what it is all about ;-)

Best regards,
robert

# Typoscript Setup:
config.simulateStaticDocuments = 0
config.baseURL = http://www.somedomain.ch/
config.tx_realurl_enable = 1
config.prefixLocalAnchors = all

# from localconf.php:
## start realurl
$TYPO3_CONF_VARS['EXTCONF']['realurl']['_DEFAULT'] = array(
	'init' => array(
		'enableCHashCache' => 1,
		'appendMissingSlash' => 'ifNotFile',
		'enableUrlDecodeCache' => 1,
		'enableUrlEncodeCache' => 1,
		'postVarSet_failureMode' => 'redirect_goodUpperDir',
	),
	'pagePath' => array(
		'type' => 'user',
		'userFunc' =>
'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main',
		'spaceCharacter' => '-',
		'languageGetVar' => 'L',
		'expireDays' => 3
	),
	'fileName' => array (
		'defaultToHTMLsuffixOnPrev' => true,
		'index' => array(
			'backend.php' => array(
				'keyValues' => array (
				'type' => 100,
				)
			),
			'print' => array(
				'keyValues' => array(
				'type' => 98,
				)
			),
			'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,
				),
			),
		),
		'defaultToHTMLsuffixOnPrev' => 1,
	),
	'fixedPostVars' => array(),
	'postVarSets' => array(
		'_DEFAULT' => array (
			'keyword' => array(array('GETvar' => 'tx_drwiki_pi1[keyword]',),),
			'showuid' => array(array('GETvar' => 'tx_drwiki_pi1[showUid]',),),
			'cmd' => array(array('GETvar' => 'tx_drwiki_pi1[cmd]',),),
			'archive' => array(
				array(
					'GETvar' => 'tx_ttnews[year]' ,
					),
				array(
					'GETvar' => 'tx_ttnews[month]' ,
					'valueMap' => array(
						'januar' => '01',
						'februar' => '02',
						'maerz' => '03',
						'april' => '04',
						'mai' => '05',
						'juni' => '06',
						'juli' => '07',
						'august' => '08',
						'september' => '09',
						'oktober' => '10',
						'november' => '11',
						'dezember' => '12',
					)
				),
				array(
						'GETvar' => 'tx_ttnews[day]',
					),
				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' => '_',
						)						
					),
				),
			),
			// news pagebrowser
			'browse' => array(
				array(
					'GETvar' => 'tx_ttnews[pointer]',
					),
			),
			// news categories -- recomm. tt_news - diabled --rw
			## 'select_category' => array (
			## 	array(
			## 		'GETvar' => 'tx_ttnews[cat]',
			## 		),
			## ),
			// news categories -- new according to realurl_example_setup.php from
timtab --rw
			'category' => array(
				array(
					'GETvar'      => 'tx_ttnews[cat]',
					'lookUpTable' => array(
						'table'               => 'tt_news_cat',
						'id_field'            => 'uid',
						'alias_field'         => 'title',
						'addWhereClause'      => ' AND NOT deleted',
						'useUniqueCache'      => 1,
						'useUniqueCache_conf' => array(
							'strtolower'     => 1,
							'spaceCharacter' => '_',
						),
					),
				),
			),
			'not_cached' => array(
				'type' => 'single',
				'keyValues' => array(
					'no_cache' => 1,
				),
			),
			'xmlrpc' => array(
				'type' => 'single',
				'keyValues' => array(
					'type' => 200,
				),
			),
			'trackback' => array(
				'type' => 'single',
				'keyValues' => array(
					'type' => 200,
				),
			),
			'photobook' => array(
				array(
					'GETvar' => 'tx_gooffotoboek_pi1[srcdir]'
				),
				array(
					'GETvar' => 'tx_gooffotoboek_pi1[fid]'
				),
				array(
					'GETvar' => 'tx_gooffotoboek_pi1[func]',
						'valueMap' => array(
							'thumbnails' => 'thumb',
						),
				),
			),
		),
	),
);
## end realurl


More information about the TYPO3-english mailing list