|
|||||||
| Registrieren | Hilfe | Benutzerliste | Kalender | Suchen | Heutige Beiträge | Alle Foren als gelesen markieren |
|
#1
|
|||
|
|||
|
Hello list.
Is any body have solution for use RealURL with tt_products? I need to display path like this: http://www.mysite.com/catalog/motoro...s/0132/details Previously published solution does not work Thanks, Alex _______________________________________________ TYPO3-project-tt-products mailing list TYPO3-project-tt-products (AT) lists...netfielders.de http://lists.netfielders.de/cgi-bin/...ct-tt-products |
|
#2
|
|||
|
|||
|
I found solution
Alexander ÐÉÛÅÔ: > Hello list. > Is any body have solution for use RealURL with tt_products? > I need to display path like this: > http://www.mysite.com/catalog/motoro...s/0132/details > > Previously published solution does not work > > Thanks, Alex _______________________________________________ TYPO3-project-tt-products mailing list TYPO3-project-tt-products (AT) lists...netfielders.de http://lists.netfielders.de/cgi-bin/...ct-tt-products |
|
#3
|
|||
|
|||
|
Alexander schrieb:
> I found solution Could you pls. post your solution? Thanks in adv., Nicole > Alexander ÐÉÛÅÔ: >> Hello list. >> Is any body have solution for use RealURL with tt_products? >> I need to display path like this: >> http://www.mysite.com/catalog/motoro...s/0132/details >> >> Previously published solution does not work >> >> Thanks, Alex _______________________________________________ TYPO3-project-tt-products mailing list TYPO3-project-tt-products (AT) lists...netfielders.de http://lists.netfielders.de/cgi-bin/...ct-tt-products |
|
#4
|
|||
|
|||
|
Solution:
-------------- $TYPO3_CONF_VARS['EXTCONF']['realurl']['_DEFAULT'] = array( 'init' => array ( 'enableCHashCache' => '1', 'appendMissingSlash' => 'ifNotFile', 'enableUrlDecodeCache' => '1', 'enableUrlEncodeCache' => '1', ), 'redirects' => array ( ), 'preVars' => array ( '0' => array ( 'GETvar' => 'no_cache', 'valueMap' => array ( 'no_cache' => '0', ), 'noMatch' => 'bypass', ), '1' => array ( 'GETvar' => 'L', 'valueMap' => array ( 'en' => '1', ), 'noMatch' => 'bypass', ), ), 'pagePath' => array ( 'type' => 'user', 'userFunc' => 'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main', 'spaceCharacter' => '-', 'languageGetVar' => 'L', 'expireDays' => '3', 'rootpage_id' => '1', ), 'fixedPostVars' => array(), 'postVarSets' => array( '_DEFAULT' => array( //tt_news // archive 'period' => array( array( 'condPrevValue' => -1, 'GETvar' => 'tx_ttnews[pS]' , 'valueMap' => array( ) ), array( 'GETvar' => 'tx_ttnews[pL]' , 'valueMap' => array( ) ), array( 'GETvar' => 'tx_ttnews[arc]' , 'valueMap' => array( 'archived' => 1, 'non-archived' => -1, ) ), ), // pagebrowser 'browse' => array( array( 'GETvar' => 'tx_ttnews[pointer]', ), ), 'select' => 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, ), ), ), ), 'article' => array( array( 'GETvar' => 'tx_ttnews[backPid]', ), 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]' ), ), // backPID 'backPID' => array( array( 'GETvar' => 'tx_ttproducts_pi1[backPID]', 'lookUpTable' => array( 'table' => 'pages', 'id_field' => 'uid', 'alias_field' => 'title', 'addWhereClause' => ' AND NOT deleted', 'useUniqueCache' => 1, 'useUniqueCache_conf' => array( 'strtolower' => 1, 'spaceCharacter' => '-', ), ), ), ), // product categories 'categories' => array( array( 'GETvar' => 'tx_ttproducts_pi1[cat]', 'lookUpTable' => array( 'table' => 'tt_products_cat', 'id_field' => 'uid', 'alias_field' => 'title', 'addWhereClause' => ' AND NOT deleted', 'useUniqueCache' => 1, 'useUniqueCache_conf' => array( 'strtolower' => 1, 'spaceCharacter' => '-', ), ), ), ), // products 'products' => array( array( 'GETvar' => 'tx_ttproducts_pi1[product]', 'lookUpTable' => array( 'table' => 'tt_products', 'id_field' => 'uid', 'alias_field' => 'title', 'addWhereClause' => ' AND NOT deleted', 'useUniqueCache' => 1, 'useUniqueCache_conf' => array( 'strtolower' => 1, 'spaceCharacter' => '-', ), ), ), ), ), ), ); -------------- Nicole Y. Maennl ÐÉÛÅÔ: > Alexander schrieb: >> I found solution > > Could you pls. post your solution? > > Thanks in adv., > Nicole > > >> Alexander ÐÉÛÅÔ: >>> Hello list. >>> Is any body have solution for use RealURL with tt_products? >>> I need to display path like this: >>> http://www.mysite.com/catalog/motoro...s/0132/details >>> >>> Previously published solution does not work >>> >>> Thanks, Alex _______________________________________________ TYPO3-project-tt-products mailing list TYPO3-project-tt-products (AT) lists...netfielders.de http://lists.netfielders.de/cgi-bin/...ct-tt-products |
| Lesezeichen |
| Themen-Optionen | |
| Ansicht | Thema bewerten |
|
|
|
||||
| Thema | Autor | Forum | Antworten | Letzter Beitrag |
| [TYPO3-shop] tt_products >< commerce and different views | Tapio Markula | typo3-project-tt-products@lists.netfielders.de | 9 | 14.03.2007 11:48 |
| [TYPO3-shop] tt_products and DBAL compatibility | Mathias Behrle | typo3-project-tt-products@lists.netfielders.de | 0 | 07.03.2007 19:43 |
| [TYPO3-shop] ability tt_products | Igor Pstyga | typo3-project-tt-products@lists.netfielders.de | 7 | 15.01.2007 10:06 |
| Re: [TYPO3-shop] fe_users and tt_products | Franz Holzinger | typo3-project-tt-products@lists.netfielders.de | 0 | 05.12.2006 17:37 |
| Re: [TYPO3-shop] tt_products very slow with 10.000 products | Xose Pita | typo3-project-tt-products@lists.netfielders.de | 0 | 04.12.2006 09:28 |