|
|||||||
| Registrieren | Hilfe | Benutzerliste | Kalender | Suchen | Heutige Beiträge | Alle Foren als gelesen markieren |
|
#1
|
|||
|
|||
|
Hi,
Typo3 4.0.6 We created a page (http://siteA.some.edu/impact) which was of external url type that pointed to another page on another site (http://siteB.some.edu/somepage). We've heard complains from some people that http://siteA.some.edu/impact doesn't work in Internet Explorer in some cases unless '/' is added at the end of the URL. They were taken to the empty typo3 page /impact but not redirected on from there. Anybody ever run into the issue like that? I don't have any problems with http://siteA.some.edu/impact in all the browses I have. Thanks in advance, Bing _______________________________________________ TYPO3-english mailing list TYPO3-english (AT) lists (DOT) netfielders.de http://lists.netfielders.de/cgi-bin/.../typo3-english |
|
#2
|
|||
|
|||
|
Hi Bing
Check Out this here. It will solve your problems. We had similar problems but since we are using Cooluri all of them are gone ![]() Tutorial - cooluri: http://docs.google.com/View?docid=dd33gg45_3f8j96p If you are facing any problems please get back For propper redirects fromwithin TYPO3 you will need the extension jb_stuts_code. With this extension it is possible to redirect properly 301 to other Pages and Domains. It is also described here in the tutorial. Check your .htaccess in rout directory (Example is given in the tutorial) Andi 2007/6/5, Bing Du <bdu (AT) iastate (DOT) edu>: > > Hi, > > Typo3 4.0.6 > > We created a page (http://siteA.some.edu/impact) which was of external url > type that pointed to another page on another site > (http://siteB.some.edu/somepage). > > We've heard complains from some people that http://siteA.some.edu/impact > doesn't work in Internet Explorer in some cases unless '/' is added at the > end of the URL. They were taken to the empty typo3 page /impact but not > redirected on from there. Anybody ever run into the issue like that? I > don't have any problems with http://siteA.some.edu/impact in all the > browses I have. > > Thanks in advance, > > Bing > _______________________________________________ > TYPO3-english mailing list > TYPO3-english (AT) lists (DOT) netfielders.de > http://lists.netfielders.de/cgi-bin/.../typo3-english > _______________________________________________ TYPO3-english mailing list TYPO3-english (AT) lists (DOT) netfielders.de http://lists.netfielders.de/cgi-bin/.../typo3-english |
|
#3
|
|||
|
|||
|
Hi Andi,
> 2007/6/5, Bing Du <bdu (AT) iastate (DOT) edu>: >> >> Hi, >> >> Typo3 4.0.6 >> >> We created a page (http://siteA.some.edu/impact) which was of external >> url >> type that pointed to another page on another site >> (http://siteB.some.edu/somepage). >> >> We've heard complains from some people that http://siteA.some.edu/impact >> doesn't work in Internet Explorer in some cases unless '/' is added at >> the >> end of the URL. They were taken to the empty typo3 page /impact but not >> redirected on from there. Anybody ever run into the issue like that? I >> don't have any problems with http://siteA.some.edu/impact in all the >> browses I have. >> >> Thanks in advance, >> >> Bing > Hi Bing > > Check Out this here. It will solve your problems. We had similar problems > but since we are using Cooluri all of them are gone ![]() > Tutorial - cooluri: > http://docs.google.com/View?docid=dd33gg45_3f8j96p > If you are facing any problems please get back > For propper redirects fromwithin TYPO3 you will need the extension > jb_stuts_code. With this extension it is possible to redirect properly 301 > to other Pages and Domains. It is also described here in the tutorial. > > Check your .htaccess in rout directory (Example is given in the tutorial) > > Andi > Thanks much for the information. We've already used RealURL. Looks like Cooluri is an alternative of RealURL. Also cooluri requires PHP5. We use PHP4 here. Although I'm not certain what might cause the problem, I don't feel like it's a server issue because not everybody has the problem. Bing _______________________________________________ TYPO3-english mailing list TYPO3-english (AT) lists (DOT) netfielders.de http://lists.netfielders.de/cgi-bin/.../typo3-english |
|
#4
|
|||
|
|||
|
Bing Du wrote:
> Hi, > > Typo3 4.0.6 > > We created a page (http://siteA.some.edu/impact) which was of external url > type that pointed to another page on another site > (http://siteB.some.edu/somepage). > > We've heard complains from some people that http://siteA.some.edu/impact > doesn't work in Internet Explorer in some cases unless '/' is added at the > end of the URL. They were taken to the empty typo3 page /impact but not > redirected on from there. Anybody ever run into the issue like that? I > don't have any problems with http://siteA.some.edu/impact in all the > browses I have. > > Thanks in advance, > > Bing Hi Bing, You have to use one of these options in the RealURL config: 'init' => array( 'appendMissingSlash' => 'ifNotFile', 'enableCHashCache' => 1, 'enableUrlDecodeCache' => 1, 'enableUrlEncodeCache' => 1 ), appendMissingSlash Let me know if you need the whole configuration file. gRTz ben -- netcreators :: creation and innovation www.netcreators.com - www.typo3.nl Bekijk ook onze nieuwe website! www.netcreators.com _______________________________________________ TYPO3-english mailing list TYPO3-english (AT) lists (DOT) netfielders.de http://lists.netfielders.de/cgi-bin/.../typo3-english |
|
#5
|
|||
|
|||
|
> Bing Du wrote:
>> Hi, >> >> Typo3 4.0.6 >> >> We created a page (http://siteA.some.edu/impact) which was of external >> url >> type that pointed to another page on another site >> (http://siteB.some.edu/somepage). >> >> We've heard complains from some people that http://siteA.some.edu/impact >> doesn't work in Internet Explorer in some cases unless '/' is added at >> the >> end of the URL. They were taken to the empty typo3 page /impact but not >> redirected on from there. Anybody ever run into the issue like that? I >> don't have any problems with http://siteA.some.edu/impact in all the >> browses I have. >> >> Thanks in advance, >> >> Bing > > > Hi Bing, > > You have to use one of these options in the RealURL config: > > 'init' => array( > 'appendMissingSlash' => 'ifNotFile', > 'enableCHashCache' => 1, > 'enableUrlDecodeCache' => 1, > 'enableUrlEncodeCache' => 1 > ), > > appendMissingSlash > > Let me know if you need the whole configuration file. > > gRTz > > ben > -- Thanks, Ben. Our realurl config has, 'init' => array( 'enableCHashCache' => 1, 'postVarSet_failureMode' => 'ignore', 'appendMissingSlash' => 'ifNotFile', 'enableUrlDecodeCache' => 0, 'enableUrlEncodeCache' => 1, ), If I understand the above appendMissingSlash setting right, '/' is only added when the last part of the URL is a directory. In our case, '/impact' is a page. I just checked with the person who reported the problem. He had the problem with IE 7. But the same http://siteA.some.edu/impact works fine for me in my IE 7. In speaking url management, I changed the pagepath from 'impact' to 'impact/'. Seemed that fixed his problem. But I dunno why. Bing _______________________________________________ TYPO3-english mailing list TYPO3-english (AT) lists (DOT) netfielders.de http://lists.netfielders.de/cgi-bin/.../typo3-english |
| Lesezeichen |
| Themen-Optionen | |
| Ansicht | Thema bewerten |
|
|
|
||||
| Thema | Autor | Forum | Antworten | Letzter Beitrag |
| [TYPO3] Problems with cronjob! | Claus Bach | typo3-english@lists.netfielders.de | 5 | 08.06.2007 17:17 |
| [TYPO3] Problems with RealURL | Jeppe Donslund | typo3-english@lists.netfielders.de | 10 | 23.03.2007 10:04 |
| Re: [TYPO3] Problems with ve_guestbook | stefano cecere | typo3-english@lists.netfielders.de | 0 | 21.03.2007 09:04 |
| [TYPO3] Problems with this mallinglist | Claus Bach | typo3-english@lists.netfielders.de | 4 | 19.03.2007 12:46 |
| [TYPO3-templavoila] some problems TV 1.3.0 ? | sevenumber sevenumber | typo3-project-templavoila@lists.netfielders.de | 0 | 19.03.2007 10:14 |