Search the website and IRC logs

#TYPO3 IRC log from : Wednesday 15 April 2009

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
00:20 tomsdale ckoehler: flight is tomorrow morning but leaving tonight. gotta long night in front of me :-()
08:06 Cavallo hi
08:07 Cavallo how I can change page title orderd ? Now it's "Main page title: current page title" and I want "current page title - Main page title", any tip ?
08:31 FloLeBlanc hi all
08:33 void Cavallo: with typoscript
08:33 void Cavallo: search tsref for "nopagetitle" and then make the title by your own
08:55 kraftb morning !
08:58 fred^ yeah, this is a good morning, albeit a slow one
08:59 fred^ what do you all use for tt_news cache handling?
09:21 _pedda_ hi all
09:21 _backlight How can I refresh the $TYPO3_CONF_VARS array with the actual values from localconf.php?
09:23 mikhas_ hi folks.
09:31 FloLeBlanc hi void, kraftb, long time no see :)
09:32 kraftb hi flo !
09:33 kraftb whats up ? did you get caught by slave traders and being carried to some south-asian islands to do miserable work there and build those sub-notebooks all of us are using today ?
09:36 FloLeBlanc kraftb: omg how did you know that ;)
09:36 kraftb it got shares on those companies ;) ;)
09:36 FloLeBlanc lol
09:37 kraftb but the managers decided to remove all human workers and use robots instead ... so now your are free again.
09:37 kraftb how is it ... back in vienna *g*
09:37 JestereaXXL Hello everybody, i'm a beginner extension developer. For a frontend plugin I want to pull all contents from some page, possibly augment it somehow and return that as my extensions' output. Multiple languages need to work as well. Any hints on how to let typo3 give me the rendered content of a page whose UID i got?
09:38 FloLeBlanc hehe, actually I still work for my company, the freelancer program is almost done and I'll try to get a job as INF teacher again in summer
09:38 FloLeBlanc you?
09:38 kraftb well ... working on projects ... study ... etc.
09:54 _backlight How can I refresh the $TYPO3_CONF_VARS array with the actual values from localconf.php?
09:56 void JestereaXXL: i think you may search the typo3 sources. one of pagetypes is "grab content from another page", afaik...
09:57 pmk65 _backlight: Clear caches
09:58 _backlight pmk65: Nope, doesn't work. There needs to be something else.
09:59 _pedda_ _backlight: remove all tempcached files from typo3conf
09:59 _pedda_ and try again
10:00 _backlight _pedda_: Doesn't work, too. I need to do from an extension's code.
10:01 _backlight Like I need the currently loaded TYPO3_CONF_VARS now, change something in the localconf and need it to be updated in my code, too, to further work with it.
10:01 pmk65 Do you change localconf at runtime??
10:01 teppi|work JestereaXXL, have a look at this snippet http://nopaste.php-quake.net/242928
10:02 _backlight pmk65: Yes.
10:02 pmk65 why??
10:02 _backlight pmk65: But it's no real extension. It's a library that provides functions like that for further development of extensions. And for CLI.
10:03 _backlight And I *do* need it for CLI
10:04 Cavallo is possible to use IF statement in template?
10:06 void Cavallo: typo3 extension templating sucks. no ifs.
10:06 Cavallo :/
10:07 Cavallo any other suggestions ?
10:07 pmk65 _backlight: The configuration array as set up in t3lib/config_default.php.
10:08 pmk65 Cavallo: If it's your own extension, then switch to using Smarty templates.
10:08 _backlight pmk65: Just the default one. But it's overriden by the install tool. That default config doesn't seem to help me :(
10:08 Cavallo pmk65, yes its my extension
10:08 Cavallo is possible to use Smarty with typo ?
10:08 pmk65 _backlight: You can look at the code in t3lib/config_default.php, then it should be possible to see how it does it.
10:08 void Cavallo: but smarty is a huge dependency... so, if you need only one "if", you can make two subparts: one for "then" and one for "else"
10:09 pmk65 Cavallo: Yes. Simon Tuck have made an excellent version of Smarty for TYPO3, that supports a lot of special TYPO3 features inside Smarty.
10:12 lilalinux I have a typolink that I conditionally (with .if) want to give either 1 or 2 additionalParams. 0 or 1 is no problem, but for 1 or 2 I would need an .else?
10:12 pmk65 Cavallo: -> http://typo3.org/extensions/repository/view/smarty/current/
10:12 pmk65 And a demo ext for it: -> http://typo3.org/extensions/repository/view/smarty_demo/current/
10:13 _backlight pmk65: Doesn't help me since it's just the default configuration. Nothing about install tool generated TYPO3_CONF_VARS being loaded.
10:14 Cavallo pmk65, thanks!
10:15 lilalinux 30.typolink.additionalParams = &year={register:prev_year}&month={register:month}
10:15 lilalinux 30.typolink.additionalParams.if.value = 44
10:15 lilalinux 30.typolink.additionalParams.if.equals.data = TSFE:id
10:15 lilalinux in any other case I would like the month part to be ommitted
10:15 Cavallo void: not a bad idea, I think I will try with subparts.
10:22 untouch_ is there a downloadlist ext that works with a rss ext // need to have each download as feed
10:35 void untouch_: check ab_linklist
10:36 JestereaXXL teppi|work: thanks man, I'm gonna try
10:38 JestereaXXL void: thanks too, i'm gonna look some more, but that's what i've been doing all along...
10:41 _backlight pmk65: Any other hints? ;)
10:41 milpoer hi.. how can I extend an existing extension to be multilanguage? right now it only supports one language..
10:42 teppi|work milpoer, then you have to edit the extension code i think
10:43 milpoer teppi|work: yes.. but what need to be changed ?
10:43 pmk65 _backlight: Maybe you can find something via the API.. -> http://typo3.org/fileadmin/typo3api-4.0.0/d2/df2/classtslib__fe.html#cacc02aba266a9514c024bde323f4434
10:44 _backlight Nope ;) Tried that, too.
10:44 teppi|work milpoer, all places where content is put out .. you have to insert LL-methods like $this->pi_getLL
10:44 pmk65 milpoer: if you want the DB records localized, you need to add some extra fields.
10:44 teppi|work for static strings of course
10:45 milpoer teppi|work: pmk65 ok.. thx.. the records has to be localized.
10:48 pmk65 milpoer: each DB record you want to be localized, needs these 3 extra fields: -> http://paste.phlogi.net/-7056805424/
10:49 pmk65 and in ext_tables.php, you add the extra fields like this: -> http://paste.phlogi.net/-cb3d376676/
10:51 pmk65 and your TCa record needs the fields added too, similar to this -> http://paste.phlogi.net/-ef54cd96ff/
10:53 pmk65 If the ext you want to extend has wizard_form files in the docs/ folder, then you can use the ext manager change the fields. But REMEMBEr that when you save it,it wil override all the existing code of the ext. (But it's still useful even if you don't save, as you can view and copy the code into the source manually)
10:56 tPl0ch I have some problems with realURL. If I change defaultToHTMLsuffixOnPrev to 1, do I have to alter the .htaccess file too?
10:56 tPl0ch I tried to change it, and now it gives me an error that www.example.com/path/to/page.html is not a segment in the postvarset as expected
10:57 tPl0ch but www.example.com/path/to/page/ works when using defaultToHTMLsuffixOnPrev => 0
11:08 flam hello people. I am newbie . I wanted to have document managment system in php. When I search I found book about Typo3 Enterprice content managment. So want to know more information about typo3
11:09 flam Is typo3 having proper docment management system like Knowledge Tree or Alfresco
11:14 teppi|work flam, no.
11:15 teppi|work typo3 is a content management system for building websites
11:18 flam ok
11:19 milpoer pmk65: thx.. the phone rang.. i will look at your info.. thx alot.
11:19 flam then what is the meaning by Enterprice content management support by typo3?
11:20 teppi|work flam, that its meant to be used by bigger institutions like companies, organisations and so on .. i think
11:21 teppi|work flam, alfresco and typo3 are two complete different things .. but my company wrote an importer for alfresco documents into typo3 to make their contents available in the internet
11:21 flam ok
11:21 teppi|work unfortunately the importer is very specialized for this usecase
11:24 flam teppi|work thanks for the information.
11:24 flam teppi|work, Do you know any other php framworks or content management systems similar to Alfresco
11:25 teppi|work flam, nope sry :-/
11:26 flam tepp|work, no problem :) . thanks for the information.
11:30 teppi|work Oo .. flams company (n=(obscured mail address)) seems to be a T3 company and he is asking what T3 is?
11:31 teppi|work and on another page kraftb's profile .. ?! strange things are going on here :-)
11:37 fred^ what do you all use for tt_news cache handling?
11:45 mfr hello, I have a problem with realurl..it worked so far but today I noticed no url was working, so I checked and found db errors in the extension. I tried to remove/reinstall the extension but I always get DB erros, apparently because all the realurl-tables do not exist. Why are they not created when I install the extension?
11:55 coolguy_ hi there.
11:56 coolguy_ is it possible to write the domain name before a tmenuitem?
11:56 coolguy_ in the html source it links like href="test.html"
11:56 coolguy_ but i need href="http://mydomain.tld/test.html"
11:56 coolguy_ is that possible?
12:25 coolguy_ hello? ;-)
12:39 kraftb teppi|work --> he uses @think-open.at cause I have a web IRC gateway installed on my site:
12:39 kraftb http://t3chat.think-open.org/irc.cgi
12:39 kraftb and all people using this web-interface are having an "@think-open.at" DNS entry in IRC
12:41 teppi|work kraftb, ah ok .. hehe
12:42 kraftb so all things which seem to be strange are just occurences of some off-average events inside normal parameters ;)
12:50 lilalinux is stdWrap.override.override possible?
13:02 kraftb lilalinux: yes
13:03 kraftb override.override will override the value of the first override.
13:03 kraftb but be aware:
13:04 kraftb if you use "override" in conjunction with ".if" you should know, that the value of "override.override" will only get returned/used if the ".if" constructs in BOTH nested overrides evaluate to true
13:04 kraftb so they are logically AND connected.
13:04 kraftb if I require something which is somehow like OR i usually use a COA ... were only of of the cObjects inside will get rendered (because of ".if")
13:05 kraftb or what else would you like to use "override" for ?
13:15 lilalinux kraftb: indeed
13:16 lilalinux in this case I needed it for an sql query, but I managed to export the whole logic to sql which is much easier to control :-)
13:17 lilalinux kraftb: could you please update the dependencies of kb_md5fepw?
13:17 lilalinux it works fine with recent typo3 and php
13:17 lilalinux but the dependencies scare many users, so they don't use it
13:19 kraftb yep. I'll put it on my todo list.
13:20 kraftb but somewhere at the beginning of it. the end of my todo list is somewhere on the north pole
13:21 kraftb it would be time to integrate it into the core ...
13:21 kraftb i'll look if I can do this till or during the dev-daysd
13:21 kraftb -d
13:21 lilalinux hehe
13:22 lilalinux maybe there should be some NOSCRIPT code, too
13:23 lilalinux otherwise the password will be transferred in plaintext, if js is disabled
13:38 lilalinux what's the easiest way to create a .if condition with logical operators {and,or}?
13:40 ndee is it possible to set the title attribute for a link in a menu?
13:42 lilalinux ndee: ATagParams
13:42 lilalinux ATagTitle
13:42 lilalinux even
13:42 lilalinux http://typo3.org/documentation/document-library/references/doc_core_tsref/4.1.0/view/10/4/
13:42 ndee lilalinux: thanks a bunch!
13:42 lilalinux yw
13:45 ndee lilalinux: do you by chance know how I can use a field as value? I want the title to be the Title of the page I'm linking to.
13:46 kraftb ATagTitle.field = fieldname , for setting the link-title to the value of the "current" field "fieldname"
13:47 kraftb if you are not in context of a page, you'll better do it like:
13:47 kraftb ATagTitle.data = page:title
13:47 kraftb this will "always" use the title of the current page
13:47 ndee thanks alot!
13:48 ndee ah got it. is it also possible to set it to the title of the page I'm linking to?
13:49 kraftb always means: except you are coding some kind of weird CLI script, BE module which uses FE classes or any other things which usually make TYPO3 people look like "http://tinyurl.com/dn4zbg"
13:51 ndee I love that definition of "always" :D
13:52 kraftb well ... AFAIR it will use the title of the page your are linking to if you set NO ATagTitle
13:52 kraftb if it does not. You'll have to create something like:
13:53 kraftb http://t3paste.org/BmBWvS
13:54 ndee sweet, where can I learn that cool typoscript stuff? :D BUT, since in a menu, the uid always changes. BUT... I have to think for a second :D
13:55 greenanimal hi
13:55 kraftb try: paramter.field = uid
13:55 kraftb ;)
13:55 kraftb tell me if it works ... if it does not bother the other guys here ... I am going to have my after-lunch nip
13:55 kraftb or try: parameter.debugData = 1
13:55 ndee ok, gonna try that :D
13:56 kraftb it will show you which fields/keys are available for ".field ="
13:56 ndee ok
13:56 ndee if debug is enabled in the install tool?
13:56 kraftb but be aware of the large debug-output, and you'll need to be in the IP-range of "devIPmask" ...
13:56 greenanimal did anybody had the problem, that linebreaks are not rendered?
13:56 kraftb yes.
13:56 ndee kraftb: ok. Thanks for your help!
13:56 ndee guten appetit :D
13:56 kraftb .debugData is always a good idea if you mess around with TS
13:56 greenanimal i have the problem, that linebreaks are not put out
13:56 kraftb after-lunch nap = mittagsschläfchen ;)
13:57 kraftb i'll have to rest my brain ;)
13:57 greenanimal in the tt_content table everything looks fine.
13:58 greenanimal my output is breaking up, the linebreaks are not rendered and if i put a picture to the text element, only the header is shown in the output
13:59 greenanimal does anybody know this prob?
13:59 teppi|work greenanimal, sounds like tsconfig for RTE
13:59 greenanimal i did not change anything..
13:59 greenanimal i tried seting up a new installation, copied the compete template and it worked with the new installation, strange
14:00 greenanimal even if i disable the rte its not working
14:03 greenanimal the template does not contain any ts for the rte
14:03 teppi|work there must be a difference somewhere
14:03 teppi|work TSconfig is saved in page properties
14:03 teppi|work btw
14:05 greenanimal do you know which script produced the rendered output?
14:06 greenanimal ok, but even in the page header is no tsconfig for rte
14:06 greenanimal all pages are affected
14:09 greenanimal the problem seens to be in the part which renders the db content (tt_content objects) for output
14:09 greenanimal the strange thing is that i installed complete sources from scratch
14:10 greenanimal i did it several times.
14:12 greenanimal just deleted my typo3_src directory
14:12 greenanimal and replayed the sources from typo3.org
14:13 greenanimal problem still exists
14:13 greenanimal is there a way i can trace the way from the db to the page output?
14:17 teppi|work greenanimal, have you copied the DB as well?
14:17 greenanimal yes
14:17 greenanimal same prob
14:19 greenanimal can it have something to do with the character set of mysql?
14:19 greenanimal the db was not change
14:21 teppi|work i dont think that the char set matters
14:22 greenanimal which part of typo3 is rendering the db content to the output?
14:23 teppi|work typo3\sysext\cms\tslib\class.tslib_content.php afaik
14:23 greenanimal there must be something wrong, usually the CR/LF are substituted with a <P></P>
14:23 greenanimal but not in my case.
14:24 greenanimal i'll check if this file is damaged in some way.
14:26 teppi|work i think something is wrong configured but i can not imagine what
14:27 greenanimal i checked the file
14:27 greenanimal no diff between the installed one and the one from typo3.org
14:28 greenanimal i transfered the template to a complete new installation
14:29 greenanimal and it worked
14:29 greenanimal so it is not the template
14:31 greenanimal i also checked the history of the pages. nothing...
14:32 greenanimal i dont want to setup the page again, it has over 900 objects
14:38 teppi|work i dont really get the problem..
14:39 teppi|work have you transferred the whole database and all files?
14:39 teppi|work or just parts?
14:40 greenanimal i have made two new installations
14:40 greenanimal on one i transfered everything, db and files
14:40 greenanimal same problem
14:40 greenanimal on the other i transfered just the files and started new
14:41 greenanimal pastet the template as a new template
14:41 greenanimal this version worked
14:41 greenanimal so something with the db
14:42 greenanimal i even used the same html template
14:44 greenanimal ziemlich komische sache, besonders dass mit den textobjekten
14:44 greenanimal es trat gleichzeitig af
14:44 greenanimal auf
14:45 greenanimal immer wenn ich ein objekt, text mit bild anlege und ein bild einfŸge, dann kommt nur der header
14:45 greenanimal wenn ich das bild rauslšsche, kommt wieder der header und der text.
14:45 greenanimal strange
14:46 greenanimal nee alles 4.2.6
14:46 greenanimal hab auch schon ein downgrade versucht
14:46 greenanimal auf 4.1.5 ohne erfolg
14:46 teppi|work äh
14:46 greenanimal ja
14:46 greenanimal aktuell
14:46 teppi|work you are on the channel
14:46 teppi|work ;)
14:46 greenanimal sogar eben nochmal runtergezogen und drŸbergeschrieben
14:46 greenanimal ohne erfolg
14:46 greenanimal wieso lol?
14:47 greenanimal oops
14:53 lilalinux How do I do .if with logical operators?
14:55 greenanimal hi lilalinux, can you read german?
14:57 lilalinux greenanimal: what's wrong with english? :-)
14:57 greenanimal i just found a german description
14:57 greenanimal a good one
14:57 lilalinux her damit :-)
14:58 greenanimal http://www.rainer-grundel.de/wissensdb/typo3/allgemein/artikel/article/condition_fuer_typo3_und_oder_verknuepfung.html
14:58 lilalinux hm, this is about [CONDITIONS]
14:58 lilalinux I need something for .if
14:58 lilalinux [CONDITIONS] can't be nested
15:01 greenanimal ist das hier kein if?
15:01 greenanimal [browser = msie] && [version = 7]
15:03 Provito Has anyone interfaced solr with typo3, if so any tips?
15:05 lilalinux greenanimal: it's more or less a different language
15:05 lilalinux something like a preprocessor
15:06 lilalinux greenanimal: what I'm talking about is this: http://wiki.typo3.org/TSref/if
15:29 greenanimal also doch die db
15:38 lilalinux greenanimal: this is an english channel
15:38 Cavallo is there any documentation how to make extension compatible with realURL or cooluri? I have extension which one have catalogues, countries, cities and programs so my url would look like this page_name/catalogue_name/country_name/city_name/progra_name. Is this possible ?
15:39 lilalinux Cavallo: should be as easy as de/ en/ etc. for L=0 L=1
15:42 Cavallo does I must create a field in each table which one would hold a url param. So if catalog title is "United States of America" the url filed would have united_states_of_america or this is created automaticly on the fly ?
15:54 pmk65 Cavallo: Look at the RealURl setup for tt_news (it's included in the tt_news ext.) With that as base, it should be quite easy to create setups for your plugins.
16:22 Cavallo pmk65: thanks
17:02 _pedda_ cu all
17:07 mfr hi everybody, I have a serious problem. I try to insert an image in draft workspace, but there is no filelist-tree...I try this as admin, so it's probably not a permission problem...help, anyone? :(
17:08 mfr I don't want to have version control on files, but only select from the same files as in live workspace..how do I do that?
17:18 mfr hello
17:18 JestereaXXL teppi|work - once more thank you for the snippet for rendering the page content, but I went with the PHP-Quick&Dirty-Way & gave those pages a simple template & made a second request to the server to the specified page from inside my extension & parse the results now. Just wanted to let you know.
17:18 mfr typo3 god
17:18 mfr where r u
17:26 mfr can someone give me an idea about how this is supposed to work with versioning and files in typo3? Why can't I see the filebrowser/filelist in draft workspace?
17:31 teppi|work JestereaXXL, really dirty :-[ ... :-)
17:33 TaucherMK mfr: You cannot see it because the filebrowser is just a mounting point for the fileadmin/ folder
17:34 TaucherMK mfr: Changes in there would affect the live workspace which isn't supposed to in Draft Workspace
17:39 mfr Im aware that there is no version control for files. Is there no setting to override this behaviour? I mean what is a draft workspace good for if you can't insert an image or document?
17:41 mfr what shall I tell the publisher who wants to insert a picture? :(
17:46 mfr TaucherMK, is there not something like a read-only mode? this would be okay too, and there would be only one version of the files
17:47 TaucherMK Why do you need the fileadmin for inserting pictures?
17:48 TaucherMK don't tell me that you upload every picture to fileadmin you use in content >.<
17:49 mfr not pictures, but documents for example
17:50 mfr I can't even make a link to a document
17:50 mfr I really wonder what drugs these developers abused
17:50 mfr I mean this is just fundamentally wrong isnt it :(
17:51 TaucherMK mfr: Somebody should kick you for this >.>
17:51 mfr why? Do you think this makes sense?
17:52 mfr I mean I can understand that there can be no write operations to preseve consistency...but why not read-only?
17:54 JestereaXXL teppi|work - I did it myyyyy waaaayyy... Thx anyways, i'm going home, see you l8ter
17:54 JestereaXXL bye
17:54 teppi|work cu :D
17:56 mfr sorry didnt mean to offend someone, its just the frustration after a long day and failed tries to reconstruct what the ideas of the developers were
17:59 mfr what does >.> mean, btw?
18:02 teppi|work (>..)> pokemon !
18:02 mfr but only >.>
18:05 mfr okay goodbye everyone and thanks, need a drink now.
18:19 LionRock hi
18:19 LionRock http://pastebin.com/d17e121e4
18:19 LionRock I cant change page title
18:20 LionRock what Im doing wrong ?
18:29 Tsoots any gsoc mentors here
18:30 Tsoots you'll loose one extra slot unless you pop in the #gsoc-resolve to fight for it
18:30 Tsoots no fighting involved but couldn't come up with anything else
18:30 ries2 Tsoots: usually there are not core developers here, sad but thrue
18:30 ries2 You need to mail them
18:30 Tsoots uhh
18:31 Tsoots i guess i don't love typo3 that much
18:31 ries2 Tsoots: did you apply?
18:31 brainfck_ Tsoots: I think they are in Dallas atm at the conference
18:31 Tsoots i'm mentoring for scribus
18:31 ries2 Ahhh scribus!!!
18:31 Tsoots just hanging in #gsoc-resolve
18:31 brainfck_ I applied for GSOC @ TYPO3 and didn't get any response:(
18:31 Tsoots to see their decisions
18:32 Tsoots [19.33] <lh> tpf_particle: if no one from typo3 attends, the student goes to you
18:32 ries2 Tsoots: I know it's sad but true....
18:32 brainfck_ ries2: indeed
18:32 Tsoots oh well
18:33 pmk65 Is anyone using TYPO3 v4.2.6 with tt_news rss feeds?
18:33 ries2 TYPO3 is a great CMS with some great concepts... But the cummunity driven developents of core is rather new to TYPO3 and they still need to discover a lot of the true open source development effords
18:34 brainfck_ ries2: are you a mentor for GSOC?
18:35 ries2 brainfck_: Nope
18:35 ries2 I stay away from core developments of TYPO3
18:35 brainfck_ k
18:37 pmk65 Is anyone using TYPO3 v4.2.6, and can test this snippet? -> http://paste.phlogi.net/-04371a69df/
18:38 pmk65 On 4.2.6 it just returns an error "The page is not configured!", but the EXACT same code snippet works fine on older TYPO3s
18:47 teppi|work pmk65, typo3 4.2.3
18:47 teppi|work The page is not configured! [type= 0][]
18:50 teppi|work oh pmk65
18:50 teppi|work i forgot the type param
18:50 teppi|work when i use it the page is rendered
18:52 pmk65 it's only my 4.2.6 that doesn't like it. :(
18:53 NiFkE so I can configure ttnews that registered users can post articles in several categories ? (like articles or tutorials?)
18:54 kraftb ähm. pmk65 : did you set a "PAGE" object for typeNum = 0
18:54 kraftb if not, you will get this error, cause "type" is "0" by default
18:54 kraftb as teppi wrote: if you add &type=80 it will work
18:55 kraftb and probably you have an "empty" 4.2.6 while your older versions have correctly set a PAGE object for typeNum = 0
18:57 pmk65 no. I have a typeNum = 0 on the default PAGE object, and I can view that with or without type=0, it's just any other page object I create with different typeNum, tat it won't display.
19:00 kraftb probably you forgot to close some bracket} or condition ...
19:01 kraftb have a look at the TS-Object browser if your configuration shows up properly
19:01 louS hi all
19:01 kraftb of course it could be a bug in 4.2.6
19:01 kraftb but i'll assume another problem.
19:02 pmk65 Ghost in the machine, as it works now.. :)
19:02 kraftb caching ?
19:03 pmk65 I really don't know. It just worked..
19:03 kraftb well ... i'm off ... have a nice evening/morning/day/night/whatever
19:07 brainfck_ IngoRenner: you are needed in #gsoc-resolve
19:07 louS does someone use PMK Indexed Search Auto completer (pmkisac)? Cause i got a multi page tree and on site 2 pmkisac list also the results of site 1. Does anyone know how i could handle this? Thanks in advance
19:08 IngoRenner I'm in #gsoc-resolve already :)
19:08 brainfck_ IngoRenner: sorry, didn't see it;)
19:08 IngoRenner np, just joined it
19:15 pmk65 louS: Send me a bugreport, and I'll look into it..
19:21 louS wow the real pmk creator here? :D
19:21 louS what a pleasure :D
19:22 louS where i should send it pmk65 ?
19:23 pmk65 (obscured mail address)
19:23 louS ok thanks
19:25 pmk65 Im planning to update a couple of my ext in the next couple weeks.
19:26 louS really? by now i just had this one little problem, but the rest of your ext. works perfectly
19:32 pmk65 Specially the Mootools based ext needs to be updated, but I have been busy with other things, so I have delayed that for a long time :)
19:33 pmk65 But I finally got the t3mootools extension up at forge, so that one will be the 1st one to be updated..
19:34 louS honestly im not using the mootools
19:34 pmk65 btw: if you use my PMK Slimbox ext, then you should take a look at this one (not on TER yet) -> http://forge.typo3.org/projects/show/extension-pmkshadowbox
19:34 TaucherMK hm, mfr is gone, wanted to tell him why typo3 has this behavior, but I had to go off..
19:35 pmk65 Shadowbox is really cool and doesn't conflict with other Javascript frameworks. so it can be used with Mootools,Jquery or Protocrap..
19:35 louS ya i tried to use the slimbox, but after some hours i was givin up :)
19:35 louS by the way, ive sent the email
19:36 pmk65 I'll check it tomorrow when I get to work.
19:36 kraftb pmk = peter niederlag ...
19:36 kraftb ?
19:36 louS sure no prob
19:36 louS thanks in advance already peter
19:37 kraftb ah ... peter klein ... sorry
19:38 kraftb anyways ... bye now.
20:01 kaktuspalme_ hmm, UXA läuft immernoch stabil :)
20:25 tomsdale hey - anyone attending the T3CON in Dallas staying in the Days Inn here?
21:25 ckoehler hey guys
21:25 ckoehler made a t3con09 channel
21:25 ckoehler #t3con09-dallas
21:25 ckoehler no big deal though
21:31 ckoehler tomsdale: yep
23:15 kreegee hi
23:16 kreegee somebody here knows how i can check in ts on the singleview if a news item is archived?
23:16 kreegee tried a variety of snippets
23:16 kreegee without success

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.