Search the website and IRC logs

#TYPO3 IRC log from : Sunday 12 October 2008

Year: 2007 2008 2009 2010 2011 2012
Month: Jan 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 31
09:38 foool morning
11:10 Jahithber hey what you guys think typo3 vs typolight ?? whats better??
11:12 foool typo3
11:12 foool depends what you want to do
11:20 Jahithber i saw that typolight is good for small sites
11:23 nkuttler is typolight somehow related to typo3?
11:25 void nkuttler: it is inspired by typo3...
11:28 nkuttler does it have typoscript?
11:36 void nkuttler: afaik, no
12:07 foool whats the best photo gallery
12:10 nkuttler they all suck :-/
12:11 nkuttler goof_fotoboek being the least sucky imo
12:44 nkuttler hrm, i guess i could integrate lightbox into fotoboek
12:44 nkuttler that would make it nice
12:49 void nkuttler: did you try georg's gallery?
12:49 nkuttler doesn't do recursive
12:49 nkuttler i really don't want to create a new page for every gallery
12:50 nkuttler or rather, tell someone to do it :)
12:59 TheLightning morgen :)
13:58 ries TheLightning: morgen...
14:26 Jahithber whats the best and correct way to make templates in typo3 ??? via templavoila or auto parser???
14:33 void Jahithber: it's a preference question... i always use TV
14:41 Jahithber ok :)
14:43 nkuttler i make them in typoscript. haven't tried autoparser yet though. my templates don't usually have more than ten to twenty lines of html anyway
15:53 micheee hey, I am experiencing some strange login problems: Every time i try to login it says: login attempt did not succeed, the sys_log table says I have been logged in anyway... In addition: If I add a user through the install tool it does not create him, although it says user created... any1 ever experienced something similiar?
15:55 micheee apaches error log shows no problems, the cookie seems to be set correctly and check referers has been set to disabled - really strange :(
16:02 micheee i could help myself... http://bugs.typo3.org/view.php?id=4003 comment: 0010117 by Marko Rosic :-)
16:35 nd_ Hey guys, how do I make a link using a parameter (piVar)?
16:44 void nd_: $this->piLink_TP*
17:00 nd_ void: I tried something like: $arr[$this->prefixId.'%5BviewDetails%5D'] = $result['isbn']; \ $this->pi_linkTP($result['title'],$arr);
17:01 void nd_: no, you're wrong...
17:01 void nd_: just $this->pi_linkTP($title,array('viewdetails' => $result['isbn']));
17:14 nd_ void: Ok, I'll go with that, thanks
17:20 nd_ void: Works like a charm, thank you
17:20 void np
17:24 nd_ And yet another quickie: How do I get the logged in FE_User?
17:29 void nd_: $GLOBALS['TSFE']->fe_user->user <-- that's an array representing a row from fe_users table
17:31 nd_ Thanks again
17:43 _Awillys_ re
17:43 Awillys hi there, any directmail user around?
17:52 elbart hi Awillys ... i already used direct_mail... whats the question
17:54 Awillys elbart: i use sr_feuser_register and sr_email_subscribe together with directmail for mail subscription. with both sr_ extensions i have direct mail categories display problem in the form
17:54 Awillys i was wondering where is the html on for it
17:54 Awillys let me PM you the link it might make more sense
18:20 nd_ Gna, now it eats my plugin name, so my get values are no longer in pivars... argh
18:46 just_bjoern is it normal that typo3 doesn't save the header of a text/image-content-element ?
21:03 daKmoR I have a nice <link 22>test<link> in my DB
21:03 daKmoR but when I open my RTE its transformed to something like this <a href="?id=22">test</a>
21:04 daKmoR and now if I save I have a not so nice <link ?id=22>test</link> in my DB
21:04 daKmoR now I can do this all day long unttil I have a <link ?id=?id=?id=?id=ww>test</link> in my DB
21:05 daKmoR a rather bad transformation, how to deactivate it?
21:22 HardPhuck anyone has a case where a functions checks if page has subpages and returns those subpages
22:18 null__ HardPhuck: expAll=1
22:18 HardPhuck ah lol no i need the sql part, but i have already solved it
22:19 null__ ok
22:19 HardPhuck now i only need someone to translate my sql query into typo3 api queries
22:19 HardPhuck :)
22:21 HardPhuck MG you're the one i need :)
22:21 ries HardPhuck: Ahh it's you here aswell :)
22:22 daKmoR howto override a function?
22:22 HardPhuck yes :)
22:22 ries HardPhuck: if it's about MM tables then TYPO3 has an API
22:22 MyGoddess hello again :)
22:22 daKmoR TS_links_db in t3lib/class.t3lib_parsehtml_proc.php
22:22 HardPhuck no, i have a custom query (not mm) that i need translated into typo3 api queries
22:23 ries HardPhuck: long time since I done that... But you can use a more direct function to execute your SQL
22:23 ries I wouldn't worry to much about DBAL compatible
22:24 HardPhuck more direct function?
22:25 MyGoddess Well, what's the query ?
22:25 HardPhuck well i have a tree of records and im using Adjacency List Model to get all subrecords
22:25 HardPhuck http://pastebin.com/d4ce1d057
22:25 HardPhuck this is the query
22:26 ries HardPhuck: I would use sql_query in TYO3LIB_DB
22:27 ries HardPhuck: with nested set's that would be easer and faster.. but use sql_query....
22:27 HardPhuck where can i find that file
22:27 ries it's a function...
22:28 HardPhuck i mean the point of my query is to find all subcategories of a selected category
22:28 MyGoddess HP, I would write : http://pastebin.com/m36070266
22:29 ries $res = $GLOBALS['TYPO3_DB'] -> sql_query( $sql );
22:29 ries I wouldn't use it like that.....
22:29 ries it's wrong usage of teh API.. it might work... or not :)
22:30 ries Officially you need to do that SQL in 3 part with TYPO3 but that does hit performance bandly...
22:30 ries badly
22:30 MyGoddess ries, if you read the exec_SELECT_mm_query, it makes a call of exec_SELECTquery like that.
22:30 nd__ http://www.amazon.com/exec/obidos/ASIN/1593271905/downandoutint-20 ;)
22:31 HardPhuck so i can also use the mm_query for my problem??
22:31 ries MyGoddess: exec_SELECT_mm_query needs a typical TYPO3 MM structure....
22:31 ries HardPhuck: No, you cannot really
22:32 MyGoddess yeah, for sure, but it puts the join into the from part.
22:32 ries I 'think' you can use one of teh tree generation functoins... But it's to long ago since I have done that
22:32 ries nd__: there is a lot of buzz about that
22:32 HardPhuck do you have any examples?
22:33 ries HardPhuck: useing the tree functions no... it's to long ago since I have done that (over 2 years)
22:33 ries I would just use your SQL if it's fit's that... unless you want to make something official and you want to put it into TER
22:33 HardPhuck in fact, i do :D
22:38 ries HardPhuck: check :class.t3lib_querygenerator.phh with the function getTreeList
22:38 ries But I remember I have seen a function that was written in such a way that it could generate a tree from any table
22:40 HardPhuck okay i will check it out, thanx
22:45 HardPhuck how do i refer to the getTreeList from my extension
22:46 nd__ ries: This book?
22:46 null__ ries: hi
22:46 ries nd__: yup.... But I would recommend Joe Celko over anything else
22:46 ries Hey null__
22:47 ries HardPhuck: Just copy the functions.....
22:47 HardPhuck ah okay
22:47 ries or grep through TYPO 3 search :D
22:47 ries TYPO3 code... :s
22:47 null__ ries: do you work much with as9? i noticed that you are in the glassfish channel
22:48 ries null__: I don't use all feature but we have it deployed for a client of mine and I run my blog under glassfish
22:49 null__ Ah. Good to know. I currently finished a project for a lottery service in europe ,
22:49 null__ finally successful.
22:49 null__ Would be glad to know a contact, with experience with java
22:50 null__ sorry for offtipoc.
22:53 ries null__: All I can tell is that glassfish runs pretty good
22:53 ries my blog never goes down due to glassfish
22:53 ries and on the production server of my client it runs very stable
22:54 ries the system of my client is pretty much 24x7
22:54 null__ yes. indeed i wonder about the performance
22:54 ries performance is good...
22:55 null__ once it runs, it runs
22:55 ries yeaaa.. just take care that file and BD handles are closed and you are fairly solid
22:56 ries brb
22:57 null__ yepp cat /proc/user_beancounters
22:57 null__ i know
23:45 SebastianGebhard how can i reg here?
23:46 void SebastianGebhard: /msg nickserv help register
23:47 SebastianGebhard thx
23:51 SebastianGebhard has anyone gut a clue why for pi_linkTP_keepPIvars theres a method pi_linkTP_keepPIvars_url returning only the URL and for pi_linkTP there IS NO pi_linkTP_url ?
23:51 SebastianGebhard i dont get it

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.