| 01:24 |
adnc |
hello, does someone know if there is an extension that can force typo3 to make use of HTTP authentication?= |
| 02:30 |
adnc |
void: are you there? |
| 08:35 |
jochke |
My categories in tt_news won't work. When I add a new category, I can't select a parent category. Neither can I se the categories when I'm adding a news item. Anyone? |
| 08:54 |
otu |
jochke: did u set the pidlist in ur template |
| 09:12 |
jochke |
otu: Yes my pidlist is set. The news items are displayd at the frontend. It is just the categories that wouldn't be choosen. |
| 16:33 |
der_soenke |
hello, des anybody know what the "testmail"-checkbox in directmail should do? |
| 17:03 |
HardPhuck |
guys, how would i add classes to links in indexed search engine results |
| 19:50 |
davidbrunnthaler |
good evening, someone familiar with setting up georg ringers googlemap extension with another table? |
| 20:04 |
beat2 |
I'm new to Typo3 and stuck with a totally basic problem: |
| 20:04 |
beat2 |
I want to copy a value to a variable used in TemplaVoila. But there it prints just the name of the variable an not the value. |
| 20:04 |
beat2 |
30 = TEXT |
| 20:04 |
beat2 |
30.value = blup |
| 20:04 |
beat2 |
lib.myH1 = TEXT |
| 20:04 |
beat2 |
lib.myH1.value = 30.value |
| 20:04 |
beat2 |
Could someone please help me? |
| 20:09 |
beat2 |
afk, will try it later or hope that some answers in the meanwhile |
| 20:11 |
nkuttler |
hm, my page{ includeCSS {foo} } is ignored in the extension template i created for a page... any ideas? |
| 20:26 |
nkuttler |
ok, typing the filename correctly helps... |
| 20:35 |
der_soenke |
beat2: are you there currently? |
| 20:35 |
der_soenke |
the solution for your issue should be simple... |
| 20:39 |
der_soenke |
you want< to copy the value from 30.value into lib.myH1.value, therefore you can not use = |
| 20:39 |
der_soenke |
try < instead of = |
| 20:40 |
der_soenke |
< is the operator for copying a value to another, there is also > but currently i dont know what > is doing |
| 20:41 |
der_soenke |
lib.myH1.value < 30.value |
| 21:47 |
beat2 |
Thanks, that solves the minimalized problem but I don't understand why it doesn't work for this: |
| 21:47 |
beat2 |
page.20 = TEXT |
| 21:47 |
beat2 |
page.20.field= title |
| 21:47 |
beat2 |
lib.myH1 = TEXT |
| 21:47 |
beat2 |
lib.myH1.field < page.20.field |
| 21:47 |
beat2 |
I want the title of the page in the lib.myH1.value but I don't get it |
| 21:50 |
beat2 |
I've read many tutorials and I'm used to many programming languages but I just can't cope with typoscript... |
| 21:54 |
der_soenke |
beat2: try to echo out page.20.field |
| 21:54 |
der_soenke |
i think this should not work |
| 21:54 |
der_soenke |
because you have to use DATA instead of TEXT |
| 21:55 |
der_soenke |
TEXT is only for TE |
| 21:55 |
der_soenke |
TEXT |
| 21:55 |
der_soenke |
for a database-field you have to use DATA |
| 21:56 |
beat2 |
page.20 gets printed out correctly |
| 21:57 |
der_soenke |
you were right, i was wrong |
| 21:57 |
der_soenke |
DATA isn't typoscript |
| 21:58 |
der_soenke |
don't know where I got this idea from |
| 21:58 |
der_soenke |
sorry, i have to leave |
| 21:59 |
beat2 |
ok, thanks for the try |
| 21:59 |
der_soenke |
try lib.myH1 < page.20.field |
| 21:59 |
der_soenke |
without lib.myH1.field < page.20.field |
| 22:00 |
der_soenke |
this could work |
| 22:00 |
der_soenke |
but now I'm away |
| 22:00 |
der_soenke |
maybe i'll be back in a hour |
| 22:03 |
beat2 |
I've allready tried every combination without success |
| 22:05 |
beat2 |
this works neither |
| 22:15 |
Phlogi |
beat2: using tv? |
| 22:17 |
beat2 |
yes |
| 22:18 |
Phlogi |
beat2: I don't know, but I had a very similar problem last time I tried sometehing like that |
| 22:18 |
Phlogi |
it just didn't work either... did you try something else than a TEXT? or maybe with data |
| 22:19 |
beat2 |
nope |
| 22:19 |
beat2 |
but it works if ist store a simple string in the variable |
| 22:20 |
Phlogi |
beat2: same here... maybe there is some major bug |
| 22:21 |
Phlogi |
40.field = title does not work here either on a tv lib object |
| 22:23 |
beat2 |
perhaps I have the wrong attempt: I just want to print the title of the page in my TV-template |
| 22:24 |
beat2 |
I couldn't access the title directly out of the template |
| 22:24 |
beat2 |
so I tried it this way |
| 22:25 |
Phlogi |
beat2: like this it works: .data = page:title |
| 22:25 |
Phlogi |
lib.myH1.data = page:title |
| 22:28 |
beat2 |
I'm sorry but it doesn't work for me |
| 22:30 |
beat2 |
thats the TV data structure: |
| 22:30 |
beat2 |
<field_page_title type="array"> |
| 22:30 |
beat2 |
<tx_templavoila type="array"> |
| 22:30 |
beat2 |
<eType>TypoScriptObject</eType> |
| 22:30 |
beat2 |
<TypoScriptObjPath>lib.myH1</TypoScriptObjPath> |
| 22:30 |
beat2 |
</tx_templavoila> |
| 22:30 |
beat2 |
</field_page_title |
| 22:30 |
beat2 |
(shortened) |
| 22:39 |
beat2 |
ps: sorry for my english. I do my best. |
| 22:44 |
Phlogi |
hmm no idea |
| 22:44 |
Phlogi |
beat2: you do lib.myH1 = TEXT |
| 22:45 |
Phlogi |
and lib.myH1.data = page:title |
| 22:45 |
Phlogi |
? |
| 22:46 |
beat2 |
yeah, it works! |
| 22:46 |
beat2 |
that was the final mistake |
| 22:47 |
beat2 |
but can you tell me why I have to use .data? |
| 22:50 |
JohPie |
How get I more intrest for my patch for impexp? |
| 22:57 |
beat2 |
don't know... |
| 22:59 |
beat2 |
in the TS-Ref is only written "+data getText" |
| 23:10 |
der_soenke |
beat2: there was my data! |
| 23:11 |
der_soenke |
I knew there should be something with data ;-) |
| 23:15 |
der_soenke |
a former question from today, but still unsolved: does anybody know what the "testmail"-checkbox in directmail should do? |
| 23:16 |
beat2 |
yes, you were right |
| 23:16 |
beat2 |
but why? |
| 23:17 |
der_soenke |
beat2: i am studying the tsref at the moment |
| 23:20 |
beat2 |
thank you. I've looked there too but couldn't find a answer |
| 23:25 |
JohPie |
n8 |
| 23:28 |
der_soenke |
beat2: full ack |
| 23:29 |
beat2 |
please? |
| 23:29 |
der_soenke |
i have no clue |
| 23:31 |
der_soenke |
beat2: are you german? |
| 23:31 |
beat2 |
yes |
| 23:32 |
beat2 |
or swiss, to be precise |
| 23:32 |
der_soenke |
gut |
| 23:32 |
der_soenke |
warum nicht gleich so ;-) |
| 23:32 |
der_soenke |
also wie gesagt, ich habe keine ahnung |
| 23:32 |
beat2 |
wäre einfacher gewesen ;) |
| 23:32 |
der_soenke |
ich schau nochmal eben ins typo3-kochbuch |
| 23:33 |
beat2 |
ah, das kenn ich noch nicht |
| 23:33 |
beat2 |
oh, gedruckt, nicht online |
| 23:34 |
beat2 |
bis jetzt fand ich zu allen computerthemen eigentlich immer genügend online-dokumentationen/referenzen |
| 23:34 |
der_soenke |
ja, 45¬ in Deutschland |
| 23:34 |
beat2 |
aber bei typo3 scheint es leider anders zu sein |
| 23:34 |
beat2 |
die ts-ref ist nur sehr begrenzt brauchbar |
| 23:35 |
der_soenke |
kann hilfreich sein, behandelt einige probleme mit ausfühlicher problembehandlung |
| 23:35 |
beat2 |
einige, ja |
| 23:35 |
beat2 |
andere wiederum gar nicht |
| 23:35 |
beat2 |
ist das kochbuch gut? |
| 23:36 |
der_soenke |
ich hab noch nicht viel damit gearbeitet, aber der erste eindruck war gut |