Search the website and IRC logs

#TYPO3 IRC log from : Monday 16 April 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
03:00 gerards hi everyone
03:11 Ries hey gerards
04:03 d|g hi all
05:23 dax77 good morning around the world :)
05:25 uschi_ good morning dax77 :))
05:28 dax77 heya uschi :)
05:28 uschi dax77, why is everything concerning t3 so difficult for me *sniff*
05:29 uschi dax77, which kind of loginbox are you using?
05:30 dax77 oh, loginbox - I can answer that: newloginbox
05:30 uschi and do you use sr_feuser_register?
05:30 dax77 but basically you can make your own loginbox - it depends on your needs
05:31 uschi you know, the university page
05:31 dax77 uschi: yes, but steffn told me, that the latest version has problems with multi-language sites b/c there are no translations included
05:31 uschi this problem seems to be solved, somehow, cannot remember right now
05:33 dax77 I'm afk for 30 min now, but afterwards I will help you fixing your problems :)
05:33 uschi thx
06:15 dax77 re
06:15 uschi wb dax77
06:24 zat hi all
06:24 zat hi Jigal
06:24 zat dax77
06:24 zat uschi
06:24 zat all others
06:26 Jigal hi zatmania, dax77, uschi
06:30 dax77 hi zat, hi Jigal :)
06:32 bauschan hi @all !
06:34 uschi morning Jigal and zatmania :)
06:40 dax77 hi bauschan
06:46 zatmania hi bauschan
06:55 juergen moin
06:56 juergen oh :)
06:57 Phlogiston_ Where can I set if that a field (e.g. name or phone) is required to fill in? Because an extensions reads that out from TCA
06:59 koomi Phlogiston_: which extension?
06:59 Phlogiston_ cwt_community
07:01 Phlogiston_ can I only change the TCA array with php code somewhere? Or is there another way with TS? I'm asking this because I need to set the required flag for some fields
07:03 koomi just because i'm tired and there's nothing to breakfast around: http://www.catb.org/~esr/faqs/smart-questions.html
07:38 bauschan cu later
07:41 brain-xy hello all
07:50 Jigal hi to a hole lot of people who joined during the last 80 minutes
07:52 brain-xy :P
07:58 tilmanBk hi
08:03 smda hello fellows
08:06 dax77 hi smda
08:14 MarwolTuk good morning..
08:15 Jigal hi Rapp, fummeltrine, smda, MarwolTuk, danielkoch
08:24 brain-xy oehm.. did anybody ever used the navigation title in the menu? .. nav_title=?
08:27 drindt can someone tell me how i can display all executed database querys in my plugin? i cannot find again in the api docu the property i must set to do so... Thanks
08:28 brain-xy oehm.. don't know drindt.. maybe you're looking for debug mode?
08:29 drindt brain-xy: i had found myself it was: $GLOBALS['TYPO3_DB']->debug_lastBuiltQuery = true;
08:29 tilmanBk does anyone has experience with newloginbox-plugin ?
08:30 drindt tilmanBk: what do you want to know?
08:30 Jigal drindt: unless you are a core developer there is no real purpose for knowing which queries were executed in API calls, etc. The queries your extension uses explicitely are obviously known to the extension developer (that is you)...
08:31 brain-xy hm ok drindt.. so i learned something new too :P
08:31 drindt Jigal: greetings ;)
08:31 tilmanBk I'm just wondering why TS-Setup plugin.tx_newloginbox_pi1.templateFile = [path] has no effect
08:31 drindt Jigal: i only want to say the nice table whith the red text in. whih displays me the last executed query.
08:34 tilmanBk drindt: My TS-Setup says plugin.tx_newloginbox_pi1 is of type USER_INT and has a subvalue templateFile which is set to fileadmin/templates/red/ext_newloginbox.html << but it is not used
08:34 tilmanBk this is an ext template which is included in the main template
08:35 Phlogiston_ t3lib_div::loadTCA("fe_users");
08:35 Phlogiston_ $TCA["fe_users"]['feInterface']["columns"]["name"]["config"]["eval"] = 'trim,required';
08:35 Phlogiston_ Can I change the TCA array like this?
08:35 Phlogiston_ or do I need to call an update function or something afterwards?
08:36 Jigal Phlogiston_: do you want to change things dynamically?
08:37 Phlogiston_ hmm not sure, I want to change that in an extension, I could modify it in the typo3/sysext table but after an update it would be lost...
08:39 Phlogiston_ or can I change that with xml somewhere? Or with TS?
08:39 Jigal Phlogiston_: you can change the TCA in the $tca.php of your extension; if the extension is installed then the TCA holds the data you put in there (unless another extension that was loaded after yours overwrote it ;-) )
08:40 Phlogiston_ and how exactly do I need to do it? I just copied over the whole tca definition of fe_users and changed then some values, but it didn't change in the FE
08:41 Phlogiston_ (but it worked when I changed it in typo3 sysext tca.php
08:42 Jigal Phlogiston_: dynamically changing it during the exexcution of your extension is not something I would try... You are never sure in which order code from extensions and core is executed; only part of the TCA may be loaded at any time (therefor you call loadTCA()) and so maybe dynamically changed data might be reset to the original state later (you have to treat TYPO3 as a black box here)
08:43 Phlogiston_ hmm so whats the solution in my case? what exactly do I need to do?
08:46 Jigal Phlogiston_: well, with calls to t3lib_div::loadTCA("fe_users"); t3lib_extMgm::addTCAcolumns("fe_users"_$modcolumns,1); t3lib_extMgm::addToAllTCAtypes("fe_users", "<new col configuration options>"); TYPO3 should know about your changes :-)
08:49 Jigal Phlogiston_: I have to lookup that call to addToAllTCAtypes(); not sure what it exactly does; most extensions only use addTCAcolumns() for modifications...
08:49 drindt Jigal: hm did you not know the property? it must be similar to lastBuildedQuery.
08:50 drindt Jigal: i had used for a long time ago. i dont want to watch the query log from the database too much output.
08:51 Jigal drindt: well, let's take a look inside t3lib/class.t3lib_db.php then... (busy looking inside that file)
08:51 ceed shouldn't it be lastBuiltQuery ?
08:51 ceed in a gramatical sense
08:51 drindt Jigal: guess what i do? :)
08:51 ceed ;)
08:52 Jigal ceed: in reality it also is $debug_lastBuiltQuery ;-)
08:52 drindt ceed: i sayed similar :)
08:52 drindt ceed: yes, but i set this to true no output is gettin
08:54 Jigal drindt: from what I see in the source you have to set $GLOBALS['TYPO3_DB']->store_lastBuiltQuery = true; and then $GLOBALS['TYPO3_DB']->debug_lastBuiltQuery holds the last query that was built (not necessarily executed!)
08:55 Phlogiston_ thanks man Jigal, it works now! Very cool :)
08:56 Jigal drindt: $GLOBALS['TYPO3_DB']->debugOutput = true; also stores last built query
08:56 zatmania Jigal roxx :)
08:56 Jigal (and outputs errors)
09:01 eeos hi everybody!
09:05 Jigal hi eeos, roelof, wb bauschan
09:05 roelof hello, everybody
09:06 roelof does anyone know why i only see the index file on this TS and not the subpages ?
09:06 eeos hi Jigal
09:06 roelof the TS can be found at : http://phpfi.com/227171
09:07 bauschan roelof: rule of thumb -no code after a bracket
09:11 roelof oke, i see now the message up a level when i look at the page and not <prev|next> ?
09:12 roelof does this TS not work when using subpages ??
09:12 brain-xy the question was surely asked some times.. but.. how can i get the rte to make no paragraph on a enter?
09:13 brain-xy all listings i find don't work
09:15 roelof what i did what making a page and after that making a page (inside) . Can this script not work on more then 1 level ??
09:17 eeos the usability questionnaire is not working properly
09:18 bauschan brain-xy: wasn't that RTE.default.disableEnterParagraphs =1 ?
09:18 brain-xy hm.. i will try..
09:18 bauschan at least for htmlArea
09:19 brain-xy doesn't work :(
09:20 bauschan brain-xy: are you using IE ?
09:21 brain-xy firefox
09:21 bauschan hmm, then I don't know why it doesn't work
09:25 brain-xy hm.. bauschan.. may i ask which rte version you've got?
09:25 bauschan sure, wait a sec
09:27 bauschan brain-xy: 1.5.1dev, patched to work with FF
09:28 brain-xy hmhm.. mine is 1.5.2 .. grml.. i think i have tomatos on my eyes..
09:31 brain-xy hm nothing.. i tried it on another website and first removed all other TS setup.. nothing.. hm
09:32 bauschan brain-xy: works like a charm, here on my local install
09:32 brain-xy can you give me your listing?
09:33 koomi elo
09:34 brain-xy and in what mode are you running the rte? .. typical i think.. ?
09:34 brain-xy hi koomi
09:34 bauschan brain-xy: root page->TSconfig->the code a few lines above
09:34 brain-xy bauschan.. ok.. i thought you have more :P
09:34 bauschan not for testing ;)
09:35 koomi i think we'll need to buy a few pictures for our site. anyone knows of a good distributor for royalty free pictures?
09:36 brain-xy i only know stockexchange
09:39 brain-xy hm.. this problem will take a background task in my brain.. grml
09:59 bauschan Jigal: enjoy your meal !
10:03 FloLeBlanc hi all
10:04 bauschan hi FloLeBlanc
10:04 eeos hi FloLeBlanc bauschan
10:04 eeos has anybody filled the usability questionnaire? it is not working properly in FF or in Konqueror
10:05 Jigal bauschan: thank you ;-)
10:05 Jigal hi k-fish, FloLeBlanc
10:07 bauschan Jigal: I'm a bit inspired by the thought of getting something to eat ;)
10:09 Jigal bauschan: :-) (<chomp>, <chomp>, <mumble-with-mouth-full>)
10:09 FloLeBlanc hmm.. food
10:09 bauschan lol
10:14 Jigal FloLeBlanc: yesterday I made fresh ravioli with ground beef filling in tomato sauce (and cucumber salad) :-P
10:14 FloLeBlanc hmm nice
10:16 koomi how can i create a menu for one level _above_ the current page?
10:16 Jigal well, the weather was actually a bit too hot to make it :-(
10:28 zatmania depends if you want extra meat ;)
10:29 noragen hi, i need some help, setting up a css drop down menu in the template
10:30 noragen the script does not want to replace my markers :-/
10:33 koomi so any ideas how to do it?
10:37 noragen This is my old but working menu: http://rafb.net/p/xwyQ3q84.html
10:38 noragen This is the menu how it should be: http://rafb.net/p/4VouQX69.html
10:38 noragen This is my html-Template: http://rafb.net/p/B6Wro991.html
10:40 noragen This is the css for the new dropdown-menu http://rafb.net/p/pvDZUI35.html
10:43 bauschan bauschan gives up on massive requests for food
10:58 Jigal hi Ries
10:58 Ries Afternoon Jigal
11:09 Jigal Ries: I told FloLeBlanc about the Ravioli I made (made as in completely home made, own dough, filling and sauce) yesterday; then I commented that the weather was actually a bit too hot to work so hard in the kitchen; zatmania replied with "depends if you want extra meat ;-)" ...
11:09 dax77 Ries: hi. you should read the logs :)
11:09 Ries Hey dax77
11:16 Phlogiston_ hi guys
11:38 eeos Jigal extra meat in the ravioli? usually they are "ricotta and spinach"
11:39 eeos ;)
11:42 Jigal eeos: I also like "goat cheese and mushrooms" as filling :-)
11:45 bauschan Jigal: did you ever think about *Jigal's Restaurant* ?
11:45 FloLeBlanc are dd and dt css formatable?
11:45 tobi yes
11:45 FloLeBlanc hi dax, hi ries
11:45 FloLeBlanc tobi: I have some weird behaviour here
11:46 eeos Jigal, yes I do :P
11:46 FloLeBlanc tx-irfaq-pi1 dt{ color: green; } => works
11:46 eeos FloLeBlanc yes
11:46 FloLeBlanc if I add .tx-irfaq-pi1 dd{ color: green; } under that it does not work
11:46 eeos Jigal are you vegestarian?
11:46 FloLeBlanc if I remove the first line however it works again for dd
11:46 zatmania Jigal : with this eat, got some maggots to your ravioli ;)
11:47 eeos zatmania how hot?
11:47 eeos FloLeBlanc error in the first line, there should be a . at the beginning
11:48 FloLeBlanc eeos: sorry have this typo only in the irc :)
11:48 zatmania eeos : ravioli with riccotta and marsala is very good too
11:49 tobi FloLeBlanc: hm i tried dt{ color: red; } dd{ color: green; } and that works for me
11:50 FloLeBlanc hmm weird
11:51 FloLeBlanc ah nvm
11:51 FloLeBlanc sorry.. error in user floleblanc
11:51 FloLeBlanc didn't see the bodytext tag of the plugin.. so it is .tx-irfaq-pi1 dd p.bodytext{} now
11:51 FloLeBlanc thank you
11:54 eeos FloLeBlanc: can you now strip that tag so you have better control?
11:54 FloLeBlanc eeos: ?
11:54 eeos FloLeBlanc: the p.bodytext?
11:54 FloLeBlanc yes what's with that?
11:55 eeos zatmania: marsala?
11:57 zatmania eeos : http://en.wikipedia.org/wiki/Marsala_wine
11:57 eeos FloLeBlanc: why does it appear inside the tag dd?
11:57 eeos FloLeBlanc: do you really need it?
11:58 FloLeBlanc eeos: unfortunately it seems like yes
11:58 eeos FloLeBlanc: ah. then you alway have to include it in the class
11:58 eeos zatmania: I know what it is :D I meant how does it go with ravioli?
12:05 Jigal bauschan: a restaurant is no fun: you work 18 hours/day and cook the same dishes every day :-(
12:05 Jigal zatmania: implement it as a new function marsalla() in t3lib/class.ravioli.php?
12:06 zatmania hehe why not, coding become pleasant
12:06 eeos Jigal you could have a restaurant whre you cook what you want and your customers eat only what you offer
12:06 eeos Jigal I went to a couple of restaurants like that, I realy enjoyed
12:07 bauschan Jigal: yeah, plus a regular guest like me ;)
12:07 eeos Jigal they said "today we have this and that"
12:07 eeos Jigal: yes, typo3 channel members shall not pay (we will do PR) .... :D
12:08 bauschan eeos: +1
12:15 eeos bauschan: the prestigous Bauschan & Eeos - PR consultants and food tasters
12:16 bauschan eeos:)
12:16 bauschan let's start right away
12:18 eeos bauschan: I will start in a few minutes going for a couscus :D
12:19 eeos taking about typo3: is it possible to operate a change in the BE so that every time we create a content element, the content element is wrapped in a <div class="content-element"><div> tag?
12:23 Fab1an|work does anyone have an idea why .sectionIndex doesn't work here? http://phpfi.com/227206
12:25 Fab1an|work (trying to get menu of tt_content headers)
12:27 Jigal eeos: you want to change the render engine?
12:29 eeos Jigal: I wanted to embed each content element in a <div class="content-element"><div>
12:30 eeos Jigal: so that our customer have better control on the formatting of them.
12:30 eeos sorry, of some of them.
12:32 eeos Jigal: it is actualy not very clear why the content elements are not emebedded in a tag.
12:32 eeos Jigal: it would make sense
12:32 tobi it is just tt_content.stdWrap.wrap=<div>..|.. eeos
12:35 Jigal One of the sites here starts each content element with <!-- CONTENT ELEMENT, uid:876/text [begin] .. >, which may be rendered by the extension css_styled_content...
12:37 tobi thats tt_content.dataWrap Jigal
12:38 Jigal tobi: thanks! I was wading through all kinds of settings, etc.
12:39 eeos tobi that would wrap eac content element?
12:40 tobi yes
12:45 eeos Jigal I did not understand your question
12:45 eeos (my sugar is probably too low)
12:46 eeos tobi: thanks a lot, it works well!
12:46 Jigal eeos, tobi: I found the definition in typo3/sysext/css_styled_content/static/setup.txt, in v.3.8. lines 229-287
12:47 Guschtel Hi, can someone tell me how to set up a default image, if no image is attached to an "advanced" page? http://rafb.net/p/dkZWxq54.html <- i have this Typoscript and want a default Image to be chosen if none is attached - is that possible?
12:47 smurfslayer hm is there a bug with thumbs.php and .gif files?
12:47 smurfslayer in IE7 & 6 the thumbnail-gifs are shown as broken (or missing) image
12:49 eeos Jigal: tobi what is the tt_content.dataWrap supposed to do?
12:52 tobi ahh sorry Jigal it was tt_content.stdWrap.dataWrap>
12:52 tobi tt_content.stdWrap.dataWrap is resonsible for the inline comments eeos
12:55 eeos tobi: the tt_content.stdWrap.wrap=<div>| does actually exclude the <a> at the beginning of the content element
12:58 tobi you need the a also? its only a (invisble) anchor tag
13:01 eeos tobi: no, I do not, but it wold be nice for elegance of code to have it embedded in the content element tag.
13:02 tobi so try to do dataWrap = <yourdiv><a id="c{field:uid}"></a> |</yourdiv>
13:04 koomi tobi: i want to pass special = rootline, special.value = {page:pid} - how can i do that?
13:05 koomi :) dataWrap
13:07 tobi you can use special.value.data=leveluid:-2 koomi
13:07 koomi i tried special.value.data = {page:pid}
13:08 tobi but i dont know if rootline has a value entry
13:08 tobi (dont think so)
13:08 koomi special = directory
13:09 tobi for special=directory special.value.data=leveluid:-2 works
13:11 koomi why does dataWrap = {page:pid} work, but not data = page:pid or field = pid
13:11 koomi or data = pid just to have them all
13:11 tobi data=page:pid should work too
13:12 koomi doesnt. do i have to add .required or .insert?
13:12 FloLeBlanc can anyone tell me how I get this code to render my links please? http://phpfi.com/227212
13:12 tobi only for .value you need insertData, data has that default
13:13 tobi missing parseFunc FloLeBlanc
13:13 tobi renderObj.10.parseFunc<lib.parseFunc_RTE
13:13 FloLeBlanc thank you very much
13:15 eeos tobi: thank you very much
13:16 tobi i searched for a long time when i first had the "no links" problem...damn parsefunc! ;9
13:17 FloLeBlanc :)
13:19 Guschtel http://rafb.net/p/Ydqkqq41.html <- this does what i want. Sets an Default image and overrides it with a selected one.
13:19 Fab1an|work sorry for asking again, does anyone have an idea why .sectionIndex doesn't work here? http://phpfi.com/227206
13:59 dokma any1 got experience with sr fe user register?
13:59 dokma my form is not behaving
13:59 dokma http://www.valdez.hr/registracija-korisnika/
13:59 dokma does not react to this:
13:59 dokma formFields = username, password, gender, first_name, last_name, email, address, city, zip, telephone, fax, title, company, www, comments
14:00 dokma it just displays all the fields
14:00 dokma I have no idea why is that
14:04 Typo3Dude Hey guys, can anyone help me a bit with a typolink question?
14:04 Typo3Dude I'm making a typo3 link like this:
14:04 Typo3Dude 30 = TEXT
14:04 Typo3Dude 30.value = <br>Read more<font size=1>></font>
14:04 Typo3Dude 30.typolink.parameter = {field:uid}
14:04 Typo3Dude 30.typolink.wrap = <strong>|</strong>
14:05 Typo3Dude But it wont accept {Field:uid} .. :( - It just writes it out the link turns out to be: www.my-adresse/{field:uid} :S
14:05 Typo3Dude And not 39 for an example...
14:10 Typo3Dude if I write " 30.typolink.parameter.data = 55" it works fine.. how do I make the "55" part to be a variable ?
14:10 Typo3Dude Come on.. someone's gotta know :o(
14:16 Typo3Dude Anyone..? I'm kindda in a deep spot here.. :/
14:17 uschi what kind of variable
14:17 uschi what is 55 in this case, the id of the current page, Typo3Dude ?
14:18 Typo3Dude 55 Is just an integer I manually write...
14:19 Typo3Dude if I write 30.typolink.parameter.data = TSFE:id - It works fine as well
14:19 uschi you do not want curly brackets when using data, Typo3Dude
14:19 uschi data.field = uid
14:19 uschi or data = page:uid
14:20 j0hndeere Good morning, earth humans.
14:20 uschi i hope that i am right here, i always have to look it up myself, Typo3Dude
14:20 uschi good morning j0hndeere :)
14:21 gerards j0hndeere: sooo.... good weekend?
14:21 Typo3Dude 30.typolink.parameter.data.field = uid <- It doesn't work :S
14:22 gerards 30.typolink.parameter.data = field:uid
14:22 Typo3Dude I've got a record which I've gotten by typoscript.. I want the uid of this record to be the page the link refers to.. if that makes sense
14:22 uschi and this RECORDS item is a page?
14:23 Typo3Dude It works now <gerards> 30.typolink.parameter.data = field:uid <- That did it
14:23 Typo3Dude Thx guys! :o) Sometimes the smallest thing can give u gray hair :/
14:23 uschi shit, sorry for pointing you in the wrong direction
14:23 j0hndeere A weekend well spent, at any rate, gerards. Yourself?
14:24 gerards not too bad.
14:25 Typo3Dude uschi: No harm no foul m8.. I appreciate the effort
14:26 Typo3Dude Another do u guys know the typoscript equivilent of pi_getRecord ?
14:26 gerards RECORD / CONTENT
14:27 Typo3Dude Umm.. u don't happen to have a link would ya? :)
14:28 gerards my internet is horrible now dude :)
14:28 gerards but wait.
14:28 gerards http://typo3.org/documentation/document-library/references/doc_core_tsref/4.0.0/view/
14:28 Typo3Dude Then stop the p0rn downloads ;p
14:28 gerards search for CONTENT
14:29 gerards Typo3Dude: ..... hmmm I didn't know adobe.com was a porn webby....
14:29 gerards darn the merger.
14:29 Typo3Dude Thx gerards
14:29 Typo3Dude lol, yeah... tricky one ;)
14:30 gerards I suggest you read on RECORDS too. one of them might be better suited to your needs.
14:34 Ries gerards: remember how file upload with progress bar???? this one is more cool : http://jupload.sourceforge.net/README.txt
14:34 Ries I am going to build that into my ABS extension
14:35 eeos re
14:36 Ries wb eeos
14:37 just2b_ hi
14:38 just2b_ any advanced ext programmer here?
14:39 Typo3Dude gerards: When I've gotten the table.. how do I use the values from it..? I know this seems a bit low lvl..:/
14:44 Ries just2b_: gerards is advanced... ofcourse I am to :D
14:44 uschi ask me, just2b_, i will solve every problem for you
14:45 FloLeBlanc uschi: can you program a good RTE for me? *G*
14:45 uschi what is wrong with the RTE?
14:45 FloLeBlanc is a firefox 2 fix out yet?
14:45 uschi as a matter of fact, there are not too many shortcomings with RTE itself, apart from some
14:45 uschi yes FloLeBlanc
14:46 uschi upgrade to 4.1.1
14:46 FloLeBlanc oh.. patched RTE version?
14:46 uschi yes
14:46 FloLeBlanc I'm afraid of upgrading to 4.1.1 because of the new datatable links :)
14:46 FloLeBlanc I'm a few days in front of a launch
14:46 uschi hm, do it on a testdrive
14:47 FloLeBlanc hmm perhaps 4.0.6 fixes that problem too *checks*
14:47 uschi i did an upgrade from 4.0 the other day, and it worked like a charme
14:47 uschi but i do not have many extensions installed
14:47 FloLeBlanc uschi: I had to recode the distributeX function to work with my menu and would need to fix some files again.. I'll have a look then thank you
14:48 uschi what please is the distributeX function?
14:48 FloLeBlanc you can use that for your GMenus for that T3 builds the menu for that it fits the width you specify
14:48 FloLeBlanc this does not support spacers the way I need it though
14:48 gerards Typo3Dude: wait. let me see if I have an example for you.
14:48 FloLeBlanc so I had to include the spacers in the code manually
14:48 FloLeBlanc (well actually the space for it)
14:53 gerards well I guess typo3dude got a little impatient. if he comes back someone direct him to http://phpfi.com/227231 (good reading for those of you what always wondered wth CONTENT is.... :D )
14:55 eeos gerards: what is that? look fairly complex. could you please explain? I am wondering :)
14:56 gerards yeah right... .you don't know... and i'm the queen of timbuktu
14:56 eeos gerards: I do not understand what it is supposed to do
14:57 Ries eeos: read carefully...line by line
14:57 Ries the paste is even commented!!!
14:57 gerards it does this SQL : select username, tx_bwdatabase_companies.name company_name, tx_bwdatabase_companies.uid company_uid from fe_users JOIN tx_bwdatabase_companies ON fe_users.tx_bwdatabase_company = tx_bwdatabase_companies.uid where uid = xxxx AND pid in (5)
14:58 gerards then it renders it using renderObj
14:58 gerards Ries: i always comment my code.... I'm autistic.
14:58 gerards ;)
14:58 eeos it creates a HTML select menu?
14:58 gerards no its just a COA
14:58 gerards for each row that the SQL returns, the COA (renderObj) is drawn once.
14:59 eeos gerards: so it does render it as a series of div tags
14:59 gerards in the render obj, field now refers to the fields of the RECORDS.
14:59 gerards eeos yes.
14:59 eeos gerards: how do you san through th different rows retrned by the query?
14:59 gerards for each row that the SQL returns, the COA (renderObj) is drawn once.
14:59 gerards :)
15:00 eeos sorry, gerards: how do you span through the different rows retrned by the query?
15:00 gerards for each row that the SQL returns, the COA (renderObj) is drawn once.
15:00 gerards perhaps i don't understand your question eeos. please explain more?
15:01 eeos gerards: when you issue the SQL statement, more than one row can match your query
15:01 gerards yes.
15:01 eeos gerards: so how do you cycle through the results?
15:01 eeos gerards: you have to show one line for each row
15:01 gerards so the renderObj is rendered for <em>each row matched</em>
15:01 gerards so if the SQL returns 3 rows,
15:01 gerards renderObj is done 3 times.
15:02 eeos ah. is that done automatically?
15:02 gerards its like a loop
15:02 gerards yep.
15:02 gerards hth everyone in the channel.
15:02 j0hndeere It appears the foul satellite dragon I slew has returned from the dead.
15:03 Ries gerards: can we all give gerards some $$ for his excellent explanation???? :D
15:03 gerards its free.
15:03 Ries gerards: you are to cheap!!!
15:03 eeos gerards: you helped me a lot. thanks!
15:04 gerards np
15:04 eeos gerards: could I ask you a question on a COA issue i have not been able to solve?
15:04 gerards you could. I may not know.
15:23 Remowylliams Hello everyone, Is there a good gallery plugin for typo3? I tried to install lz_gallery, but it needs lz_table which doesn't seem to want to install
15:23 Denyerec Hey guys
15:24 Denyerec http://sozutux.dyndns.org/preview/smagic/faq.php anyone care to let me know why this site is not using the charset I'm asking for ?
15:27 Ries can you explain??
15:27 Denyerec well
15:27 Denyerec I am trying to se the page charset to 8859-1
15:27 Denyerec but firefox displays the page in UTF-8
15:28 Denyerec and I can't figure out why
15:28 Denyerec it's just hardcoded HTML
15:28 Ries then your server send's it as UTF-8, you can check that with lifehttpheaders
15:29 Remowylliams Denyerec: I agree with Ries, the server sends the headers back to tell the page what it's sending.
15:30 gerards s/lifehttpheader/livehttpheader/
15:31 Denyerec ah
15:31 Denyerec right so it's a server config issue.
15:31 Denyerec Fair enough.
15:32 Denyerec Also Ries, do you know why no matter what I set in Typo3 TS Setup, my page always has a strict doctype ?
15:32 Denyerec I have config.xhtmlDoctype = xhtml_trans as well as config.htmlDoctype = xhtml_trans
15:32 Denyerec and it always comes out with damn strict.
15:33 Ries Denyerec: That is not right
15:33 Ries it's 1) a TS config, or 2) some extension that fucks up something (like tody???)
15:35 Denyerec Hmm
15:35 Denyerec that's not too good
15:35 Denyerec How would I find out ?
15:37 Ries Denyerec: We already did found it out
15:37 Denyerec Well I don't think my TS Setup is busted
15:38 Denyerec I'll psatecode it to you if you want ?
15:38 Ries Oo sorry..
15:38 Ries can you paste?
15:39 brainxy hm.. what has priority? .. an option which is set in the constants or in the setup field?
15:40 Denyerec Heh
15:40 Denyerec Ries
15:40 just2b_ brainx: setup
15:40 Denyerec I think I'm going to shrink into a corner and disappear.
15:40 Denyerec ¬_¬
15:40 brainxy thx just2b_
15:40 just2b_ brainxy because values of the constants are used in setup
15:40 brainxy makes sense :)
15:40 brainxy njotice for myself.. first think... then ask :P
15:41 Remowylliams photogalleries anyone? Do you like a particular one that installs easily in 4.1.1?
15:41 just2b_ or: ask and find solution yourself
15:41 Denyerec Remo I spotted a couple of DAM integrated ones on the Repository that had been recently updated
15:41 gerards brainxy: thats a good notice. i'll put that for myself too.
15:41 Denyerec tho the manuals hadn't rendered yet
15:43 Guschtel hi, is there a way to move a template from a page to its containing folder one level up? I created a template for all my popups and i want that all pages in my "popup-folder" get this template, but currently its attached to one specific page and i don't find a way to change this - any ideas?
15:43 Remowylliams Denyerec: Thanks.. I"m seeing them. I originally tried using the backend to search for a gallery and only ended up with lz_gallery.
15:43 Denyerec you probably need toupdate your local repo list
15:47 Guschtel ha, it works with cut/paste instead of move - stupid me...
15:48 Remowylliams list or lookup reviewed extensions isn't terribly helpful is it?
15:52 MarwolTuk someone an idea to workaround mozillas line-breaking problem?
15:53 Denyerec Hmpf.
15:53 Denyerec So if my server is sending utf-8 headers there's nothing I can do in the HTML to change that ?
15:55 Guschtel no
15:55 Guschtel even if you specify the encoding as something else he will still do it
15:55 Guschtel if its apache
15:56 Guschtel ask the admin to remove it
15:56 Denyerec Hmm.
15:56 Remowylliams Denyerec: Actually if options are set, configuration changes can be introduced in the .htaccess
15:56 Denyerec that's a thougt
15:56 Ries Denyerec: you can change it in your .htaccess
15:56 Guschtel I'd kill the admin who does this ;)
15:57 Ries Guschtel: sending any site as utf-8 is a sensible default :)
15:57 uschi come to me to be your admin, Guschtel, my server delivers utf-8 as well :)
15:57 uschi but i want it like this
15:58 Guschtel Denyerec, http://httpd.apache.org/docs/2.0/mod/core.html#adddefaultcharset
15:58 Ries Denyerec: add this to your virtual host : AddDefaultCharset latin1
15:58 Ries never tried it in my .htaccess
15:58 Guschtel uschi, why do you need a default charset? thats useless
15:59 Guschtel *g*
15:59 uschi because, if you do not set one, it is always latin1
15:59 uschi if i remember right
15:59 Guschtel uschi, right, but who cares? thats fine for text-files
16:00 uschi depends on what you are delivering, and no, it is not
16:00 Guschtel anyway, can someone tell me how to move the admin frontend panel? its always displayed right on top of my page
16:00 uschi if you want to deliver a russian text file for example
16:00 Guschtel uschi, yes, okay.
16:00 Remowylliams Guschtel: Unfortunetly the world was not happy that all the alphabetic characters could reside in a 256 boundary.
16:01 Guschtel Is Denyerec, russian? ;)
16:01 Remowylliams I blame the germans and their Umlauts :P
16:01 Guschtel hrhr
16:01 Guschtel öäü ;)
16:06 uschi yes please, guschtel, what are you trying to tell us?
16:07 Guschtel just some german umlauts
16:07 Guschtel nobody knows how to change the placement of the admin panel?
16:07 dax77 hi @all
16:08 uschi wb dax77
16:08 uschi out of frustration i installed tapios skin just now
16:08 uschi and i must say, i do like it
16:08 dax77 hehe
16:08 Ries dax77: On the dutch mailing list somebody asked for a appointment module for a barber shop.... I remember you worked on that one day
16:08 Ries is that correct?
16:09 uschi i really do not know where to start and what to do next
16:09 Remowylliams I know this will sound really noobish, but eh gotta do it. what may I ask is 'DAM' and why is it mentioned in so many gallery plugins?
16:10 uschi because DAM stands for digital assets management
16:10 uschi so you can add metadata to your images, pdf documents and stuff and have them nicely ordered into categories
16:11 uschi and there are lot of acronyms which might be puzzling when using t3
16:11 Denyerec Stupid sodding PHP
16:11 Denyerec Trying to write the simplest script *EVER* and it's not workign.
16:11 Remowylliams Ah
16:13 Denyerec http://phpfi.com/227260
16:14 Denyerec Anyone tell me why with that code I see my output twice, once before and once after the flush, even though implicit_flush is off in the config ?
16:14 Denyerec IGNORE ME
16:14 Denyerec sodding get_flush not get_clean
16:14 Denyerec :/
16:14 Denyerec NOt my day today
16:14 Remowylliams uschi: thank you very much.
16:15 uschi you are welcome, Remowylliams
16:15 Remowylliams Denyerec: LOL you need some coffee or something.
16:15 Denyerec I need a lie down :(
16:15 uschi well, now, Denyerec ?
16:16 uschi by the way, where is bedlamhotel today
16:16 Denyerec Got work to finish :(
16:16 j0hndeere That's it.
16:16 j0hndeere Another hour of this, and I'm shooting the satellite down.
16:17 uschi what is wrong, j0hndeere ?
16:18 Remowylliams In the Ext Manager, why does it limit search results to just reviewed extentions?
16:19 uschi because, in some future lightyears away from now, most of the extensions shall be reviewed
16:19 uschi turn this off in the settings of your extManager, Remowylliams
16:20 Remowylliams So I need to download the extension then upload it even though I have the extension name?
16:20 uschi no, go to your extManager under tools
16:20 uschi in the selectbox on top of your window choose settings
16:21 uschi right on top of the next window you see security settings
16:21 Remowylliams *looking*..
16:21 uschi Enable extensions without review ...
16:21 FloLeBlanc cya all have a nice evening
16:21 uschi check the checkbox, and there we are
16:23 Remowylliams uschi: Ah thank you.
16:23 uschi again welcome
16:24 Remowylliams uschi: much better thank you.
16:25 uschi i am in my 'frustrated by t3-phase', and i have been so for the last 4 days
16:26 dax77 uschi: smile *g*
16:26 uschi it is just too much to read and to understand
16:27 dax77 thats correct - noone learned typo3 within 3 month
16:27 uschi yes, but ....
16:27 dax77 uschi: do you do any sports?
16:27 uschi no sports
16:27 Remowylliams uschi: Yeah I know it's not the gentlest learning curve and sometimes there are things hidden that take a while to find out.
16:28 dax77 uschi: you should start with it. its a relaxing alternative
16:28 uschi i do not understand why we need this difference between be- and fe-users
16:28 dax77 and you can decrease frustation
16:28 dax77 +r
16:29 uschi going to a party later on, my students want to celebrate the opening of the summer latin course
16:29 dax77 uschi: thats an historical thing
16:29 dax77 ^ah great
16:29 dax77 get yourself filled up ;)
16:29 uschi yeah, will we get rid of this in 5.0
16:29 uschi dax77 you know TC Tools?
16:30 dax77 no
16:30 dax77 whats TC?
16:30 uschi very nice be-user-admin-tool, and even available to none admins
16:30 uschi it is not documented, but by ingo renner
16:30 dax77 ah cool, just saw his potcast
16:32 Remowylliams Simple photo gallery works pretty good for the moment I think. :)
16:43 j0hndeere uschi, light years measure distance, not time :)
16:54 uschi come on, do not count peas here
16:54 elbart hi
16:54 eeos what will we get rid of in 5.0?
16:54 uschi this useless difference between fe-users and be-users
16:58 Remowylliams I know there was a simple example/tutorial on using a phpscript in t3
16:58 uschi before you start writing a phpscript, what do you want to achieve
16:59 uschi because, perhaps you only have to know your way round in typoscript, and do not need any phpscript
17:00 Remowylliams uschi: again much has to do with my small experience with Typo3 so far. I want to build a walk log system, so people can log in and enter/update the number of miles they've walked etc.
17:03 Remowylliams It has to have a reporting and signup capability etc.
17:03 eeos uschi: are you sure we will? why do you think it is useless?
17:04 uschi because there is not so much of a difference between a be-user and an fe-user which cannot be ruled by rights
17:05 eeos well, only because we have no proper blog and wiki extension yet
17:06 uschi no, it is useless to store the users in two different tables
17:06 uschi have you ever tried to setup T3 for a university?
17:07 eeos uschi: no
17:07 eeos uschi: why?
17:07 uschi where you have loads of be-users who are website-users at the same time?
17:07 uschi it drives you nuts
17:07 Remowylliams Weee page is being generated, if this message does not disappear within 30 seconds, please reload.
17:07 eeos uschi: yes, we have the same problem with a very large network of professionals
17:08 eeos uschi: also the users of our customer are organised in regional groups with different editing rights
17:08 eeos uschi: if you want to have go .... :D
17:08 uschi what do i want???
17:09 uschi eeos, i do not understand the message
17:11 eeos uschi: it was a joke .... you said if I had tried to set it up for a university, and I was saying"if you prefer our case where fe users and be users are generating a problem"
17:11 Remowylliams uschi: did you have a specific point about using typoscript? I had thought it was for templating.
17:11 Remowylliams <-- now reading Templates, TypoScript and beyond.
17:12 uschi i suppose, your problem has to be solved with an extension, Remowylliams, so you will need php
17:14 Remowylliams uschi: I'm learning, I had chosen Typo3 for it's flexibility with scripting and such. I don't know a thing about writing extensions, but I'll look and try.
17:15 uschi mind you, i am not the right person to help you here, because i have never written one, so far
17:26 eeos time to go, have a good night (everybody)!
18:46 h01ger hi
18:46 h01ger is the doc directory in extensions created with the ext-kickstarter of any use - after i used the kickstarter?
18:47 h01ger (ie i'm long past using the kickstarter, and if i modify tables now, i dont need to update the doc dir., right?)
18:47 h01ger i can just rm it?!
18:49 Ries you could rm it... as far as I know the kickstaers store the file in there if you want to 're-kickstart' a extension
18:50 Ries if youa re nt planning to re-kickstart it, then you can delete the doc there..
18:50 Ries I think often a swf file is stored in there aswell
18:50 h01ger thanx
18:50 Ries h01ger: crap... sw... whatever, you know the OO files
18:52 h01ger Ries, .odt? ;)
18:52 h01ger .sxw i think
18:52 h01ger whatever
18:53 Ries yeaaa... these kinda files :D
18:53 Ries But the kickstarter doesn't add it
19:00 j0hndeere The O3 concentration on your planet is odd.
19:02 j0hndeere The canvas of O3 surrounding the planet above the stratosphere is sensical... but the concentration of atmospheric O3 around cities is strange.
19:06 bedlamhotel j0hndeere: our planet is unfortunately afflicted by a type of parasite that excretes noxious NOx and COx coumpounds...
19:12 j0hndeere bedlamhotel: Are these parasites generally about 1.5-2 meters tall and walk on two legs?
19:15 bedlamhotel johndeere: no, those are different. Unfortuneately--again--THOSE creatures have developed an almost symbiotic relationship with the parasites...
19:17 j0hndeere gerarddd: Depends on blood alcohol level, huh? ;)
19:19 j0hndeere Intravenous ingestion?
19:39 _Awillys_ re
19:40 Awillys any T3 server optimization Guru around?
20:09 Ries Awillys: I was just talkign with a lcient about that
20:15 null_0 hi
20:19 Ries Hey null_0, zeroing in on the typo3 channel?
20:29 Awillys Ries: well if you have optimization services i'd be interested
20:31 Ries Awillys: I am fully booked!!!
20:31 Awillys untill when?
20:31 Ries untill a looong time
20:31 Awillys lol
20:31 Awillys kk
20:32 j0hnd33r3 grrr.
20:58 brain-xy hello all
21:08 j0hndeere The next step is total obliteration of the planet.
21:11 gerards spare me j0hndeere.
21:11 gerards i'll be your loyal human slave.
21:11 brain-xy no no no.. first of all lord brain will take over the world :D
22:06 dokma hi all
22:09 dokma any1 here?
22:18 gerards just ask your question dokma. :) most of us are here. working.
22:18 dokma ahh :)
22:19 dokma didn't have a question
22:19 dokma I just wanted to say how I've setup eclipse + dbg
22:19 dokma and now I can debug typo3
22:19 dokma it's very sexy
22:19 dokma if any1 interested
22:19 dokma I'm here for the info
22:20 gerards w're all happy for you :) i'm sure someone will want to ask you for help on that.
22:20 dokma I bet a pile of problems could be solved with a debugger in much less time
22:26 Ries dokma: I tried PDT, but found teh IDE really buggy
22:27 Ries so I started to use phpeclipse again
23:52 klassico what is the typical cause of mysql_fetch_assoc() errors from class.t3lib_db.php on a page?
23:58 Ries klassico: what do you mean with clause???

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.