Search the website and IRC logs

#TYPO3 IRC log from : Monday 11 June 2007

Year: 2007 2008 2009 2010 2011 2012
Month: Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
00:02 Denyerec so if I do 10 = COA
00:02 Denyerec 20 = TEXT
00:02 Denyerec 20.value < 10
00:02 Denyerec 20 will be "text" ?
00:02 Denyerec Sorry
00:02 Denyerec "COA"
00:02 bedlamhotel Yes.
00:04 bedlamhotel ...because .value's data type is 'value' which means, effectively, 'string'...
00:04 bedlamhotel Denyerec: what are you trying to do?
00:06 Denyerec I need to create a comma separated list of emails addresses from TSFE fields
00:06 ries Denyerec: I have seen a option for that...
00:06 ries in teh link I send you one or two days ago
00:06 Denyerec Yes the "add to list" thing
00:06 bedlamhotel What does the data look like, and what does the output look like?
00:07 Denyerec http://wilcoding.xs4all.nl/Wilco/Pastecode/4751/showpaste.aspx
00:08 bedlamhotel Denyerec: what does the /data/ look like?
00:09 Denyerec errr
00:09 Denyerec just emaila sddresses
00:10 bedlamhotel So in that case, what's wrong with what you've got there?
00:10 Denyerec well
00:10 Denyerec ah
00:10 Denyerec I need to get the email addresses into,,,
00:11 Denyerec http://wilcoding.xs4all.nl/Wilco/Pastecode/4752/showpaste.aspx
00:11 Denyerec ries the problem with addToList ;= was that it wouldn't let me use fields
00:11 Denyerec it would only allow or seem to use absolute strings.
00:11 Denyerec Couldn't figure out how to do it with fields
00:12 bedlamhotel denyerec: what is the datatype of ".email_to"?
00:12 Denyerec I have the manual open , 1 mo
00:12 bedlamhotel Hint: it had better be .stdWrap, or you can stop trying...
00:13 Denyerec The manual doesn't specify
00:13 Denyerec (Mailformplus)
00:13 Denyerec I suppose I could do it in stages
00:13 Denyerec using wraps
00:14 Denyerec wrap 2 together, then wrap the 3rd onto the group of 2
00:14 bedlamhotel Well, you can wade through the extension's code to see what TYPO3 function (if any) processes the value of email_to...
00:14 bedlamhotel does 'email_to' receive any value other than 'COA'?
00:16 Denyerec right...
00:16 Denyerec by default, it just takes an email address as string
00:17 Denyerec so I put one email address in a constant
00:17 Denyerec so I could wrap it with one field
00:17 Denyerec but I need to append a second field to the list
00:18 Denyerec and am out of ideas.
00:18 bedlamhotel Heh ;-) Email the author and request that the value of that field (and any other that actually deals in /data/) be passed through .stdWrap...
00:19 Denyerec is there a simple test I can perform on it to see if it's already going through stdwrap ?
00:19 Denyerec execute smt on it and output it to a screen area for example
00:19 bedlamhotel Denyerec: this is /why/ I was telling you a week or two back that extension TS should get passed through stdWrap function...
00:19 bedlamhotel sure:
00:20 bedlamhotel email_to = TEXT // email_to.value = (obscured mail address)
00:20 bedlamhotel sorry:
00:20 bedlamhotel email_to.cObject = TEXT // email_to.cObject.value = (obscured mail address)
00:21 Denyerec and see if it outputs?
00:21 bedlamhotel then it's processing .cObject which is a stdWrap function--in that case, you're nearly home and dry.
00:22 Denyerec wE SHALL SEE in a moment
00:22 Denyerec zzzzzing!
00:22 Denyerec Ok it worked.
00:23 Denyerec so, now to combine temp.100.30 temp.100.40 and {$sendtoemail}
00:23 bedlamhotel Oho! Chalk up mailformplus as a /good/ extension (Good extension. Here's a biscuit...)
00:23 Denyerec haha
00:27 Denyerec SO, the final step?
00:27 Denyerec implode.theWorld
00:29 Denyerec ah
00:29 Denyerec I can load the cObject from my COA
00:33 bedlamhotel Huh?
00:34 bedlamhotel_ Denyerec: huh?
00:34 Denyerec [01:27] <Denyerec> so, now to combine temp.100.30 temp.100.40 and {$sendtoemail}
00:35 Denyerec [01:34] <Denyerec> I can load the cObject from my COA ?
00:35 Denyerec looking through the stdWrap functions
00:35 Denyerec dn't see a MagicallyMakeDenysListFOrHim function tho
00:36 bedlamhotel_ Denyerec: you've already basically done it with your test to see if email_to passes through stdWrap...
00:36 bedlamhotel_ ...change the TEXT cObject to a COA...
00:36 Denyerec so set the cobj to my COA
00:36 Denyerec where would the comma's come from?
00:36 Denyerec add them into my COA?
00:36 bedlamhotel_ er .wrap maybe?
00:37 Denyerec good, good.
00:37 bedlamhotel_ lib.foo = TEXT // lib.foo.value = (obscured mail address) // lib.foo.value.wrap = |,
00:39 Denyerec Aye
00:39 Denyerec if I do this:
00:39 Denyerec email_to.cObject = COA
00:40 Denyerec is that not the same as email_to.cObject < temp.100
00:40 Denyerec if temp.100 is a COA?
00:40 bedlamhotel_ should be...why?
00:41 Denyerec ok cool
00:41 Denyerec bit itred here so not thiking veryclearly
00:42 Denyerec Hmm
00:43 Denyerec I don't think it worked
00:43 Denyerec whoops
00:43 Denyerec forgot to define it as a COA
00:47 Denyerec bedlamhotel_ -> http://wilcoding.xs4all.nl/Wilco/Pastecode/4753/showpaste.aspx
00:48 Denyerec when I feed plugin.tx_thmailformplus_pi1.default.email_to into a template area, it's blank.
00:48 Denyerec Should perhaps temp.110 be COA_INT ?
00:48 bedlamhotel_ try lib.110 instead. There are differences between lib and temp...
00:56 Denyerec the situation did not improve.
00:57 Denyerec the COA is populated...
00:57 Denyerec I'm starting to wonder if the cObj test from earlier was a cached result
00:58 Denyerec Oh frig a duck
00:58 Denyerec it's working now ?!
00:59 Denyerec a COA_INT is non cached right?
01:13 Denyerec bedlamhotel_ I think I know what the problem is.
01:13 Denyerec plugin.tx_thmailformplus_pi1.default.email_to is empty, but plugin.tx_thmailformplus_pi1.default.email_to.cObject seems to be OK
01:13 Denyerec as in. the cObj has my values in
01:13 Denyerec but the plugin looks to be handlng... oh wait
01:14 Denyerec I think I'm being stupid again
01:15 Denyerec Hmm
01:15 Denyerec ni
01:15 Denyerec no
01:15 Denyerec definately not my fault :(
01:16 Denyerec the plugin is clearly looking at email_to and not the result of ... oh I dn'tknow
01:16 Denyerec wouldn'mt nmiund bt it had to be workig byt morning
01:16 bedlamhotel_ Denyerec: your vowels are rebelling...
01:16 Denyerec my hands hurt
01:16 Denyerec too much typing :(
01:17 Denyerec how can I make email_to equal to the result of email_to.cObject ?
01:19 Denyerec heh
01:19 Denyerec stupid q
01:20 bedlamhotel_ denyerec: if you still think that the value passed to email_to gets passed through .stdWrap, define it directly (instead of copying the cObject)...
01:20 Denyerec cObject.10 etc
01:21 bedlamhotel_ Denyerec: making sure, of course, that you've go .cObject = COA
01:26 Denyerec it seems to mail out when the cObject is TECT
01:26 Denyerec TEXT
01:28 Denyerec arGH
01:28 bedlamhotel_ Denyerec: it is perhaps possible that the value there gets passed through the TEXT cObject's function...
01:28 bedlamhotel_ You can try something like this:
01:29 bedlamhotel_ http://phpfi.com/240836
01:30 Denyerec and then throw lib.foo into email_to
01:32 bedlamhotel_ Yes. Or just define it there in the first place.
01:36 Denyerec mmmm
01:36 Denyerec well
01:36 Denyerec it worked as a COA
01:36 Denyerec but COA_INT breaks it
02:07 gerards morning everyone.
02:11 ries get gerards
02:11 ries hey gerards
02:12 gerards hi ries
02:13 ries I might need to ask you a favour...
02:15 gerards go on.
02:20 ries see MSN
04:10 d|g hi all =)
04:25 gerards hi Denyerec
04:25 gerards hi djg
04:31 d|g gerards hi
06:04 just2b good morning
06:09 zatmania hi #typo3
06:10 just2b zu zatmania
06:11 zatmania lu just2b
06:11 cozwei a very good morning T3 ;-)
06:12 just2b thx 2 cozwei ;) to you too ;)
06:17 smeringe hi all
06:43 Layna Good Mornign everybody. I am stuck with TT_news. I have a sysFolder for it, it even is set to "contains plugin: news"... but no part of the news-plugin finds my categories.
06:44 just2b layna.. set the global pid in the page properties or disable it in the EM settings of tt_news
06:45 Layna EM?
06:45 just2b extension manager
06:45 Layna But the PID workjed ^^
06:45 Layna Ah!
06:45 Layna Thanks :).
06:45 just2b yeah! ;)
06:46 just2b paypal @ just2b.com ;)
06:47 Layna Wouldn't you rather have a biiig hug? ^^
06:47 Layna Would offer a little kiss, but you once mentiones a girlfriend, wouldn'Ät want to make her angry ^^
06:48 just2b she wouldn'T know ;) i take the biiiig hug + the little kiss ;)
06:48 just2b ot: in the night she dreamt about another man.. so ;) ...
06:49 Layna *gives just2b biiiiiig hug and little kiss*
06:51 Jigal good morning #typo3
06:52 Layna gooooood morning Jigal
06:52 just2b hi Jigal
06:52 Jigal just2b: you lucky bastard ;-)
06:56 smeringe :)
06:57 just2b so layna.. you will be @ T3BOARD08 ? ;)
06:58 Layna Nope. but possibly at the Chaos Communication Camp
06:59 just2b damn it.. we will never meet ;)
06:59 Layna No chance of you at the CC? Pity, it sounds like fun down therw ^^
07:00 just2b yeah but I can't be everywhere... need to be a little bit at home, work and so... in last 5 weeks > 2 weeks thailand, 3 days hamburg,... in august switzerland..
07:00 Layna Damn, and I didnÄt know about your Hamburg....
07:01 just2b google dev day ;)
07:02 Layna Ah, was in the middle of the week anyway
07:02 just2b you are from hamburg?
07:03 Layna Yes; at elaqts originally. I am in the process of moving to Lübeck, though. At the moments, it's weekends in Hamburg, and Work in Lübeck... where I was bold enough to say "ok" when asked to have a look into Typo3 ;)
07:03 Layna Wich I am at the moment trying desperately to learn ;)
07:04 just2b I just loved hamburg... got a job there for me`? ;)
07:04 Layna I am in Lübeck because I couldn't fond one there. But then again, while lookign bakc then, I skipped a few that wanted Typo3-experience...
07:06 just2b hehe... I guess my gf wouldn't like it.. but still need to finish university
07:07 Layna What are you studying? Or does SHE need to finish and cannot move because of that?
07:09 Jigal hi Fanty, teppi|work
07:09 just2b wirtschaftsinformatik, she leanrns nursery teacher.. needs 2y
07:09 teppi|work good morning
07:09 Cavallo hi
07:09 just2b good morning teppi|work
07:10 Layna Ah. Well, good luck to both of you for your studies, then ^^.
07:10 Cavallo is possible to add all <img /> tags into <a href=""><img /></a> ? So kind of wrapping.
07:10 Layna And good morning to all new arrivals ^^
07:11 just2b yeah to you too ;)
07:11 just2b cavollo, yeah should be possible.. but why?
07:12 Fanty morning
07:12 deckard morning
07:12 Cavallo I need to use lightbox and I want to wrap all my content images with <a rel="lightbox" .... I have tryed lightobx ext. for typo3 but it does not work fine for me
07:13 just2b why not the ext?
07:13 Layna *blinks... ran into a new problem again* If I want to include a PHP-script... I need to upload it.. right? So... how do I give myself permission to upload a php..???
07:13 just2b Layna just use ftp
07:13 just2b or quixexplorer which is kind of online-ftp
07:14 Cavallo I have tried it but ext. opens images just half of the screen and then stops. And also background of lightbox ext. goes behinf my content so the images is not viewable :/ Dunno why
07:14 just2b some kind of css problem... is the source code correct?
07:15 Layna ok. *at leats has full access to her server* ^^
07:15 just2b Layna > TYPO3 is sometimes quite difficult but you can still easy things in a very easy way ;)
07:15 Cavallo just2b yeah I have think on that to. But I have copyed all the source from page and used the original lightbox2 code and it worked ok. But in typo it breaks
07:16 Cavallo typo3* :)
07:16 Layna LOL, like "cheating" by using ftp? *WEG*
07:16 just2b lol
07:18 just2b Cavallo tried pmk_slimbox?
07:19 Cavallo just2b I have tryed KJ: Image Lightbox v2 ext.
07:19 just2b yeah i know, that's why i ask
07:20 Cavallo is pmk_slimbox better ?
07:20 gerards does anyone have a problem that after you log in to the BE, they display a "No user logged in! Sorry, I can't proceed then!" error?
07:21 smeringe hi gerards. which part of the world are you in nowadays? :)
07:21 just2b Cavallo yeah just try
07:21 Cavallo ok
07:21 gerards i'm now in Singapore.
07:21 Cavallo thanks
07:21 Cavallo until now :)
07:21 just2b gerards disable ip lockl
07:21 gerards smeringe: have we spoken in this channel before? :)
07:22 smeringe gerards: as smda, yes ;)
07:22 gerards just2b: i don't think its ip lock.
07:22 gerards i checked the localconf.php file already.
07:22 gerards smeringe: ahhh! how're you?
07:22 just2b the login is sucessfull but you get logout out... so everything else is fine
07:23 smeringe gerards: just fine. tons of work though.
07:23 gerards let me check the temp localconf.php files.... i might have missed a lockip somewhere...
07:23 gerards smeringe: that's always good news dude.
07:23 just2b gerards take a look at install tool
07:26 gerards just2b: yeah. i'm checking it now. it probably is an ip lock, i just don't know where. because I've changed my ip.
07:27 just2b all configuration > search for it
07:30 gerards thanks just2b. i'm in the BE.
07:30 Layna Ok... News work, scripts are included... and I shall go hunting for a non-typo problöem the ppl here launched me into. Bye for now :). And just2b: tell your gf that the CCC would be fun for her, too, lots of people from all places and all that ;).
07:30 Layna bye for niw :)
07:30 just2b gerards... always trust a pro ;)))))))
07:31 gerards sounds like good advice.
07:43 bauschan hi @ all
07:43 just2b hi bauschan
07:45 bauschan anybody using T3 on php >= 5.2.1
07:45 FloLeBlanc hi all
07:45 bauschan lo flo
07:46 Jigal hi beev0r, bauschan, delmonico, drindt, FloLeBlanc
07:47 drindt Jigal: hoi hoi
07:47 bauschan php 5.2.1 completely kills my web module's functionality
07:47 bauschan just a blank frame left :(
07:47 bauschan anybody can confirm this?
07:48 FloLeBlanc bauschan sorry have only php4
07:48 Jigal bauschan: here also PHP4...
07:48 just2b anyone can help with tt_news and archive?
07:49 Irix I have always had prblems with php5
07:49 FloLeBlanc just2b: what do you need to know
07:49 just2b how do i get an empty list-view which is filled afterwards with the records from amenu?
07:50 just2b I already set
07:50 just2b plugin.tt_news.enableArchiveDate = 1
07:50 just2b plugin.tt_news.datetimeDaysToArchive = 2
07:50 FloLeBlanc just2b: you want a list view that you fill with a MENU?
07:50 bauschan FloLeBlanc, Jigal :hey dudes, we live in the 21. century ;)
07:51 just2b yeah
07:51 FloLeBlanc sorry never done that
07:51 Jigal bauschan: yep, and sysadmins are conservative as ... as... ehmmm... wel, you get the idea ;-)
07:52 bauschan Jigal: oki, I'll try php-6-dev instead, lol
07:52 bauschan cause I'm my own sysadmin
07:54 Jigal bauschan: did you do an upgrade or did you try your module on PHP5 installation (which was funning TYPO3 already)?
07:55 bauschan Jigal: a clean, fresh install of both php/t3
07:56 Jigal bauschan: the rest of TYPO3 works correctly?
07:56 bauschan that's the strange part, yes!
07:57 bauschan I can remember there has been such an issue a while ago
07:57 bauschan I search the list
07:57 Jigal bauschan: enough memory allocated to PHP?
07:58 bauschan 64M should be enough
07:58 Jigal that's what was said about 640K some time ago ;-)
08:01 FloLeBlanc bauschan: really? OMG! That's why they stole my horse and all my spells are not working
08:03 Jigal FloLeBlanc: wrong window or are you slowly losing it? LOL
08:04 FloLeBlanc <bauschan> FloLeBlanc, Jigal :hey dudes, we live in the 21. century ;)
08:05 Jigal bauschan: your ext doesn't happen to have functions/constants/classes with the names exception, final, php_user_filter (yes, unlikely), interface, implements, public, private, protected, abstract, clone, try, catch, throw, cfunction, old_function or this??
08:06 Jigal FloLeBlanc: ah, you're just getting older ;-P
08:07 FloLeBlanc Jigal: hehe
08:07 FloLeBlanc man.. summer starts over here.. you look out of the window.. sunshine.. and no laptop that is fast enough to work on :)
08:08 Jigal wheater here: 18 °C, foggy
08:09 FloLeBlanc ooooh nice
08:09 MarwolTuk hello, guys and girls...
08:09 FloLeBlanc hi marwol
08:09 MarwolTuk hi flo
08:09 Jigal hi MarwolTuk
08:09 MarwolTuk hi Jigal
08:10 Phlogi hmm I'm moving a typo3 site, anyone knows which ext creates the column middle name in tt_address?
08:11 MarwolTuk question: is there a posibility to copy a page with subpages inside typo?
08:11 just2b MarwolTuk yes, on default
08:11 just2b Phlogi no entry in phpmyadmin > middlename?
08:12 Phlogi nope... I imported the whole tt_address table from the old page...
08:12 Phlogi maybe I should use the compare tool?
08:13 FloLeBlanc *continues the never ending jm_gallery 0.9.1 story* :) for those it may concern: due to jens mittag the ecard php error is fixed, furthermore it should now work with php4
08:13 Phlogi ALTER TABLE tt_address ADD middle_name tinytext NOT NULL;, yes I should :)
08:13 Jigal Phlogi: http://typo3.org/extensions/repository/view/tt_address/2.1.0/info/locallang_tca.xml/ says that it is present in 2.1.0 ?
08:13 Phlogi hmm
08:15 Phlogi Now I'm trying to sort the addresses to the new folders with different pid's.... So I just changed the pid's in the db but they do not show up in the t3 backend.
08:16 Jigal FloLeBlanc: m4rtijn already told us Friday afternoon ;-P He was looking for whoever was struggling with jm_gallery...
08:16 Phlogi ah :D
08:16 FloLeBlanc m4rtijn = jens mittag? no or?
08:17 alexwx helo there
08:17 Phlogi it works now :)
08:18 Jigal FloLeBlanc: I wouldn't know... I only know nicks :-(
08:18 Jigal Phlogi: how did you fix it?
08:18 Cavallo just2b I cant get it to work with slimbox ext. :/ I have followed the instructions from this link (http://typo3.org/documentation/document-library/extension-manuals/pmkslimbox/2.0.0/view/1/4/#id3547100) but no success :/ I have added all ATagParams = rel="lightbox" and all other things but no luck. Do I use ATagParams = rel="lightbox" in right way ? Or I must use typolink.ATagParams = rel="lightbox" ? Im kinda new in typo3 script :)
08:18 alexwx i have a problem , i have an mysql error in FE and also BE in the list view, i know from extension it comes, but i dont know exactly from, because this error just reffer to the class.t3lib_db.php :( any help please?
08:19 FloLeBlanc alexwx: go to the according line in class.t3lib_db.php and print the query before it gets resolved perhaps?
08:21 alexwx FloLeBlanc mmm but i have to do tehe update into source, but maybe i can
08:21 Jigal alexwx: if you have Warnings about something not being a valid MySQL resource, it sometimes helps to start the Install tool in the backend and check/repair the database....
08:21 alexwx Jigal i try
08:22 alexwx Jigal yo mean Database analyzer?
08:22 MarwolTuk just2b: and how can i do this?
08:23 just2b MarwolTuk > user settings > set the level and copy in the tree with click on icon
08:26 alexwx Jigal it seems it helps, i forgot for one nonexisting table create :) but sometimes i had similar problem, then i check it again, maybe it helps, too.. thank you
08:26 bauschan Jigal: the web modules thing must have been the memory issue, I killed all processes, restarted apache and voila :)
08:28 Phlogi I moved the name of my page from .com to .org and now reaulurl does not _generate_ nice links any longer... Of course I changed: config.baseURL
08:31 Phlogi ah works
08:31 Jigal alexwx: yes, but you found that out yourself ;-)
08:31 Irix Phlogi what caused the problem then ?
08:33 alexwx otherwise have anyone experiences with ext_tables_static+adt.sql? it doesnt work properly ... hmmm really strange behavior
08:33 MarwolTuk thx just2b, allready searched there but over-read it somehow... so i've to read more carefully next time, for asking not such newbeeish questions...
08:35 FloLeBlanc I'm so close... perhaps jm_gallery will finally really work for me :)
08:39 just2b MarwolTuk these kind of questions are ok, as long as they are polite and not unfriendly ;)
08:43 FloLeBlanc just2b: that means you would not answer if I ask: FFS! why does the friggin imagmagick render all the damn pics so ugly? :)
08:45 FloLeBlanc does anyone have experience with rendering watermarks on the thumbs and single pictures on your page? I wanted to use a png with transparency and render a jpg but it looks... hmm awful :)
08:52 koomi moin
08:52 Jigal FloLeBlanc: can you specify "awful"?
08:52 FloLeBlanc Jigal: sorry - http://www.billardcafe.at/typo3temp/GB/9cc23a12df.gif :)
08:54 just2b want my personal option?
08:54 just2b forget the watermarks ;)
08:54 FloLeBlanc the setting is: format: jpg, quality: 100
08:54 FloLeBlanc yes but the image itself is awful too :)
08:55 FloLeBlanc hmm perhaps that is because jm_gallery renders the singlepic as jpg and then it gets rendered as jpg AGAIN?
08:55 FloLeBlanc but then again.. how would I prevent that
08:57 Jigal FloLeBlanc: the image you show us is a GIF...
08:59 FloLeBlanc Jigal: yes sorry played around with the settings a bit
09:00 FloLeBlanc http://www.billardcafe.at/typo3temp/GB/e43eafc39c.jpg was the "default" setting
09:00 Jigal FloLeBlanc: adding a watermark in a corner an resaving it as a jpeg should not reduce the quality of the rest of the image. The rest is already optimized for JPEG compression and because JPEG handles blocks of pixels (8x8 IIRC) at a time only the surroundings of the watermark will be resampled...
09:00 FloLeBlanc hmm... ok thank you
09:01 just2b jigal doesn'T it look like it has been jpg> gif> jpg? and loosing the details there?
09:03 Jigal FloLeBlanc: it doesn't look like 100% quality if you look at area around the watermark...
09:04 Jigal FloLeBlanc: it looks like a low quality JPEG in the first place and it doesn't seem that the watermark has improved things much...
09:05 FloLeBlanc Jigal: the point is in the original it is not low quality :)
09:05 FloLeBlanc at least not THAT low hehe
09:06 Jigal FloLeBlanc: and it was a JPEG after jm_gallery had fun with it?
09:06 FloLeBlanc now that I look at it.. hmm the quality is not THAT good but it's not as ugly as the result when you look at the logo on the top right
09:06 FloLeBlanc http://www.billardcafe.at/fileadmin/template/pics/lokfotos/1010/1010_1.jpg
09:07 FloLeBlanc jigal: yes
09:08 FloLeBlanc http://www.billardcafe.at/index.php?id=46&tx_jmgallery_pi1[albumUid]=2&tx_jmgallery_pi1[imageUid]=368&cHash=e5ec2d1ff8
09:08 FloLeBlanc single without any TS code that tampers with SINGLE
09:11 Jigal FloLeBlanc: the image has been resized too, not only a watermark added!
09:12 FloLeBlanc jigal: oh
09:12 FloLeBlanc didn't recognize that yet *checks*
09:13 Jigal FloLeBlanc: sorry, my fault when inspecting them closer... :-o
09:14 Jigal FloLeBlanc: you didn't apply a sharpen filt when adding the watermark?
09:15 Jigal *filt = filter
09:17 FloLeBlanc Jigal: no
09:17 FloLeBlanc at least not if it is not used by default
09:17 FloLeBlanc will post my ts
09:19 FloLeBlanc http://phpfi.com/240858
09:21 Jigal FloLeBlanc: why is there twice an IMAGE block with the wasserzeichen.png?
09:22 FloLeBlanc because I forgot to delete one *emberassed*
09:22 Jigal good explanation ;-)
09:22 FloLeBlanc but you are correct it seems to get smaller
09:23 FloLeBlanc (deleted the block, ugly nonetheless)
09:23 FloLeBlanc but XY = [10.w],[10.h] should size it like the source file shouldn't it?
09:24 FloLeBlanc interesting.. when I delete the XY part the image gets VERY small and only a fraction of it is shown
09:24 Jigal odd...
09:28 Jigal I doubt that you need transparentBackground as the description says that "TYPO3 makes the color found at position 0,0 of the image (upper left corner) transparent". Which looks very much like GIF transparancy...
09:32 FloLeBlanc perhaps I will leave the watermark out and try to get the image as it was :)
09:33 just2b FloLeBlanc as i mentioned way before ;)
09:33 FloLeBlanc just2b: sorry must have overread
09:33 just2b 04[11:00] just2b: 01want my personal option?
09:33 just2b 04[11:00] just2b: 01forget the watermarks ;)
09:33 FloLeBlanc ah THIS sentence
09:33 FloLeBlanc no i want the watermarks :)
09:34 FloLeBlanc but for testing I'll leave them out for now
09:35 FloLeBlanc hmm
09:35 FloLeBlanc http://phpfi.com/240864 => even with the minimum of options the pic gets "screwed"
09:36 FloLeBlanc looks the same with format and quality not outcommented
09:37 Jigal very strange...
09:40 FloLeBlanc can I output the 10.file = ###SOURCE_FILE### somehow? (what the sourcefile is)
09:40 FloLeBlanc page.20 = TEXT, page.20.value = sourcefile didn't seem to do it
09:43 FloLeBlanc hi m4artijn :)
09:43 m4rtijn quickster ;)
09:43 m4rtijn hi all
09:43 FloLeBlanc someone said you got the jm_gallery running?
09:44 Jigal FloLeBlanc: http://bugs.typo3.org/view.php?id=4185
09:44 FloLeBlanc Jigal: oh.. thank you
09:44 m4rtijn jens mittag, the author wrote me that he uploaded a new version where the missing ')' in ecard bug is resolved
09:44 FloLeBlanc yes that works nicely now
09:45 FloLeBlanc still have problems with the frontend admin though
09:45 Denyerec is there a *simple* way to run all text output by typo through a php function if a certain user is logged in ?
09:45 m4rtijn ah, I didnt set up the FE admin yet
09:45 Denyerec I want to give someone access to a FE_User login section of the site, but because the information is sensitive, I want to scramble it.
10:31 FloLeBlanc where do I put page.config.baseURL in setup or constants?
10:53 m4rtijn hmmm.. HMENU special = directory should work for pages in a sysfolder or not?
11:09 mikhas hey. :) if I want to secure my frontend-user login and password change, what module is good to use currently? I've found some different ones but don't know how they stand up today
11:13 FloLeBlanc mikhas: for md5'ing of the passwords I didn't find an extension what works to my satisfaction
11:13 FloLeBlanc had to do much by hand
11:14 mikhas ah, ok. What is the reason behind not md5-hashing frontend-pw's?
11:15 mikhas (if such reason exist - I guess it does)
11:15 FloLeBlanc mikhas: I don't really know, all I know is implementing it took me a lot of time due to problems arising with the inclusion of kb_md5 or how it is called :)
11:15 mikhas and what was unsatisfying with the modules you tried?
11:15 mikhas ah, okay
11:16 FloLeBlanc it all works over javascript, what is a good point on one hand, because you never post the unencoded pw
11:16 FloLeBlanc it is bad because the user HAS to have js enabled
11:16 mikhas maybe it's easier to do ssh-tunneling instead. :)
11:16 mikhas ah..
11:16 FloLeBlanc and there was a problem with selecting a country and going back and stuff
11:16 FloLeBlanc I think it was if the user enters the pw, changes the country, the pw gets md5 hashed, if he then changes it, the pw is stored as is
11:17 FloLeBlanc therefore the pw on login will never be correct because the system tries to compare the hash with the "original" pw
11:17 mikhas ah, it doesn't go all the way with the md5. I can see the problem.
11:17 mikhas this you tried recently?
11:19 FloLeBlanc well for my site I needed some rewriting for sr_feuser_register anyway because my users have to confirm their reg via sms
11:30 m4rtijn hmm, if I want to make a GMENU with 5 navi points and 5 different pictures.. whats the smartest way to do that?
11:30 Jigal FloLeBlanc: and that SMS confirmation works very well! ;-)
11:31 FloLeBlanc jigal: yes even master cooks from holland can do it :)
11:31 m4rtijn I could wrap all menu points in <div>'s and then insert background pics via .css .. any smarter ideas?
11:31 Jigal FloLeBlanc: it is a lot more expensive to register from another country :-(
11:32 FloLeBlanc Jigal: how much did you pay?
11:32 FloLeBlanc Jigal: the link you provided is nice but they don't state WHERE I should insert the lines lol
11:32 Jigal FloLeBlanc: EUR 0,50 per SMS; while I pay EUR 0,08 for SMS to Dutch mobile numbers
11:33 FloLeBlanc :( will send you the money via bank transfer :)
11:34 Jigal FloLeBlanc: but I read a news article that the EU decided that international mobile calls must become cheaper and that the prizes will go down in two steps
11:34 FloLeBlanc yahoo :)
11:35 Jigal FloLeBlanc: I knew it before I say that I would try it! Besides how much do think an internation money transfer will cost? LOL
11:35 Jigal *say = said
11:35 FloLeBlanc Jigal: in the EU nothing afaik as long as you have an IBAN
11:37 FloLeBlanc at least I know why the image gets small if I do not set a XY config now: if (!$this->setup['XY']) {$this->setup['XY']='120,50';}
11:37 Jigal ries, you're early! ;-)
11:37 Cavallo anyone have any experience with slimbox ext. for typo3 ?
11:37 FloLeBlanc hi ries
11:39 Jigal FloLeBlanc: the docs say that the default is 100, 20 !?
11:39 FloLeBlanc well the code says its 120,50 :)
11:40 FloLeBlanc class.tslib_gifbuilder.php line 192
11:40 Jigal FloLeBlanc: are you sure that you have ImageMagick working? All the bug seem to be related to GD library and of course all these actions can be performed with imagemagick...
11:40 FloLeBlanc Jigal I will recheck
11:43 FloLeBlanc all file operations pass in the install tool
11:43 FloLeBlanc check image magick: available
11:43 FloLeBlanc 6.0.6
11:44 FloLeBlanc jigal: how do you see that http://bugs.typo3.org/view.php?id=4185 has to do with gdlibrary and not IM?
11:46 ries Hey FloLeBlanc , hey all
11:47 ries Hey Jigal , yeaa big day today... we are going to buy a car
11:47 Jigal FloLeBlanc: that one seems specific for IM ( ... ->cmds['jpeg'] = '-colorspace RGB -quality 100'; ) these look like commandline options for IM...
11:47 Jigal ries: exiting!!
11:48 FloLeBlanc now if the poster only included a hint WHERE to put it :)
11:48 Jigal no exciting LOL
11:49 Jigal FloLeBlanc: gifBuild() is a function in tslib_gifbuilder.php
11:49 ries Jigal: Yeaaa it is actualy.... :D
11:50 FloLeBlanc jigal: it says: I changed the function start to.....
11:50 FloLeBlanc but the function start has about 100 lines :)
12:07 FloLeBlanc jigal: yes and he sais... "later in the function gifbuild I added....
12:07 FloLeBlanc but that is not the start of the bugfix :)
12:08 FloLeBlanc there is no clue where to add the lines in the start function.. should I just put them anywhere :)
12:09 Jigal well, not anywhere ;-)
12:09 Jigal It looks like a IM-only fix to me
12:10 FloLeBlanc appearently the position I put the fix was not the right one :) nothing happens *G*
12:11 FloLeBlanc what puzzles me however is: if it is really a gifbuilder problem , why is jm_gallery able to create a "good" single view with it :)
12:16 Jigal FloLeBlanc: maybe jm_gallery doesn't use the gifbuilder code?
12:16 FloLeBlanc hmm that's correct :)
12:21 ddddd gggg
12:22 ries [TYPO3] TYPO3 Security Bulletin TYPO3-20070608-1: SQL injection in macina_banners / ric_rotation
12:23 ries anybody that uses one of two?? better upgrade now!
12:23 FloLeBlanc http://phpfi.com/240893 can someone tell me the answer?
12:23 FloLeBlanc thx ries, I do
12:24 ries FloLeBlanc: I think the file should already have been included...
12:24 FloLeBlanc read more passes me to a gif though :)
12:24 FloLeBlanc thx ries
12:28 FloLeBlanc ah good they provided a new vers *fixed*
12:33 Jigal FloLeBlanc: t3lib_stdgraphic.php::inti() $this->cmds['jpg'] = $this->cmds[jpeg'] = '-colorspace RGB -sharpen 50 -quality '.intval(.... sharpen!!!
12:33 FloLeBlanc urgh
12:34 FloLeBlanc they really like to make my day huh? :)
12:35 FloLeBlanc after checking the TSRef it seems I cannot even disable this by default? weird
12:35 Jigal later on : if ($gfxConf[im_no_effects']) { ... een versie zonder sharpen; dus of je even $GLOBALS['TYPO3_INF_VARS']['GFX']['im_no_effects'] = true wilt zetten...
12:37 FloLeBlanc hmm.. ts ref does tell me nothing about effects = 0
12:37 FloLeBlanc perhaps if I overwrite an object per default hmm
12:38 Jigal FloLeBlanc: I was switching languages within the same line... trying to multitask in two languages... ;-)
12:38 FloLeBlanc hehe
12:38 Jigal FloLeBlanc: you probably got the idea?
12:38 FloLeBlanc I got the idea that there is a default sharpen and a variable which should disable all effects (so also the sharpen)?
12:40 Jigal yep a setting 'im_no_effects' will let the process start without the -sharpen 50...
12:41 FloLeBlanc i wonder if I can set this via TS
12:43 FloLeBlanc ppl seem to solve this over params
12:44 Jigal FloLeBlanc: unless im_v5effects is set, then it uses a 10% sharpening command
12:44 FloLeBlanc *sigh* :)
12:48 FloLeBlanc interesting.. in every hint they use params which is only defined for scale in the tsref lol
12:50 FloLeBlanc hmm rotate DOES work however *G*
12:52 Layna Hello again. I am going over the TemplaViola-tutorial and am stuck with the Flexible Content Elements. How fo I mal the link_url correctly? Link of tut: http://typo3.org/documentation/document-library/tutorials/doc_tut_ftb1/1.0.1/view/1/4/#id2853205
12:52 Layna How do I map..
12:52 Jigal FloLeBlanc: function maskImageOntoImage is also hilarious. It "implements the "IMAGE" GIFBUILDER object when the "mask" property is tru"... and >>>
12:52 FloLeBlanc it doesn't seem to matter though if I use sharpen=1 or sharpen=99
12:52 FloLeBlanc Jigal: brrrr
12:53 Jigal FloLeBlanc: function copyImageOntoImage which implements the "IMAGE" GIFBUILDER object, when the "mask" property is false (using only $conf['file'])"
12:53 Layna That what happens the moment you ask.. you find the answer yourself. The mappinx.type was wrong..
12:55 FloLeBlanc hmm they suggest to change $TYPO3_CONF_VARS[GFX][im_combine$TYPO3_CONF_VARS_filename] to composite from combine
12:55 FloLeBlanc hmm it IS on composite in my install though *G*
13:10 floxxon problem: htmlarea rte doesn't work anymore. if i klick fullscreen richt text editor view, it is being loaded...what could this be?
13:11 floxxon checked user settings and updated the extension
13:12 m4rtijn hmm.. is typo3forum.net/forum down? :p
13:13 Jigal floxxon: more than one version of the extension installed? (different versions in system, global, local) In TYPO3 v.4.x one should use the system version that was included with TYPO3 IIRC...
13:16 floxxon jigal: yes, its installed locally with version 1.4.4 - newer than the system version (1.2.8)
13:16 floxxon i meant 1.3.8
13:17 floxxon how can i reactivate the system version?
13:25 m4rtijn does anyone know how I could replace the tt_news "more" link with an image?
13:25 floxxon jigal: now i'm using the system extension - but it doesnt work
13:30 FloLeBlanc jigal: lol omg
13:30 FloLeBlanc http://bugs.typo3.org/view.php?id=760
13:43 brain-xy hello all
13:47 brain-xy did anybody experienced problems with deleting content elements when TV is installed?
13:48 kaktuspalme does i need authentication services für ldap in version 4.0?
13:49 FloLeBlanc http://bugs.typo3.org/view.php?id=760 it is stated that the problem occured in t3 v3.8.0 rc1 how will I know if it was fixed in 4.0.4?
13:49 skorpi kaktuspalme: ldap_auth is an authentication service
13:50 Jigal sorry, I was called away...
13:51 Jigal FloLeBlanc: "12.08.06 14:21 Michael Stucki Status resolved => closed " I think a version 4 installation will have the fix include...
13:51 FloLeBlanc hmm ok then that cannot be the cause
13:51 Jigal FloLeBlanc: "29.01.06 21:41 Bernhard Kraft Fixed in Version => 4.0rc1 "
13:52 FloLeBlanc ah sorry overread that it seems
13:52 kaktuspalme skorpi: yes i've got a book here, and theres written t
13:52 kaktuspalme that i need it
13:52 kaktuspalme but i've seen in typo3 4.0 its integrated
13:52 skorpi kaktuspalme: Which book?
13:53 skorpi kaktuspalme: the services that are used by the ldap-extensions are integrated in version 4.x. But not the ldap-stuff itself
13:55 kaktuspalme yes i've seen thx :)
13:55 kaktuspalme a lot :)
13:56 Denyerec I want to give someone access to a FE_User login section of the site, but because the information is sensitive, I want to scramble it.
13:56 Denyerec is there a *simple* way to run all text output by typo through a php function if a certain user is logged in ?
13:58 skorpi a simple way in TYPO3? Why don't you make static webpages ;-).
14:00 koomi Denyerec: why not use ssl? :)
14:01 Denyerec SImply put, it would be nice to give someone a tour of the inside of a members only site, without giving away any sensitive information.
14:01 Denyerec So scrambling all the text seemed like a neat idea.
14:02 Denyerec hehe
14:02 koomi Denyerec: there's a hook for writing your own parser ..
14:02 albytrott Hello
14:03 albytrott I am just trying to setup typo3 and am getting this error Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 63741 bytes) in /var/www/#CVS/typo3/t3lib/class.t3lib_install.php on line 652
14:03 albytrott can anybody help?
14:03 Denyerec albytrott - give PHP more memory in the php.ini file
14:04 Denyerec looks like it's only allocated 8Mb
14:04 Denyerec so give it 64
14:04 albytrott Thanks Denyerec, will try that now
14:08 albytrott Brilliant that worked. Thank You
14:08 albytrott Ste
14:11 m4rtijn hmm.. noobie question.. how can I change the div class of a tt_content.textpic ?
14:12 m4rtijn I can only find tt_content.textpic.10.10 = < lib.stdheader in the objectbrowser
14:15 koomi m4rtijn: look into typo3/sysext/css_styled_content/static/setup.txt
14:16 FloLeBlanc do I need to delete any tempfiles after changing the config or just click the clear cache buttons in the BE?
14:19 cozwei Is there a TV bug that you can't name your DIV in the HTML template with ID "media" ?
14:19 m4rtijn koomi: i would like to change it only for one page.. not for all :(
14:19 cozwei My whole Datastructure is empty after I tryed to map this DIV
14:19 m4rtijn but there should be a possibility to change it with TS right?
14:19 Whoot Hi, is there a way to use an external database for frontend user authentication in 4.1.1?
14:22 maniacxs Hi, i have a text in ts: lib.print_url.value = ?&print=1 I want to add all other Parameters, that already exist to this new uri with the additional print parameter. How can this be done?
14:36 FloLeBlanc Jigal: I don't get it... even if I disable all im effects in the configuration the pic gets screwed
14:45 skorpi maciacxs: config.linkVars = print
15:15 gast01 hi
15:16 gast01 ?
15:20 gast01 cu
15:29 Epiphex has anyone here setup a newsletter subscription/directmail, if so what extension(s) did you use?
15:38 Epiphex ahh, nevermind, looks like directmail ext has everything i need
15:38 Epiphex sweet
15:43 MarwolTuk c u all... i'm giong home...
16:52 gerards alright good night everyone.
17:04 cozwei how can i force a width of an gmenu object?
17:08 cozwei oh, I'm blind. XY of course+
17:13 koomi m4rtijn: then use an extension template or a condition that matches the page id
17:28 teppi|work does somebody have a clue what could be the reason that sr_feuser_register is not sending confirmation mails?
17:28 teppi|work mail function works. i tested it with form mail
17:29 teppi|work the constants should be fine, they worked on my develop machine
17:29 teppi|work :-(
17:59 jananne I want to change in fdfx_subheader the subheader that has <p> into <h2>, how do i do that?
18:01 jananne I want to change in fdfx_subheader the subheader that has <p> into <h2>, how do i do that?
18:12 ries yeaaaa we bought a car!!!
18:23 koomi juppie ries! :)
18:24 ries we have been using the trolly and taxi for such a long time... so it was time to buy one
18:26 koomi ries: how long you've been .. where are you again? equador?
18:26 koomi teppi|work: check your apache/php error log, check the email address again, see if the smtp accepts the message ...
18:27 ries koomi: in Ecuador... 2.5 years now
18:27 teppi|work thank you koomi
18:27 teppi|work i check this
19:16 maniacxs hi, does someone know how to disable a module without the extension manager?
19:16 maniacxs s/module/plugin
19:17 maniacxs s/disable/remove or unload
19:19 Coppershade-org^ costs 12 Euro/year to enable 16M PHP script memory :(
19:21 Coppershade-org^ I will try typo3, I hope it will be great :)
19:22 ries Coppershade-org^: you need more memory for typo3
19:22 ries But I would change host if I where you
19:22 ries maniacxs: go to typo3conf and edit localcon.php
19:22 ries you will see teh line quickly enough
19:35 Denyerec dsds
19:47 ries Hey delmonico
19:47 ries Denyerec:
19:52 dobes_vandermeer Any typo3 extension programmers around? I'm trying to find documentation on making extensions
19:52 dobes_vandermeer I can't find anything about XCLASS
19:52 dobes_vandermeer which I think I need
19:53 dobes_vandermeer but my attempt to use it has failed, so I obviously don't understand this feature
20:06 Denyerec rIES
20:07 ries dobes_vandermeer: what are you trying todo?
20:07 ries Hey Denyerec
20:08 Denyerec How can i hepl
20:09 Denyerec my lifttle fingsr are not working so my typuing is a bit buggeredf
20:09 ries Denyerec: can you make me a website for $100?? :D :D :D
20:09 Denyerec Of course! ;)
20:09 Denyerec <html><head></head><body>HELLO WORLD!</body></html>
20:09 Denyerec Voila! :)
20:09 ries heheheh....
20:10 ries I need to remind myself that I am talking to a british guy :s
20:10 Denyerec 100 USD would *just* about cover a meal out for two people, with no drinks.
20:11 Denyerec So I guess it's lucky I don't drink :D
20:17 nick108 Hi there, I need some help with configuring tt_news with TypoScript (http://phpfi.com/241047)
20:17 nick108 How would I define the *code* variable in this context?
20:20 ries Denyerec: then move over to here ;)
20:24 ries nick108: try something like this
20:24 ries nick108: temp.col2_content.10.TTNEWSCONFIGS
20:30 ries nick108: No....
20:31 ries nick108: I see that you are new to typo3 :)
20:31 ries nick108: But that is how you access the tt_news config after you have assigned it to our content
20:31 ries You need to checkout the manual for the correct config names
20:32 nick108 ries: so I first assign with 10 < plugin.tt_news and then configure with 10.code = LATEST?
20:35 ries nick108: sounds about right
20:35 ries paste the complete TS in a couple of minutes
20:35 ries so we can see what you did
20:36 nick108 ries: thanks for your patience :-) http://phpfi.com/241057
20:36 ries nick108: You should see me with my clients :D
20:37 nick108 with this TS I still get a tt_news configuration error in the front end :-(
20:38 ries nick108: it might not be fully configurated yet?
20:38 ries I don't do tt_news... so I am not sure (Denyerec knows.....)
20:39 Denyerec You said you'd never tell!
20:39 Denyerec You promised! :)
20:39 ries Denyerec: oops....... but you ARE teh guru
20:39 Denyerec HAH
20:39 Denyerec STRAP RIES TO THE NAUGHTY CHAIR!
20:40 Denyerec He's telling fibs again.
20:40 Denyerec ;)
20:41 nick108 so basically what I want to do is display latest news on every page of the website
20:41 nick108 do I really have to (re)define all of those config values in order to get an output?
20:42 nick108 usually the extension manual gives an example of how to do it the "TS only way"
20:42 ries nick108: depends.. normally it has some default setting..
20:43 nick108 tt_news has about 50 config values or more :-(
20:45 nick108 there must be actually over 150!
20:45 nick108 shame on me
20:46 nick108 there's a "TS only example"
20:46 nick108 in the manual
20:46 nick108 *Insert a news LATEST element in the left column, so that it is visible on all pages*
20:47 nick108 http://phpfi.com/241064
20:48 daag oh thx :) good to know
20:53 Azrael_- hi
20:53 Azrael_- i just installed typo3 but the templates are all empty (even not "test" is there)
20:53 Azrael_- how can i add one now?
20:54 daag you have to build templates yourself i think
20:55 Azrael_- ok, but in all tutorials there is a test-site but it isn't there
20:55 Azrael_- how can i add it?
20:56 nick108 what do you mean by test-site?
20:56 daag i have the test-site
20:56 daag don't know from which package..
20:56 ries Azrael_-: there is a quickstart..... I never used it myself but that gives you a site. it's really ugly aswell!!!
20:57 Azrael_- ries: thx
21:00 nick108 the tt_news example TS does not work :-(
21:00 LinAsH Azrael_-, www.yaml.de is a good start for templating
21:01 nick108 maybe it's outdated. where would you start debugging? TS object browser?
21:02 ries LinAsH: I forgot about that one!
21:03 LinAsH yaml = best template framework ever
21:28 Azrael_- ries: just downloaded the quickstart and installed it but still nothing shows up
21:30 ries Azrael_-: I never used quickstart.... sorry
21:30 ries Azrael_-: I think that yaml might have better instructions
21:31 Azrael_- a fresh install, i go to "templates" and there should be a message telling me there were no templates and i should upload some
21:32 Azrael_- or how do you start a site?
21:33 maniacxs ries: this was not enough i had to remove the temp* files in typo3conf
21:34 maniacxs after installing the extension, i was not able to use anything. the FE and the BE showed only a empty page. it was the extension wurfl2 from the repository
22:05 lighty nite all
22:06 tanob hello, can anyone tell where I can find the realurl extension ?
22:07 ries tanob: on TER
22:07 tanob I'm using the Ext Manager search, but it doesn't find it.
22:07 tanob ries sorry, TER ?
22:08 ries tanob:
22:08 ries if you have teh extension manager
22:08 ries set it under settings on non-reviewed
22:08 ries May be it's not revied yet
22:09 ries tanob: http://typo3.org/extensions/repository/view/realurl/1.1.4/
22:09 tanob "Enable extensions without review (basic security check)"
22:09 tanob now its checked, but still not finding realurl
22:10 tanob yes ries, I can download the extension by manual, I'm just trying to understand why it isn't found by ExtManager
22:11 tanob something in PHP ?
22:16 ries tanob: do you find any other extensions?
22:17 tanob ries no
22:17 tanob what can be?
22:17 tanob it lists, but search doesn't find the extensions
22:17 ries tanob: delete extensions.* from typo3temp
22:18 ries and download the extension list eagain
22:20 tanob some seconds after i click retrieve, the main content area gets white
22:20 tanob and extensions.xml.gz is created with 909KB in typo3temp
22:32 tanob ok, just had to increase a lot the execution_limit :)
22:47 jananne _I'm working with 2 extensions here. fdfx_2cols and fdfx_subheader. Now i want to have a header on the left column and a header on the right column. Does anyone know how to do that?
22:49 Denyerec Hey Jan
22:49 Denyerec I would write a flexible content element to do it
22:49 Denyerec and sack off using extensions for it.
22:50 jananne i dont know how to wright one :(
22:51 jananne does it has something to do with TV?
22:52 jananne ah
22:52 jananne got a tutorial :)
22:53 jananne i'll take a look at that.

Technologies


R. van Twisk 2004-2010 R. van Twisk / Avenida Diego de Almagro No: 22-47 y Juan Severino / Quito Ecuador
callto://r.vanTwisk | Support: +1 (803) 4263350

© 2012 R. van Twisk. All Rights Reserved.