| Author | Message |
|---|---|
|
Written on: 08. 02. 2011 [15:00]
|
|
|
cyberjack
cyberjack
registered since: 27.01.2011
Posts: 4
|
just installed typogento und integrated the footer static block to my template. all link names are displayed correct but when i click on the links i got an error 404 because link isn't correct. contact form link is working. same with realurl autoconf or a self generated realurl conf. so what's wrong - hope anyone can help. working link looks like => http://www2.com/shop/shop/contacts///0/0.html not working link looks like => http://www2.com/shop/shop////0/0.html?tx_fbmagento%5Bshop%5D%5B_absolute%5D=versandkosten so one more i checked out. when i'm in a subside and klick on the link from the footer - the path is also not correct. my footer code: page.10 { workOnSubpart = BODY_INHALT subparts { FOOTER = USER_INT FOOTER { userFunc = tx_fbmagento_pi1->main block=footer nowrap=1 } } update 2: transfered the shop from an subdomain to the typo3 domain - also same result wrong links. hmmm - plz can someone check my realurl config - with autoconfig i've the same result - non working links. PHP <?php $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['realurl'] = array ( '_DEFAULT' => array ( 'init' => array ( 'useCHashCache' => '0', 'enableCHashCache' => '1', 'respectSimulateStaticURLs' => 'TRUE', 'appendMissingSlash' => 'ifNotFile', 'enableUrlDecodeCache' => '1', 'enableUrlEncodeCache' => '1', ), 'redirects' => array (), 'preVars' => array ( '0' => array ( 'GETvar' => 'L', 'valueMap' => array ( 'de' => '0', 'en' => '1', 'it' => '2', 'fr' => '3', ), 'noMatch' => 'bypass', ), '1' => array ( 'GETvar' => 'lang', 'valueMap' => array ( 'de' => 'de', 'en' => 'en', 'it' => 'it', 'fr' => 'fr', ), 'noMatch' => 'bypass', ), '2' => array ( 'GETvar' => 'no_cache', 'valueMap' => array ( 'no_cache' => 1, 'nc' => 1, ), 'noMatch' => 'bypass', ) ), 'pagePath' => array ( 'type' => 'user', 'userFunc' => 'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main', 'spaceCharacter' => '-', 'segTitleFieldList' => 'alias,tx_realurl_pathsegment,nav_title,title', 'languageGetVar' => 'L', 'expireDays' => '7', 'disablePathCache' => 1, 'rootpage_id' => array( 'domain1' => '1', 'domain2' => '2', ), ), 'fixedPostVars' => array ( ), 'postVarSets' => array ( '_DEFAULT' => array ( 'shoparticle' => array ( '0' => array ( 'GETvar' => 'tx_fbmagento[shop][s]', ), ), 'shop' => array ( '0' => array ( 'GETvar' => 'tx_fbmagento[shop][route]', ), '1' => array ( 'GETvar' => 'tx_fbmagento[shop][controller]', ), '2' => array ( 'GETvar' => 'tx_fbmagento[shop][action]', ), '3' => array ( 'GETvar' => 'tx_fbmagento[shop][id]', 'userFunc' => 'EXT:fbmagento/lib/class.tx_fbmagento_realurl.php:&tx_fbmagento_realurl->idRewrite', ), '4' => array ( 'GETvar' => 'tx_fbmagento[shop][category]', 'userFunc' => 'EXT:fbmagento/lib/class.tx_fbmagento_realurl.php:&tx_fbmagento_realurl->categoryRewrite', ), '5' => array ( 'GETvar' => 'tx_fbmagento[shop][product]', ), '6' => array ( 'GETvar' => 'tx_fbmagento[shop][order_id]', ), ), 'shoppage' => array ( '0' => array ( 'GETvar' => 'tx_fbmagento[shop][p]', ), '1' => array ( 'GETvar' => 'tx_fbmagento[shop][order]', ), '2' => array ( 'GETvar' => 'tx_fbmagento[shop][dir]', ), ), ), ), 'fileName' => array ( 'defaultToHTMLsuffixOnPrev' => true, 'index' => array ( 'rss.xml' => array ( 'keyValues' => array ( 'type' => '100', ), ), 'robots.txt' => array( 'keyValues' => array( 'type' => '201', ), ), 'rss091.xml' => array ( 'keyValues' => array ( 'type' => '101', ), ), 'rdf.xml' => array ( 'keyValues' => array ( 'type' => '102', ), ), 'atom.xml' => array ( 'keyValues' => array ( 'type' => '103', ), ), ), ), ), ); ?> [This article was edited 3 times, at last 14.02.2011 at 10:18.] |