| 08:52 |
FloLeBlanc |
hi all |
| 09:36 |
FloLeBlanc |
Just to remember everyone: XSS vulnerabilities have been found in sr_feuser_register and tip-a-friend (XSS) |
| 09:54 |
bing |
hello world |
| 09:54 |
SargoDarya |
hello bing |
| 09:55 |
bing |
i was wondering if some one could help me think whit my problem (mabey you've seen it before :P ) |
| 09:56 |
SargoDarya |
just ask |
| 09:56 |
bing |
will do |
| 09:56 |
bing |
i wanna resize images trough typoscript (this i know how) but i only want it on some of the sup pages |
| 09:58 |
bing |
or just for image resizing for certain layouts of tt_content |
| 09:59 |
bing |
like every image wich is placed top left will be resized |
| 09:59 |
Winston_S |
hey's |
| 10:00 |
bing |
now i found the tt_content.image.20.layout |
| 10:00 |
bing |
hey winston |
| 10:00 |
bing |
and i found the: tt_content.image.20.1.file |
| 10:00 |
bing |
but i want a comination of both :S :P |
| 10:00 |
bing |
like adjust the .file in layout.2 for instant |
| 10:00 |
bing |
anyone :) ? |
| 10:01 |
SargoDarya |
dunno, maybe PiMB knows something |
| 10:03 |
bing |
is he around ? |
| 10:03 |
PiMB |
actually |
| 10:03 |
bing |
PiMP could you try to be my hero :) ? |
| 10:03 |
PiMB |
hm. |
| 10:04 |
PiMB |
that's a funny one |
| 10:04 |
bing |
i tottaly messed up my explenation >.< |
| 10:04 |
bing |
i have projects with sub pages and 1 of the sub pages is images |
| 10:04 |
bing |
i want images on that sub page to be eddited |
| 10:05 |
bing |
but i dont want to make new typoscript everytime i make a new project, |
| 10:05 |
bing |
so i thought if i asign a layout, and in that layout i adjust the image size :) |
| 10:05 |
bing |
or do you have any better solution ? |
| 10:05 |
PiMB |
let me think about it |
| 10:05 |
PiMB |
heads full with projects here. |
| 10:06 |
PiMB |
so give me a sec to understand.. |
| 10:06 |
PiMB |
:) |
| 10:06 |
bing |
thanks mate ;) |
| 10:07 |
bing |
or create some kind of libary around the images on the image page :P |
| 10:19 |
bing |
mabey i can help you with something aswell PiMB ? |
| 10:20 |
PiMB |
doubt it. |
| 10:21 |
PiMB |
internal projects, lot's of meetings and people overargueing.. |
| 10:21 |
PiMB |
hate it, waste of time |
| 10:23 |
compojoom |
hey guys! Has anyone worked with extbase and fluid? |
| 10:26 |
ssc |
Hi, all |
| 10:26 |
ssc |
I'm using RealURL and I'm creating a link to my rootpage. In the frontend I get this result: |
| 10:26 |
ssc |
<a href="" >myContent</a> |
| 10:26 |
ssc |
I expected the result <a href="/" >myContent</a> because this is a xhtml-valide link. |
| 10:26 |
ssc |
Do anyone have a solution for this problem ? |
| 10:27 |
PiMB |
@bing. |
| 10:27 |
PiMB |
well you have the field imageorient on the content element. |
| 10:29 |
bing |
? imageorient |
| 10:29 |
PiMB |
you might use something like if.value = 3 (number of the orient you would like to use) |
| 10:29 |
PiMB |
imageorient field is the one that is used to store what location the image is placed |
| 10:30 |
PiMB |
(see the http://typo3.org/documentation/document-library/references/doc_core_tsref/4.1.0/view/8/16/ for the id-s and the outcome) |
| 10:30 |
PiMB |
so you could maybe play with |
| 10:30 |
PiMB |
if.value = 2 (to match above: left) |
| 10:30 |
PiMB |
if.equals.field = imageorient |
| 10:31 |
PiMB |
to only apply if the layout is the one you need |
| 10:39 |
bing |
PiMB, That's the same direction I was looking (if then else statement). But how/where can I get the correct syntax for that statement? |
| 10:39 |
PiMB |
tsref as well |
| 10:39 |
PiMB |
there is no such thing as if / then |
| 10:39 |
bing |
I will look minto that!, Thanks |
| 10:40 |
PiMB |
you should work with if.equals and if.equals if.negate combinations |
| 10:40 |
PiMB |
http://typo3.org/documentation/document-library/references/doc_core_tsref/4.1.0/view/5/7/ |
| 10:42 |
PiMB |
sorry I can't come up with the total solution / working TS atm.. |
| 10:50 |
bing |
PiMB, No worries, we will figure this out , for ourselves. thanks anyway! |
| 10:51 |
PiMB |
np |
| 10:51 |
PiMB |
good luck |
| 10:51 |
PiMB |
post a t3paste.org if you get it right :) |
| 10:53 |
bing |
Will do mate, you helped allot sofar, the only thing i do not 100% get so far is how the if works. considering normaly you say if and then a reaction. but in typo i cant really figure out where to put reaction. |
| 10:54 |
bing |
ill test some stuff :) |
| 10:54 |
PiMB |
basically what you have in TS is that you do like: |
| 10:54 |
PiMB |
page.10 = TEXT |
| 10:54 |
PiMB |
page.10.value = hello world! |
| 10:55 |
PiMB |
if you want an if condition on that you do: |
| 10:55 |
PiMB |
page.10.if.equals.value = 2 |
| 10:55 |
PiMB |
page.10.if.equals.field = imageorient |
| 10:55 |
PiMB |
for example |
| 10:55 |
PiMB |
so then only if the if returns true, the page.10 will display |
| 10:56 |
PiMB |
and if you want it to work when the if is not true. |
| 10:56 |
PiMB |
you add a page.10.if.negate |
| 10:56 |
PiMB |
this inverts the outcome, so true == false and false == true |
| 10:56 |
PiMB |
:) |
| 10:56 |
PiMB |
any clearer? |
| 11:01 |
bing |
yea thanks |
| 11:02 |
bing |
AGAIN |
| 11:05 |
PiMB |
np mate |
| 11:41 |
bux |
How can I add images to a tt_news (3.0.1) rss feed? (typo3 4.2.8 + realurl 1.8.0) I already added plugin.tt_news.displayXML.showImages = 1 to the constants and added the ###NEWS_IMAGE### marker in the template. |
| 11:42 |
bux |
The images aren't displayes because of an relative path to the image and not the absolute path |
| 11:53 |
newbie |
íàðîä |
| 12:00 |
newbie |
÷òî ìîæåòå ïîñîâåòîâàòü äëÿ ñîçäàíèÿ êàòàëîãà íà typo3 ? |
| 12:01 |
bing |
PiMB could you give me some feedback on if im right or not :) ? |
| 12:02 |
bing |
2 simple things |
| 12:02 |
bing |
first you set the value of the IF function |
| 12:02 |
bing |
tt_content.image.20.if.value = 0 |
| 12:03 |
bing |
tt_content.image.20.if.equals.field = textPos |
| 12:03 |
bing |
do i check if the field textPos value = 0 right ? |
| 12:05 |
bing |
or some one else ofcourse |
| 12:18 |
bing |
sorry did some one repsond ? |
| 12:18 |
Phlunk3 |
lo guys, can anyone tell me if there is a configuration setting for making a checkbox checked in the plugin sr_feuser_register ? |
| 12:20 |
kinea |
how can i set a default action for an extbase plugin. with switchableControllerActions it seems complicated, cause ALL possible pairs of controllers and actions have to be defined in the flexform. |
| 12:23 |
kinea |
i just want to define a startview, not a controller-action-restriction |
| 12:24 |
kinea |
and sometimes i need a defaultview but, the plugin should show a higher number of different controller-action-pairs |
| 12:24 |
kinea |
then is getting complivated with switchableControllerActions |
| 12:24 |
kinea |
*complicated |
| 12:24 |
nkuttler |
hm, should typo3 add page keywords automagically to the <head> section? or do i need something in the template? |
| 12:27 |
nkuttler |
ah, right, meta.keywords.field = keywords |
| 13:06 |
Phlunk3 |
still nobody around who has needed a checkbox to be checked in sr_feuser_register in a register form? |
| 13:07 |
sorenmalling |
Phlunk3: I have made one once? |
| 13:08 |
Phlunk3 |
do you remember where u set that the checkbox should be default checked? |
| 13:10 |
sorenmalling |
I din't make it default checked :) but i think you need to do that in the HTML template |
| 13:10 |
sorenmalling |
Phlunk3: Sorry, I missed the "to be checked" part of your question |
| 13:10 |
Phlunk3 |
np |
| 13:11 |
sorenmalling |
But i think such settings goes to the HTML template |
| 13:26 |
SargoDarya |
Phlunk3: Why do you need a checkbox checked in the sr_feuser_register? |
| 13:26 |
SargoDarya |
AGB? |
| 13:26 |
SargoDarya |
or TOS? |
| 13:33 |
Phlunk3 |
I got it sorted now anyways sargo :) thank you, was a basic thing once I realised it was javascript responsible lol. |
| 13:33 |
Phlunk3 |
and I am using the checkbox to have ppl opt in to recieve emails regarding their account. |
| 13:35 |
scrieler |
hi, do anybody know how to get realtymanager work with realurl? |
| 13:35 |
Phlunk3 |
I am using append to connect two fields, they must share a link. However in this setup ofcourse its two links beside each other. Can someone point me in the right direction to have the two fields within the same length? http://www.phlogi.net/f/t3/tsp/sp/-c41bcc00aa/ |
| 13:36 |
Phlunk3 |
length == link* |
| 13:36 |
Prot0 |
Phlunk3: i think it was something with a hidden field no? |
| 13:36 |
Prot0 |
ah no, different problem |
| 13:36 |
Phlunk3 |
I just needed a configuration in the typoscript for default value |
| 13:37 |
Prot0 |
ah :) |
| 13:37 |
Prot0 |
sorry got it confused with something else |
| 13:44 |
Phlunk3 |
that question of mine was solved, stupid me for not seeing the solution :P thanks anyways |
| 13:48 |
SargoDarya |
Phlunk3: Did you just say you use javascript to check if a checkbox is checked? |
| 14:08 |
Phlunk3 |
no sargo, the plugin I was using was disabling the check with javascript. So once I knew that I was quickly able to find where it was configured. |
| 14:27 |
SargoDarya |
Just thought you're validating form input with javascript. Holy sh*t |
| 15:02 |
bing |
cant get the anoying IF statement in typoscript to work |
| 15:08 |
bing |
can some one help me with IF in typoscript ? |
| 15:08 |
Phlunk3 |
parse it and post it so we can see. |
| 15:14 |
bing |
tt_content.image.20.if.value = 0 |
| 15:14 |
bing |
tt_content.image.20.if.equals.field = imageorient |
| 15:15 |
bing |
then what you wanna do right ? |
| 15:15 |
bing |
phlunk3 |
| 15:17 |
PiMB |
sorry bing. |
| 15:17 |
PiMB |
was in a meeting. |
| 15:17 |
bing |
no problem PiMB |
| 15:17 |
bing |
i cant get it to work mate |
| 15:17 |
bing |
i halfly figured out how it works now PiMB |
| 15:17 |
bing |
but cant get it to work |
| 15:18 |
bing |
tt_content.image.20.if.value = 0 |
| 15:18 |
bing |
tt_content.image.20.if.equals.field = imageorient |
| 15:18 |
PiMB |
not sure if the 20 supports the if value |
| 15:18 |
scrieler |
where can I setup the root host? there is a problem with www. and non www., start without it, but customer want to get www. with mod_rewrite it works fine, but 1 extension don't work, is there anywhere a setting for baseurl in typo3 config? |
| 15:19 |
bing |
PiMB how do i check the value of tt_content.image.20.textPos ?? |
| 15:20 |
PiMB |
you could use a domain record on your rootpage |
| 15:20 |
PiMB |
redirecting the non-www to a www version |
| 15:20 |
bing |
Yea indeed add a domain record |
| 15:20 |
bing |
just did that what some site's of mine |
| 15:20 |
bing |
i redirected the non www. to my www. |
| 15:21 |
PiMB |
easy |
| 15:24 |
PiMB |
bing, what do you mean check the value of testPos? |
| 15:24 |
bing |
is that a private message :P ? |
| 15:24 |
PiMB |
nope |
| 15:24 |
bing |
w lol ok |
| 15:24 |
bing |
anyhow |
| 15:24 |
bing |
how i think if works |
| 15:25 |
bing |
you first give if a value |
| 15:25 |
bing |
for instant |
| 15:25 |
bing |
tt_content.image.if.value = 0 |
| 15:25 |
PiMB |
true |
| 15:25 |
bing |
then you compare it with another field and that gives true or false |
| 15:25 |
bing |
for instant |
| 15:26 |
bing |
tt_content.image.if.equals.field = textpos |
| 15:26 |
PiMB |
true |
| 15:26 |
PiMB |
I guess |
| 15:26 |
bing |
(however this doesn't work considering it in .20) |
| 15:27 |
bing |
but PiMB is a field same as a value after the . in a line :P ? |
| 15:28 |
bing |
uhm like 10.value = 10 |
| 15:28 |
bing |
if.equals.field = value ? |
| 15:28 |
bing |
that means is IF same as 10 ? |
| 15:28 |
PiMB |
right |
| 15:29 |
bing |
or is field not the right word ? |
| 15:29 |
PiMB |
depends :) |
| 15:33 |
scrieler |
thanks! |
| 15:40 |
scrieler |
anybody has experience with realty and realurl? |
| 15:41 |
bing |
combination |
| 15:41 |
bing |
or just a single one |
| 15:42 |
bing |
cause i use realurl |
| 15:42 |
scrieler |
combi |
| 15:42 |
bing |
in that case i have to pass sorry |
| 15:42 |
scrieler |
it works both, but one parameter the realty need will wrong translate |
| 15:46 |
scrieler |
example: /immobilien/ I get the list of realestate, /immobilien/mieten/ he should print a filtered list of it, but there I get: Reason: Segment "mieten" was not a keyword for a postVarSet as expected! |
| 15:48 |
bing |
cant help you mate |
| 15:50 |
ironm |
Hi guys :-) .. is it possible to make a restricted https area in the typo3 treee? (incl. der login-page) .. thank you in advance for any hints |
| 15:54 |
many |
scrieler: you need to configure it |
| 15:55 |
ironm |
!feuser_register |
| 15:55 |
many |
for example you need to tell realurly that the segment after immobilien is a postVar, which you want |
| 15:55 |
many |
that it is one, and in which one it should put it |
| 15:59 |
scrieler |
many: ok, I thought I Have done it with this settings: http://www.schmuttermaier.de/2010/03/12/realurl-config-fuer-realty-manager/ but It seems not to be enough |
| 15:59 |
FloLeBlanc |
did anyone else experience the usergroup beeing empty after editing the user with sr_feuser_register since the update? |
| 16:09 |
scrieler |
many: hmpf, was a session cache problem |
| 16:10 |
many |
heh |
| 16:10 |
Phlunk3 |
I believe new realurls arent built if u r logged in in the backend, so to properly test u need to be logged out so it will generate url's properly on first use. |
| 16:11 |
Winston_S |
see you |
| 16:13 |
SargoDarya |
Phlunk3: If you're logged in in the backend while clearing the cache with realurl enabled you will experience a lot of Typo3 page not found errors |
| 16:13 |
scrieler |
hmpf, in firefox I get correct links like ?tx_realty_pi1[showUid]=16 with IE ?tx_realty_pi1%5BshowUid%5D=16 what goes wrong? |
| 16:14 |
SargoDarya |
Phlunk3: That's one of the issues I never got fixed |
| 16:17 |
SargoDarya |
Phlunk3: http://dmitry-dulepov.com/article/how-to-fill-realurl-cache.html <- explains why it will be always an issue when you read the comments |
| 16:36 |
Neo2 |
I use the following code to generate Headline from a multi line plain text field: http://paste.phlogi.net/-b86af7de36/. I need to convert the linebreak to <br/> but the .br does not work? |
| 16:40 |
FloLeBlanc |
did they ditch support for the old template style of sr_feuser_register in the new version? |
| 17:50 |
Davincho |
hi @ all |
| 17:50 |
Davincho |
anybody here how can help me with fluid? |
| 17:50 |
Davincho |
*who* |
| 17:51 |
jbaptiste_j |
Davinch do you mean #spermdonor |
| 17:51 |
jbaptiste_j |
;) |
| 17:52 |
Davincho |
^^ |
| 17:52 |
jbaptiste_j |
seriously I haven't tried fluid yet |
| 17:52 |
Davincho |
damn :S |
| 17:52 |
jbaptiste_j |
still using automaketemplate |
| 17:53 |
Davincho |
mh . |
| 18:46 |
boonkerz |
hello |
| 18:46 |
boonkerz |
how can i display the next event with the cal extension |
| 19:03 |
foertel |
huhu |
| 19:13 |
foertel |
men, i totally get messed up in tickets i made, tickets i was supposed to make and tickets made by others *g* |
| 19:14 |
foertel |
i'll need a bigger screen |
| 22:17 |
tomsdale |
Is there a way to set sidewide constants and replace markers like ###MYMARKER### in normal T3 CE's? |
| 22:51 |
ironm |
Hi guys :-) .. does one of you run typo3 with PostgreSQL? |
| 22:51 |
SargoDarya |
nope |
| 22:51 |
SargoDarya |
but welcome back ironm |
| 22:51 |
ironm |
hi SargoDarya :-) |
| 23:06 |
[1]Babcom |
hi everyone |
| 23:07 |
[1]Babcom |
Who knows something about config.doctype ? |
| 23:08 |
[1]Babcom |
I mean IE8 is doing everything but what I want in my css file |