Questions tagged [realurl]

realurl is a TYPO3 extension that translates URLs to a human readable form called virtual path.

realurl is a TYPO3 extension providing automatic transformation of URLs with GET parameter in the frontend (like “index.php?id=123&type=0&L=1”) into a virtual path, a so called “Speaking URL” (like “dutch/contact/company-info/page.html”) and back again. The objective is that URLs shall be as human readable as possible.

Extension manual: http://typo3.org/extension-manuals/realurl/current

275 questions
2
votes
2 answers

TYPO3 RealURL postVarSets - value includes "dot"

I have a realurl configuration which includes: 'postVarSets' => array( ... '96' => array( 'name' => array ( array( 'GETvar' => 'person', ), …
2
votes
1 answer

Linking between domains in Typo3 with realurl

In our team we have a multi-language, multi-domain Typo3(6.2) installation with ~20 domains. The realurl config for the domains is working. My problem is, that if I want to link between domains I only get links with http://www.domainA.com/?id=PAGEID…
Juburin
  • 133
  • 1
  • 8
2
votes
2 answers

Multiple Values in RealUrl

When I got multiple values in my URL of the same name e.g …&tx_myext_pi1[crit][]=1&tx_myext_pi1[crit][]=2… and I want to have it multiple times in my RealUrl-ified URL like …/crit/title-of-crit-1/crit/title-of-crit-2… it's not working. I only get…
yunzen
  • 32,854
  • 11
  • 73
  • 106
2
votes
1 answer

TYPO3 language switcher does not use the correct RealURL paths

I use the following TypoScript to generate a language switcher. It's basically a copy from an existing site where everything works fine: lib.langMenu = HMENU lib.langMenu { special = language addQueryString = 1 special.value = 0,1 …
slhck
  • 36,575
  • 28
  • 148
  • 201
2
votes
3 answers

TYPO3 Force HTTPS in FE

I have two domains pointing to the same website, domain A and domain B. I want: Domain A to be accessible via HTTP (works fine out of the box) Domain B to redirect all requests to HTTPS. Basically if you type in http://domainb.com/somepage to…
Nemanja T.
  • 55
  • 2
  • 8
2
votes
4 answers

I cannot see thumbnails for images in the backend anymore. Why?

If I go to Filelist in the Typo3 backend and check the option to display thumbnails, I only see broken image links. Yet I remember that the thumbnails displayed ok at some point. A test of ImageMagick in the install tool of typo shows, that…
Kai Mattern
  • 3,090
  • 2
  • 34
  • 37
2
votes
1 answer

TYPO3: Show language names for default language in speaking URL using RealURL

I set up a TYPO3 website using TYPO3 4.7. The website is bilingual (German/English) and the are 'speaking' using RealURL. The default language is German. So far it works nicely. I get URLs…
ryu
  • 312
  • 3
  • 6
2
votes
1 answer

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

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…
testing
  • 19,681
  • 50
  • 236
  • 417
2
votes
2 answers

RealURL: Optional segments in FixedPostVars

I'm using RealURL in my Typo3 4.5.16 project for speaking URLs of a certain page. For this, I'm using a lookup-table that matches a certain number of IDs to their URL…
king_nak
  • 11,313
  • 33
  • 58
2
votes
3 answers

.htaccess redirect to language subfolder

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…
kernfrucht
  • 3,448
  • 3
  • 15
  • 10
1
vote
2 answers

tt_news and RealURL: shorten URL of news article

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…
testing
  • 19,681
  • 50
  • 236
  • 417
1
vote
2 answers

tt_news: no news_id given when changing language in single view

I'm using TYP 4.5.5, RealURL 1.11.2 and tt_news 3.0.1. I want that the user can switch the language and the corresponding news is shown in the users language. All should work with RealURL. When switching language the news id is not submitted. So I…
testing
  • 19,681
  • 50
  • 236
  • 417
1
vote
1 answer

typo3 realurl chash

I am trying to setup realurl to work with my extension. I think I am doing something wrong because I can't get rid of the cHash parameter. My realurl config is REALURL START $TYPO3_CONF_VARS['EXTCONF']['realurl'] = array( 'fileName' => array(), …
Morten Hagh
  • 2,055
  • 8
  • 34
  • 66
1
vote
1 answer

Realurl : CSS are not loaded also realurl appends the page path

I am using real-url (1.11.2) , typo3 4.6. I got a problem in FE URL. i got URL like http://{domain-name}/page1/page2/ http://{domain-name}/page1/page2/page3/ URL should be http://{domain-name}/page1 http://{domain-name}/page1 How to achieve…
user911282
  • 93
  • 1
  • 1
  • 10
1
vote
1 answer

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

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…
testing
  • 19,681
  • 50
  • 236
  • 417
1
2
3
18 19