hallo leute,
die installation/konfiguration von realurl bekomm' ich einfach nicht hin.
ich bekomme immer wieder folgende fehlermeldung:
The requested page didn't have a proper connection to the tree-root!
(Broken rootline)
ich hab schon db aktualisieren lassen und "Update required tables" durchgeführt, aber kein erfolg!
meine konfiguration ist folgende:
.htaccess
RewriteEngine On
RewriteRule ^typo3$ - [L]
RewriteRule ^typo3/.*$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule .* index.php
localconf.php
<?php
$TYPO3_CONF_VARS['SYS']['sitename'] = 'New TYPO3 site';
// Default password is "joh316" :
$TYPO3_CONF_VARS['BE']['installToolPassword'] = 'XXXXX';
$TYPO3_CONF_VARS['EXT']['extList'] = 'tsconfig_help,context_help,extra_page_cm_options,impexp,sys_note,tstemplate,tstemplat e_ceditor,tstemplate_info,tstemplate_objbrowser,tstemplate_analyzer,func_wizards,wizar d_crpages,wizard_sortpages,lowlevel,install,belog,beuser,aboutmodules,setup,taskcenter ,info_pagetsconfig,viewpage,rtehtmlarea,css_styled_content,t3skin';
$typo_db_extTableDef_script = 'extTables.php';
## INSTALL SCRIPT EDIT POINT TOKEN - all lines after this points may be changed by the install script!
$typo_db_username = 'XXXXX'; // Modified or inserted by TYPO3 Install Tool.
$typo_db_password = 'XXXXX'; // Modified or inserted by TYPO3 Install Tool.
$typo_db_host = 'localhost'; // Modified or inserted by TYPO3 Install Tool.
$TYPO3_CONF_VARS['SYS']['encryptionKey'] = 'XXXXX'; // Modified or inserted by TYPO3 Install Tool.
$TYPO3_CONF_VARS['SYS']['compat_version'] = '4.1'; // Modified or inserted by TYPO3 Install Tool.
$typo_db = 'web29s8'; // Modified or inserted by TYPO3 Install Tool.
$TYPO3_CONF_VARS['BE']['installToolPassword'] = 'XXXXX'; // Modified or inserted by TYPO3 Install Tool.
// Updated by TYPO3 Install Tool 29-11-07 11:44:52
$TYPO3_CONF_VARS['EXT']['extList'] = 'css_styled_content,tsconfig_help,context_help,extra_page_cm_options,impexp,sys_note,t stemplate,tstemplate_ceditor,tstemplate_info,tstemplate_objbrowser,tstemplate_analyzer ,func_wizards,wizard_crpages,wizard_sortpages,lowlevel,install,belog,beuser,aboutmodul es,setup,taskcenter,info_pagetsconfig,viewpage,rtehtmlarea,t3skin,static_info_tables,t emplavoila,csh_de'; // Modified or inserted by TYPO3 Extension Manager.
$TYPO3_CONF_VARS['EXT']['extConf']['templavoila'] = 'a:1:{s:7:"enable.";a:1:{s:13:"oldPageModule";s:1:"0";}}'; // Modified or inserted by TYPO3 Extension Manager.
// Updated by TYPO3 Extension Manager 29-11-07 11:59:33
$TYPO3_CONF_VARS['BE']['forceCharset'] = 'utf-8'; // Modified or inserted by TYPO3 Install Tool.
// Updated by TYPO3 Install Tool 29-11-07 12:47:32
// Enkodierung der URL
$TYPO3_CONF_VARS['SC_OPTIONS']['t3lib/class.t3lib_tstemplate.php']['linkData-PostProc']['tx_realurl'] = 'EXT:realurl/class.tx_realurl.php:&tx_realurl->encodeSpURL';
// Dekodierung der URL
$TYPO3_CONF_VARS['SC_OPTIONS']['tslib/class.tslib_fe.php']['checkAlternativeIdMethods-PostProc']['tx_realurl'] = 'EXT:realurl/class.tx_realurl.php:&tx_realurl->decodeSpURL';
// Cache-Einstellungen
$TYPO3_CONF_VARS['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['clearPageCacheEval']['tx_realurl'] = 'EXT:realurl/class.tx_realurl.php:&tx_realurl->clearPageCacheMgm';
$TYPO3_CONF_VARS['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['clearAllCache_additionalTables']['tx_realurl_urldecodecache'] = 'tx_realurl_urldecodecache';
$TYPO3_CONF_VARS['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['clearAllCache_additionalTables']['tx_realurl_urlencodecache'] = 'tx_realurl_urlencodecache';
// Vererbung des RealUrl-Pfadsegmentes an Unterseiten
$TYPO3_CONF_VARS['FE']['addRootLineFields'].= ',tx_realurl_pathsegment';
// Konfiguration des RealUrl-Pfades
$TYPO3_CONF_VARS['EXTCONF']['realurl'] = array(
'_DEFAULT' => array(
'init' => array(
'enableCHashCache' => 1,
'appendMissingSlash' => 'ifNotFile',
'enableUrlDecodeCache' => 1,
'enableUrlEncodeCache' => 1,
'postVarSet_failureMode' => 'redirect_goodUpperDir',
'emptyUrlReturnValue' => 1,
),
'redirects' => array(
),
'preVars' => array(
array(
'GETvar' => 'no_cache',
'valueMap' => array(
'nc' => 1,
),
'noMatch' => 'bypass',
),
array(
'GETvar' => 'L',
'valueMap' => array(
'de' => '0',
),
'valueDescription' => array(
'de' => 'Deutsch',
),
'valueDefault' => 'de',
),
),
'pagePath' => array(
'type' => 'user',
'userFunc' => 'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main',
'spaceCharacter' => '-',
'languageGetVar' => 'L',
'expireDays' => 30,
'segTitleFieldList' => 'tx_realurl_pathsegment,alias,nav_title,title',
'rootpage_id' => 2,
'excludePageIds' => ''
),
'fixedPostVars' => array(),
'postVarSets' => array(),
'fileName' => array(
'defaultToHTMLsuffixOnPrev' => 1,
'index' => array(
'page.html' => array(
'keyValues' => array (
'type' => 1,
),
),
'print.html' => array (
'keyValues' => array (
'type' => 98
)
),
'_DEFAULT' => array (
'keyValues' => array ()
)
),
),
),
);
?>
im template:
# RealURL
page.config.simulateStaticDocuments = 0
page.config.baseURL =
Error!
page.config.tx_realurl_enable = 1
page.config.prefixLocalAnchors = all
ich habe folgende seitenstruktur:
ROOT
|-Seite1
|-|-Seite4 (unterseite von seite1)
|-Seite2
|-Seite3
ich bin am ende...habe schon unzählige stunden in foren gelesen aber ich weiß nicht mehr was ich noch machen!
bin für jede hilfe dankbar!
mfg marcus