[Typo3] Strange URL Problem
Gilles Deacur
tronno22556 at gmail.com
Fri Dec 16 20:56:05 CET 2005
Gilles Deacur wrote:
> Gilles Deacur wrote:
>
>> I have a site I put up real quick during the weekend. I tested all
>> links yesterday and it was working just fine.
>>
>> It's at http://www.gisbits.com
>>
>> I have RealURL enabled. The flash menu on the left uses the page ids
>> for the link, but the text menu on the bottom is using the RealURL
>> values.
>>
>> If you click on the "Contact Us" link on the flash menu, it goes to
>> the proper page, but the "Contact Us" on the bottom must be defaulting
>> to the front page of this site.
>>
>> The only difference between the "Contact Us" text link vs. the rest of
>> the links in the bottom is the fact that it has 2 words instead of 1.
>>
>> Now, I checked with another site I did at www.critterpal.com and most
>> of the links there are 2 words, and that site is working fine. I
>> basically just copied code from one site to the other and changed a
>> few parameters such as base URL, but it should pretty much be the
>> exact same code.
>>
>> Any ideas as to what's going on with this?
>
>
> Anything anybody?
Well I think it has something to do with the fact that there is a page
beyond the "Contact Us" page called "Thank You" because the exact same
situation happens here:
http://www.deacur.com/
The "Contact Us" page redirects back to the root of the site.
Yet, all the other pages work fine.
Is there something in this RealURL configuration that's causing this?
//Realurl configuration begin
$TYPO3_CONF_VARS['EXTCONF']['realurl'] = array(
'_DEFAULT' => array (
'preVars' => array(
array(
'GETvar' => 'L',
'valueMap' => array(
'dk' => '1',
),
'noMatch' => 'bypass',
),
),
'pagePath' => array(
'type' => 'user',
'userFunc' =>
'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main',
'spaceCharacter' => '-',
'segTitleFieldList' => 'tx_realurl_pathsegment,nav_title,title',
'languageGetVar' => 'L',
'expireDays' => 14,
),
'fileName' => array (
'index' => array(
'page.html' => array(
'keyValues' => array (
'type' => 1,
)
),
'_DEFAULT' => array(
'keyValues' => array(
)
),
),
),
'postVarSets' => array(
'_DEFAULT' => array (
'news' => array(
array(
'GETvar' => 'tx_mininews[mode]',
'valueMap' => array(
'list' => 1,
'details' => 2,
)
),
array(
'GETvar' => 'tx_mininews[showUid]',
),
),
),
),
),
);
//realurl configuration end
I don't know much about the RealURL and the documentation was real
cloudy for me, so I copied off of a post and modified the parts that
made some sense to me.
More information about the TYPO3-english
mailing list