realurl

Real URL only shows me index.php?id=xx when changing language

南笙酒味 提交于 2019-12-11 06:16:26
问题 If I look at my default language the links have speaking url (www.yoursite.com/company/about-us.html). But now I added a language and if I look at the links I get www.yoursite.com/index.php?id=63&L=1 What is wrong? This is my Typoscript for the list menu: lib.tsfootermenu1 = COA lib.tsfootermenu1 { 10 = HTML 10.value = <p class="ContentOverviewHeading"> 15 < tmp.tsfootermenu1 20 = HTML 20.value = </p> 25 = HMENU 25 { special = directory special.value = 63 entryLevel = 0 1 = TMENU 1.wrap = <ul

TYPO3 news system and RealURL

别说谁变了你拦得住时间么 提交于 2019-12-11 04:53:27
问题 I have a little problem with the TYPO3 extension News System and Real URL. Its not showing the urls like http://codem.dk/blog/artikel/usunde_energidrikke but showing it like http://codem.dk/blog/artikel/?tx_news_pi1[news]=5&cHash=5370a02c0dc7e653fede425de7ac9187 I have added the plugin code in my realurl file, so i don't know what's wrong, and all other links which are not linking to a news are working fine. In the Extension Manager for Real Url I have this path to the configuration file:

realurl generates entries without cHash

旧巷老猫 提交于 2019-12-11 03:12:33
问题 I have a piBase extension which has a listing of records and a detail page. When calling the listing first, everything is fine, realurl (version 2.0.15, TYPO3 version 7.6.10) creates the urls for the detail pages with cHash parameter, e.g. cHash=dc3409cee49ff80a6b8173357a474bd3&id=168&tx_myext_pi1[event]=1062 But when truncating all four realurl tables, clearing the frontend cache and accessing a detail page of a record directly, realurl creates the url for this page without cHash: id=168&tx

php script is parsing content from RTE (tt_news) but internal links are not appearing as speaking url

纵然是瞬间 提交于 2019-12-11 02:03:12
问题 I have a news article with internal links. In the RTE I see links like http://www.yourdomain.com/?id=3 in the html text mode. The problem is that this link also appears on the frontend. RealURL should convert this link to something like http://www.yourdomain.com/products/ The content of RTE is currently parsed like this $parseObj = t3lib_div::makeInstance('t3lib_parsehtml_proc'); $txt = $parseObj->TS_links_rte($result['bodytext']); $txt = $parseObj->TS_transform_rte($txt); I read that I

tt_news and RealURL: shorten URL of news article

自古美人都是妖i 提交于 2019-12-08 05:36:17
Currently the URL for a news article looks like www.domain.com/path/to/page/news/news-detail/article/articlename Is there a way to shorten this URL? E.g. missing out article or news-detail? In the RealUrl-Configuration there is the array article but I don't know if I can change this for example to news-detail ... Do you have some ideas? I'm using Typo3 4.5.5, realurl 1.11.2 and tt_news 3.0.1. If you want to exclude the keywords indicating a new part of the rewritten url, use fixedPostVars : 'fixedPostVars' => array( '123' =>array( array( 'GETvar' => 'tx_ttnews[tt_news]', 'lookUpTable' => array

tt_news and RealURL: shorten URL of news article

混江龙づ霸主 提交于 2019-12-08 03:47:29
问题 Currently the URL for a news article looks like www.domain.com/path/to/page/news/news-detail/article/articlename Is there a way to shorten this URL? E.g. missing out article or news-detail? In the RealUrl-Configuration there is the array article but I don't know if I can change this for example to news-detail ... Do you have some ideas? I'm using Typo3 4.5.5, realurl 1.11.2 and tt_news 3.0.1. 回答1: If you want to exclude the keywords indicating a new part of the rewritten url, use

.htaccess redirect to language subfolder

有些话、适合烂在心里 提交于 2019-12-06 07:10:39
What I have: there are two languages installed: German and English language-versions are managed with subfolders (www.domain.com/de/ and www.domain.com/en/) machine: Typo3 4.5.4 / RealUrl installed mod_rewrite is enabled an works What I want to do: redirect requests without language subfolder to the German version e.g. domain.com/any/test/folder/ to domain.com/ de /any/test/folder What I tried: RedirectMatch permanent ^/(?!(?:(?:de|en)/))(.*)$ /de/$1 Occuring problems: all requests were directed to domain.com/de/index.php it caused an error 310 (net::ERR_TOO_MANY_REDIRECTS) maybe it fails with

realUrl not writing preVar for default language

自古美人都是妖i 提交于 2019-12-06 00:04:10
I am running realURL 1.12.6 on TYPO3 4.5.26 I am used to realURL creating paths that contain the preVar also for the default language, like www.example.com/de/seite/ and www.example.com/en/page/ In one case, this is just not happening - or I think, only sometimes. In most of the cases, I get www.example.com/seite/ and www.example.com/en/page/ Where can this be changed? PS: Here's the beginning of my realurlconf: $TYPO3_CONF_VARS['EXTCONF']['realurl']['_DEFAULT'] = array( 'init' => array( 'enableCHashCache' => 1, 'appendMissingSlash' => 'ifNotFile', 'enableUrlDecodeCache' => 1,

How can i have different translations for action controller in TYPO3?

冷暖自知 提交于 2019-12-04 21:23:54
Is it possible to have a localization based on RealURL 's valueMap static table ? For example, in Deutsch language, I have www.example.com/de/account/produktinfos/ de/ is language account/ page produktinfos/ controller action And what I need is to translate the produktinfos/ part to English, i.e., www.example.com/en/account/productinfo/ . Is there a way to translate the controller action in RealURL? I don't know if this help for you. You can use some realurl post/pre Procs. for example: // realurl Hook for replacing some path $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['realurl'] = array(

TYPO3 realURL Autoconf to manual conf

会有一股神秘感。 提交于 2019-12-04 06:27:32
I have a TYPO3 site that's been running with realURLs autoconf for years. The pattern is very simple: Domain/language/pid e.g. example.com/d/6 Now I have to make an addition to the realURL config, but I'm not sure on how to reproduce the setup by autoconf in a manual configuration file (we don't want to change the URLs) How's that done? I've tried outputting the serialized autoconf values via var_export(), but no work. Or: how can I create the URL pattern above in realurl_conf? Thanks! Urs It's quite easy: In Extension Manager ( EM ) find the RealURL and set option Automatic configuration file