[TYPO3] insertData before rawUrlEncode

Andrew Davis andrew at avagraphique.com
Thu Jun 14 14:13:49 CEST 2007


thanks, i was able to troubleshoot with your help.

im learning, hopefully fewer dumb questions in the future!

andrew

JoH asenau wrote:
>> is this possible?
>>
>>   30 = TEXT
>>   30.value = {$abs_path}
>>   30.insertData = 1
>>   30.rawUrlEncode = 1
>>
>> it does not insert my constant data (it is raw url encoding before it
>> inserts data... so loses { } and then doesnt insert data.... I want it
>> to perform in the prder it is written.
>>
>> any way to make this work?
> 
> First step: Remove insertData, since it has nothing to do with constants.
> Second step: Try this one to test, if anything is inserted
> 
> 30 = TEXT
> 30.value = {$abs_path}
> 
> if this is not workin try
> 
> 30 = TEXT
> 30.dataWrap = {$abs_path}
> 
> instead. If value is working try to move the whole thing into a COA and do
> the rawUrlEncode there.
> 
> 30 = COA
> 30 {
>     10 = TEXT
>     10.value = {$abs_path}
>     stdWrap.rawUrlEncode
> }
> 
> HTH
> 
> Joey
> 


More information about the TYPO3-english mailing list