Search the website and IRC logs

#TYPO3 IRC log from : Thursday 8 October 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 31
00:03 schabracke hey there!
00:04 fuchur hi
00:04 fuchur !poll what time is it in your place?
00:04 fuchur ^^
00:07 schabracke hhmm 0:09
00:07 schabracke damn smileys
00:07 schabracke si midnight
00:07 schabracke fuchur! long time no see
00:08 fuchur ok
00:08 fuchur :)
00:08 fuchur same time in here :D
00:08 schabracke and at yours?
00:09 schabracke let me guess, you live in vladivostok and its 10 am :)
00:09 schabracke ah k hehe
00:09 schabracke how s it going with typo3?
00:13 fuchur mh
00:13 fuchur typo3 doesn't like me
00:13 fuchur ;)
00:18 schabracke hahah
00:19 fuchur i don't get this f**** date formated
00:19 fuchur grmbl
00:19 fuchur tryin all day long
00:19 schabracke omg, u tried everything with the language?
00:20 schabracke or lacalization
00:20 fuchur that doesn't matter ...
00:20 fuchur i transformed output allready
00:20 fuchur but i don't get the input fields right
00:25 schabracke hm mmmkaayy
00:27 schabracke did u ever work with direct mail?
00:31 fuchur nope
01:41 Conic heyho all, can someone tell me what happens when i "delete" a CE in TemplaVoila?
01:42 Conic because tt_content.deleted is not set to 1
01:42 Conic this happens only if i delete it then under "unused elements"
01:43 flurl hi conic
01:43 Conic hey flurl, you again ;)
01:43 flurl only the reference gets deleted
01:43 Conic maybe i should write your name in the extension under author, not mine ^^
01:44 Conic how can i check this in the database?
01:44 Conic where is that reference?
01:45 flurl you find a table sys_refindex in the database
01:45 Conic i have to exclude those out of my query...
01:47 flurl you make me learn a lot, i never looked at that table before :)
01:47 flurl i'm curious, what extension to you write?
01:47 flurl *do
01:50 Conic ok...
01:50 Conic you use TV?
01:50 Conic when you click on the page module you can see the entries of the page you selected
01:51 Conic but you can't see which FE Groups have access to which entry
01:52 Conic it costs much time to find out which CEs can be accessed by which FE Group
01:53 Conic so i create a select field at the top which lists all Groups that have special access over at least one CE on this page
01:53 Conic when you then select a group in the dropdown, all CEs disappear which can't be accessed by that usergroup
01:54 Conic that's done via javascript, the rest is made with php
01:54 Conic flurl: still there?
01:54 flurl sounds nice
01:54 flurl yeap
01:55 Conic this is because i have a special problem:
01:56 Conic i have pages with 100 CEs and 100 different FE Groups that have access over 1, 2 or maybe 17 CEs on this page
01:56 Conic it is impossible to handle this :D
01:57 flurl hehe
02:04 flurl Conic: btw, you know, that it is possible in the backend to display the usergroups, that have access to a CE?
02:05 Conic you mean in the list module?
02:05 flurl yes
02:05 flurl you need it in the page module, doesn't you?
02:05 Conic yes
02:06 flurl forgot what you wrote 5mins ago, tststs
02:06 Conic 100 CEs, 100 FE Groups => 30minutes until you picked all out which belong to a special group
02:06 Conic with my method => 5 seconds
02:07 Conic you're right, it is possible
02:07 Conic but it costs muuuuuuuuuuch time
02:09 Conic ok, this reference problem if more difficult than i thought
02:09 Conic i'll do that later
02:12 Conic is this correct in a query (where clause) and fe_group != ""
02:12 Conic flurl: can i write it like that?
02:12 flurl should be correct
02:13 flurl fe_group is not an empty string
02:15 Conic tested it, is correct
02:15 Conic ;)
02:16 flurl :)
03:12 Conic flurl: are you there?
03:12 Conic i'm a bit confused
03:13 flurl yeap
03:13 Conic i got this:
03:13 Conic elseif ( $contentTreeArr['el']['table'] == 'pages' ) {
03:13 Conic now i want to add something
03:13 Conic buah i'm confused
03:13 Conic too much in one time :D
03:14 Conic i mean at the same time ^^
03:14 flurl :) add something to what?
03:14 Conic i want to add a condition
03:15 Conic the one above is: if table = pages
03:15 Conic and now i want to write:
03:15 Conic && if this query
03:15 Conic $GLOBALS['TYPO3_DB']->exec_SELECTquery('fe_group','tt_content','pid in ('.$seitenID.') and deleted = 0 and fe_group != ""')
03:15 Conic has more than 0 results
03:16 Conic how can i say "if results more than 0" ?
03:17 Conic could i say: $queryRes = (...query...)
03:17 Conic if ( isArray($queryRes)) {
03:18 Conic does that make sense?
03:19 flurl no, the result handle isn't an array, but you can do if (sql_num_rows($queryRes) > 0)
03:19 Conic ah
03:23 Conic flurl: Fatal error: Call to undefined function sql_num_rows()
03:24 Conic is it mysql_num_rows() ?
03:24 flurl $GLOBALS['TYPO3_DB']->sql_num_rows()
03:25 flurl mysql_num_rows is the php build-in function
03:26 flurl in fact the sql_num_rows is just a wrapper around mysql_num_rows
03:27 Conic with mysql_num_rows() it works
03:27 Conic great!
03:28 Conic man you are the best! ;)
03:28 flurl you're welcome :)
03:31 flurl i've to go to bed, have to get up early tomorrow, but FYI: there's a file class.t3lib_refindex.php, that might help you, when you to that references thing
03:31 Conic ok, goodnight ;)
03:31 Conic and thanks a lot
03:32 flurl good night
03:32 Conic tomorrow my extension is nearly ready
03:32 Conic ;)
03:32 flurl i'm looking forward to seeing it :)
03:32 Conic ok!
03:32 Conic hope i will see you in this channel these days
03:33 flurl may the typo3 force be with you ;)
03:33 Conic it is more and more, master...
03:33 flurl *lol*
07:50 menak hi
07:53 fuchur hi
08:21 victorDDT Hello
08:21 fuchur hi
08:22 marcuslind morning!
08:22 victorDDT Does anybody have experience with this extension Seminar Manager Extension key ( seminars )?
08:27 marcuslind nope sry.
08:28 jsfan victorDDT, we used it in a project recently
08:28 jsfan victorDDT, what's your question?
08:29 marcuslind I'm trying to create a custom content-frame. (ex: Frame01 that you chose in the frame-list when publishing content). The problem is that it's more then just 1 <div> that make up the whole frame... How do I save this frame as a template to chose from the list when publishing content?
08:29 marcuslind Googled like crazy, all i get is guides on how to create framesets (HTML frames) ...
08:30 jsfan marcuslind, are you on templavoila?
08:31 marcuslind Yepp
08:31 marcuslind jsfan:
08:32 jsfan marcuslind, so, you want to create an fce?
08:33 marcuslind I'm really new to TYPO3.
08:33 marcuslind FCE = The frames you chose from when publishing content on the site?
08:33 jsfan marcuslind, FCE = flexible content element
08:33 jsfan templavoila can be used as a system to template the whole page but also to create your own content elements
08:34 jsfan you just map it like you map the page template but then save it as an FCE
08:34 fuchur Mh, someone of you guys knows where to find the eval-functions which do the evaluating in tceform?
08:34 jsfan it then becomes a content element that you can use like any other
08:36 jsfan fuchur, try tcemain or tceforms
08:36 jsfan should be somewhere in there
08:36 fuchur mh
08:36 fuchur i will keep on searchin :(
08:39 fuchur the header index in corefiles sucks ^^
08:39 fuchur meaning it's wrong
08:40 jsfan fuchur, try http://typo3.org/fileadmin/typo3api-4.2.6/dd/dbe/class_8t3lib__tcemain_8php.html
08:40 victorDDT jsfan, I can not find this extension (seminars) throught Extension manager in typo3 administration. Do I need install it throught T3X file?
08:40 fuchur think it's checkValue_input_Eval()
08:40 fuchur will check that
08:40 fuchur thanks jsfan
08:40 jsfan victorDDT, do you allow only reviewed extensions?
08:41 jsfan there might not be a reviewed version
08:42 jsfan victorDDT, gotta run. but try switching on all extensions and update your extension repo. if you can't find it then, try the t3x.
08:50 zed_devil hi, still having problems with sr_email_subscribe want to use other PID for users in 2 language; plugin.tx_sremailsubscribe.module_sys_dmail_category_PIDLIST = PID; i tried it in the global var without any effect - help plz
08:57 zed_devil no one ever used sr_email_subscribe in multilanguage hompage?
08:59 gerards i guess not zed_devil
09:10 fuchur mh, do i have to open a bug and make a RFC for no-brainers?
09:10 fuchur http://cxg.de/_f842df.htm
09:27 marcuslind When creating a FCE (Flexible content element) do I create a new Template Object to map from?
09:27 marcuslind or do I add new fields in my original mapping?
09:44 zed_devil @marcuslind i create seperat html files like that http://paste.phlogi.net/fexibel_content_container_3_sp/
10:05 StaffanE What is the judgement about the 4.3b1? Is it worth installing or should one wait a month or two?
10:09 Phlogi StaffanE: no idea... just try :)
10:10 StaffanE Phlogi: The problem is that I probably will try it out on a live site :-) Not in active production but still live and used
10:10 StaffanE It's just that I really like what I read in the release document
10:14 sorenmalling StaffanE: Im using it for test purpose (along with the latest trunk of templavoila) and I can really recommend it, it seems really stable
10:15 kotelette Good Morning
10:15 kotelette does anyone know if there's a way to generate a realurl pagelink by myself in a frontend plugin of my own extension?
10:15 sorenmalling I know that it's not recommended to use a beta and a svn checkout of templavoila in a professional production environment, but i just felt like trying the newest stuff on the market :-)
10:15 StaffanE sorenmalling: check, no major problems encountered?
10:16 StaffanE sorenmalling: if nobody runs a beta in a production like enviroment, less bugs will be found
10:16 sorenmalling Nope haven't had any problems with the base system. Haven't used fluid or extbase for extension writing, so can't say anything about them
10:17 sorenmalling StaffanE: I run the beta on my own site, and I'm using it as i would in a production environment. But i can rather accept my own site being down than i can accept a production server being down :)
10:21 fuchur ooookey
10:21 fuchur i hate the core
10:21 fuchur ^^
10:25 skurfuerst any problems with extbas / fluid?
10:28 sorenmalling skurfuerst: Define "problems" ?
10:28 skurfuerst sorenmalling: well I don't know, I am one of the extbase / fluid authors, so I'd be interested in them
10:29 StaffanE skurfuerst: searched typo3.org but didn't find much info on fluid at all :-(
10:30 sorenmalling skurfuerst: Arh okay, it seemed like i "is it safe to use, or else i wan't use it" question :-)
10:30 skurfuerst well it is still beta, and we're working hard on documentation and all that
10:30 StaffanE skurfuerst: a feature podcast would probably be good marketing
10:30 skurfuerst there is already one
10:30 skurfuerst http://flow3.typo3.org/documentation/manuals/fluid/ and this is the current version of the docs
10:30 StaffanE skurfuerst: didn't see it among the podcasts, URL?
10:30 skurfuerst just a sec
10:31 skurfuerst It's from the snowboard tour
10:31 skurfuerst It's called "Development: Extbase and Fluid (Part 1+2)"
10:32 skurfuerst released 23.05.09 and 23.06.09
10:32 skurfuerst and also related is "4.0 meets 5.0 - Talk at t3board09"
10:33 StaffanE skurfuerst: thanks a lot!
10:33 skurfuerst you are welcome!
10:37 fuchur ok one last time or i will quit straight to the weekend :D
10:37 fuchur where to change the JS which converts d.m.Y in d-m-Y in tceform fields?
10:44 maholtz|WORK @skurfuerst: afaik there was an example extension - which one was it?
10:58 skurfuerst maholtz|WORK: Blog example
10:59 skurfuerst maholtz|WORK: https://svn.typo3.org/TYPO3v4/CoreProjects/MVC/
10:59 skurfuerst there the blog example
11:12 kotelette another question: i got a javascript onchange language switch, is there a way to make the crawler + staticpub include this?
11:27 anteater_sa can anyone make any recommendations on a good forms extension? (needs captcha)
11:35 maholtz|WORK re...
11:35 maholtz|WORK grmpf i need an DSL connection without "24 Stunden Zwangstrennung" any hint?
11:36 maholtz|WORK btw thanks to ries for logging and thanks skurfuerst for your answer:)
11:37 skurfuerst you are welcome ;)
11:46 zed_devil i think SDSL is without the disconnection because you have a fix ip
11:47 foool morning.
11:49 foool IAnyone know: Using the HTML element, I made a button for paypal, but it gives page not found. It works outside of typo3 also if I use inline frame to external page it doesn't load the images of the site in the frame. Any Ideas?
11:50 kotelette i try another question: if i check for 'if(t3lib_extMgm::isLoaded('crawler'))' in a fe plugin, does it return true if the crawler is calling the current url
11:50 mquintus maholtz|WORK: I've got the same problem, but irssi (which is my irc client) handles it pretty well.
11:51 mquintus maholtz|WORK: you can run a irc client on a linux shell on your linux server in screen. Then you can log on to the server and reconnect to screen whenever you need irc.
11:53 zed_devil sr_email_subscribe - is there any possibility to have one "user folder" for each language
11:55 m4rtijn|lap hi
12:17 xaver hello
12:17 xaver if i use xhtml in typo3 and multimedia flash element the code is not valid
12:18 xaver any easy plugin for the user
12:18 xaver (normal i use html with the right code)
12:23 maholtz|WORK @zed_devil: i have a fix ip - but with disconnection and lovely Telekom Guy told me, that there is no possibility to change that
12:24 maholtz|WORK @mquintus: i will think of that:) thanks
12:40 Conic someone here who can help me with a sql problem?
12:40 Conic i have this query
12:40 Conic $queryRes = $GLOBALS['TYPO3_DB']->exec_SELECTquery('tx_templavoila_flex','pages','uid = '.$seitenID);
12:41 Conic which has always one result, for example "123,234"
12:41 Conic how can i make a string out of this $queryRes now?
12:51 kotelette @Conic i'd use while($row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($queryRes)){}
12:51 kotelette you'll get an assoc array for each line then
12:52 Conic is there an easier way if i already know that this will be only one line?
12:53 Conic but thats ok
12:53 Conic forget it, that's good
12:58 kotelette or just use it without the while so you'll just get the first/only result
13:16 anteater_sa wow, the powermail extension rocks!
13:19 Conic anteater_sa: it's great! i use is a lot...
13:35 randomresult 01
13:37 BejjWrk that made complete sense
13:40 sorenmalling Sascha Storz?
13:49 daKmoR hey
13:49 miousse hey
13:50 daKmoR is there any easy way to generate a table layout for text + image...? (I know it's evil, but those dam newsletter won't work otherwise)
13:56 Conic does someone know how to get the UIDs out of "tx_templavoila_flex" in table "pages"?
13:56 Conic there's some xml around it, which disturbs
14:03 Conic someone who can help me with this problem?
14:04 Conic maybe there's a predefined funktion in templavoila to pick the UIDs out of that xml
14:04 Conic but i can't find an api for templavoila or something like that
14:15 Conic is there a function by T3 to read out flexform entries??
14:20 miousse yep
14:20 miousse $this->pi_getFFvalue($this->cObj->data['pi_flexform'],'what_to_display');
14:21 miousse what_to_display is the index you want to find in the flexform
14:21 miousse and $this->cObj->data['pi_flexform'] is the flexform it self
14:24 Conic miousse: ok can you help me a little with that, i don't understand this...
14:24 Conic my variable with the xml inside is $CEs
14:25 miousse Conic: are you still in a backend module?
14:25 Conic i'm still in the backend
14:25 Conic in the php code that renders the backend output
14:26 miousse and y do you want to read a flexform in the backend?
14:26 Conic the xml looks like this: http://pastebin.com/d504b6c77
14:27 Conic and i want to get the value of line 6
14:27 Conic so that i have 1661,1659
14:29 Conic miousse: didn see your question
14:29 Conic because
14:30 Conic i need the value to know which CEs are on this page
14:30 miousse just a sec
14:30 Conic this is the only place where to read out the CEs on the page
14:30 Conic and to go on i need a list of all CEs on the page
14:31 miousse ya but y do you need to fetch flexform informations?
14:32 miousse you can have the list of CE's without fetching flexform
14:32 Conic how that?
14:33 miousse ho i forgot that you where with tv
14:33 Conic yes ;)
14:33 Conic otherwise i would be ready yet
14:33 miousse and effectively tv store the liste of CE's used in the page
14:33 Conic yes, in taht xml
14:33 Conic *that
14:34 Conic in pages.tx_templavoila_flex
14:34 miousse *
14:34 miousse * @param array FlexForm data
14:34 miousse * @param string Field name to extract. Can be given like "test/el/2/test/el/field_templateObject" where each part will dig a level deeper in the FlexForm data.
14:34 miousse * @param string Sheet pointer, eg. "sDEF"
14:34 Conic in this field there's an xml like the one i pasted
14:34 daKmoR can I find somwhere the "old" tables based layout for text with image? (need if for a newsletter... still evil I know.. :( )
14:34 miousse these function are the function used to fetch xml
14:44 Conic miousse: still there?
14:44 miousse yeah
14:44 miousse i opened a private chat with you
14:46 zed_devil #sr_email_subscribe use seperate sys folder for each language for registration - here the solution of my problem: http://paste.phlogi.net/sr_email_subscribe/
14:46 zed_devil if someone has the sam problem
14:47 zed_devil just add the code in constant of the root page
14:48 Conic miousse: but you don't answer there
14:52 zed_devil i created a headline for a menu that uses a page subtitle but if i translate the page the output ist geman in every language can someone have a
14:52 zed_devil look at the code wat's wrong lib.subnavihead = RECORDS http://paste.phlogi.net/-59087605b2/
14:54 miousse looks fine to me
14:54 daKmoR what was before css_styled_content? what created the layout before?
15:15 Conic can someone explain to me the $GLOBALS['TYPO3_pibase']->pi_getFFvalue function
15:15 Conic this would be great, i just don't get it working
15:30 thermoman hi. someone an idea what might cause the nullbytes at beginning of the document at http://www.coupling-media.de/ ?
15:31 thermoman before <?xml version="1.0" encoding="utf-8"?> there are plenty of null bytes ... don't know where they come from
15:32 thermoman typo3 v4.2.9 with dbyaml extension
15:36 SEBAR Hi everybody. I have a problem with user specific TSConfig for RTE. It seems that the configuration syntax is different from the page TSConfig. For example for activating/disabling buttons I can use "options.RTEkeyList = bold, italic" but not "RTE.default.showButtons = bold" as I do in the standart configuration. Is there a way to have a user specific page TSConfig?
15:36 ddoesburg hi thermoman, here all is well
15:36 thermoman ddoesburg: nope, not well :)
15:36 thermoman http://validator.w3.org/check?uri=http%3A%2F%2Fwww.coupling-media.de%2F&charset=(detect+automatically)&doctype=Inline&group=0
15:37 ddoesburg how do you see the null bytes?
15:37 thermoman with wget
15:37 thermoman and then use vim
15:37 thermoman or hexdump -C
15:39 SEBAR nice website
15:40 thermoman ddoesburg: http://pastebin.com/m54dd8eb6
15:40 thermoman SEBAR: thanks :)
15:40 ddoesburg yes I see. never seen before
15:40 ddoesburg And no idea how to solve this
15:43 thermoman it's gone
15:43 thermoman the typo3 guy fixed it
15:44 Conic can someone explain to me why this throws an error :http://pastebin.com/mb425f8c
15:45 Conic i try to get a value out of an xml
15:45 ddoesburg @ thermoman How?
15:46 thermoman ddoesburg: it was a of the typo3 guy ...
15:46 thermoman oops
15:46 thermoman it was a plugin of the typo3 guy he wrote himself
15:46 ddoesburg LOL
15:46 thermoman he's going to debugg it
15:47 Conic my error is: Fatal error: Call to a member function pi_getFFvalue() on a non-object in C:\xampp\htdocs\typo3\typo3conf\ext\conic_tvuserview\class.ux_tx_templavoila_module1.php
15:51 Conic smoeone an idea what is wrong there?
16:04 SEBAR Hi everybody. I have a problem with user specific TSConfig for RTE. It seems that the configuration syntax is different from the page TSConfig. For example for activating/disabling buttons I can use "options.RTEkeyList = bold, italic" but not "RTE.default.showButtons = bold" as I do in the standart configuration. Is there a way to have a user specific page TSConfig?
16:09 BejjWrk Is there a way to do a negative condition in ts ? and before you get the chanse to tell me, I did read the tsref.
16:09 ddoesburg :-)
16:10 ddoesburg But please explain what you mean with a negative condition
16:10 BejjWrk ok
16:10 BejjWrk [globalVar = GP:L = 10][loginUser = *] this will match Language id 10 against any logged in user
16:11 BejjWrk but what if I want to specifically do something if the language is set and the user is Not logged in ?
16:11 ddoesburg What would you do?
16:14 ddoesburg example
16:14 ddoesburg lib.do = COA
16:14 ddoesburg [globalVar = GP:L = 10]
16:14 ddoesburg lib.do.10=bla bla
16:14 ddoesburg [loginUser = *]
16:15 ddoesburg lib.do.10 >
16:15 ddoesburg Now lib.do.10 only works for not loged users
16:15 BejjWrk thanks, that solved my problem :)
16:16 ddoesburg don't forget to close with a [end]
16:16 BejjWrk end of the work day, brain isnt functioning properly
16:16 maholtz|WORK @conic: pi_getFFvalue depens on piBase, which you do not have in your xclass
16:18 Conic maholtz|WORK: don't i import that with $GLOBALS['TYPO3_pibase'] ?
16:20 maholtz|WORK @Conic: didnt know that. So you set the data in that object?
16:20 Conic http://pastebin.com/mb425f8c
16:20 maholtz|WORK well, but your error message told you, that there is no object, so check $GLOALS['TYPO3_pibase']
16:21 maholtz|WORK brb
16:21 Conic this is what i'm working at
16:22 Conic maholtz|WORK: or do you have another idea how i could get the value out of the xml string?
16:42 maholtz|WORK @Conic: where do you get $GLOBALS['TYPO3_pibase'] from?
16:42 maholtz|WORK cant you make a new instance from pi_base? and use it then?
16:43 Conic maholtz|WORK: how would i do that?
16:43 maholtz|WORK where did you get $GLOBAS['TYPO3_pibase'] from?
16:44 Conic isnt it here: http://typo3.org/fileadmin/typo3api-4.0.0/df/d32/classtslib__pibase.html#bfb0bc560ec7ab58d949df69afd149bd ?
16:44 Conic i want to access this function
16:45 Conic maholtz|WORK: or is there another way how i could get the value out of the xml string?
16:45 maholtz|WORK tslib_pibase.pi_getFFvalue does not mean, that tslib_pibase is a Global, but it is a class
16:45 Conic ok, then i misunderstood
16:45 maholtz|WORK @conic: http://www.typo3-unleashed.net/typo3apidocs/typo3api_4.2.1/html/search.php?query=makeinstance
16:46 maholtz|WORK i would assume, that templavoila gives you the possibility?
16:46 SEBAR Is there a way to use custom page TSConfigs for the BE depending of the user group?
16:46 Phlogi this is just a test phlogi.net
16:47 Conic maholtz|WORK: do you know a way how i could get the value out of the xml string?
16:47 Phlogi maholtz|WORK: could you write me a highlighted message please
16:48 maholtz|WORK @Phlogi: this?
16:48 maholtz|WORK or Phlogi this?
16:48 Phlogi yes, thanks... thats great :)
16:48 maholtz|WORK wow, i did a good job:p
16:49 maholtz|WORK you are finetuing your client?
16:49 Phlogi maholtz|WORK: exactly...
16:49 Phlogi quassel is perfect almost
16:50 maholtz|WORK is it possible to spam @Phlogi with a lot of Phlogi messages?
16:50 Phlogi maholtz|WORK: no, not really :p
16:50 Phlogi maholtz|WORK: I get a lot already beacaus of the pastebin :)
16:50 maholtz|WORK quassel is KDE?
16:50 Phlogi maholtz|WORK: no, its qt... but has some kde integration ;)
16:51 Phlogi but it does not depend on kdelibs
16:51 Phlogi and it has a good architecture: core/client
16:53 Phlogi maholtz|WORK: are you interested? :)
16:59 maholtz|WORK @Phlogi: afaik i am using kopete on my linux client, but i do not use it often, so... is it integrated in kubuntu?
16:59 maholtz|WORK on windows i am using mirinad which is quite nice (imho)
16:59 Teague Hello everyone
16:59 maholtz|WORK äh... Miranda...
16:59 maholtz|WORK hi Teague
17:00 Teague is this the right place to ask a small question concerning typo3?
17:01 Phlogi maholtz|WORK: kopete + irc sucks... i guess it comes at least with next release.. but it should be very easy to get it...
17:01 Phlogi maholtz|WORK: or its already in
17:01 Phlogi Teague: of course... don't ask to ask
17:01 Phlogi maholtz|WORK: there is quassel for windows as well... standalone exe
17:04 Teague When I add a Page Content element like "Regular Text element" or "Text with Image" to my frontent site, the containing text is always colored black. Although i have CSS defined to color the text white. Now after looking into the src code of the html file, i see a <font ... color="black"> mytext </font> element was wrapped around my text. I tried to find a way to change the color e.g. with the rich text editor but found no such option. How can i change the
17:05 Teague Is there some kind of template file for each content record that i could manipulate?
17:07 Phlogi Teague: no, this is rte parsing specific... I think that should be in the rte docs
17:12 Teague ok thank you i'll check them out
17:14 iaj` lo there
17:14 iaj` is anyone using mailformplus in here?
17:15 maholtz|WORK @Teague: do you use css_styled_content as static template?
17:15 iaj` Im having bit of trouble... if I got sth like <td class="head" align="right">###ERROR_Vorname### Vorname * </td>
17:16 iaj` and got the ###ERROR_Vorname### defined at the TEMPLATE ERROR section, it should point out error messages shouldnt it?
17:20 Teague @maholtz no i dont think so, i have a static template where i want to enter text from a content record (Regular Text Element) at my defined marker section. The marker lies within a table cell which is styles by CSS. Now the problem is, that the text is not entered as is, but wrapped into a <font> element with its own styles which i cannot modify.
17:21 Teague And i have currently no clue where to disable or change this wrapping.
17:22 Teague now i tried to set $TYPO3_CONF_VARS['BE']['RTEenabled'] = 0;
17:22 Teague but it does not disable the RTE...
17:32 Mambo Hi everyone!
17:33 Mambo Anyone online?
17:38 maholtz|WORK @Teague: check your main TypoScript Template, there should be a setting for "static templates" and "static extension templates"
17:38 maholtz|WORK perhaps you are using sth. like content(default) and not CSS Styled Content?
17:39 maholtz|WORK @Teague: have an look into the database, is the <font>tag in there? i would assume not
17:40 maholtz|WORK btw.: perhaps http://wiki.typo3.org/index.php/Ts45min helps you to understand TypoScript
17:43 Conic maholtz|WORK: any idea how i could get the value out of the xml string?
17:43 Conic i think this should be possible with 1 line, but i'm missing the php knowledge and i can't find a general solution for that via google
17:49 Mambo Conic: I am currently working through the futuristic Template building tutorial and have reached a bug in the tutorial. Obviously lots of other people must have worked throu it too and managed to get it working. Any ideae where to look for FAQs etc?
17:50 Conic except google: no. what exactly is your problem?
17:51 Conic Mambo: maybe i know it...
17:52 Mambo I have reached section "Creating the dynamic menu" the point where the menu is inserted into the XML script.
17:53 Mambo I have copied the section menu_1 out of the tutorial and into the template setup script.
17:54 Mambo Nothing much aphappened as expected, because the XML was not yet updated, but when adding the reference to lib.menu_1
17:55 Mambo in Data Structure XML and view the page I get "Error! Page not found"
17:55 Mambo That's where I am stuck.
17:56 Mambo Any idea? I have repeated the process twice with the same result to exclude Typing mistakes, but no difference
17:58 Conic hm
17:59 Conic can you paste your TS?
17:59 hawkeye78 hello
17:59 Mambo Hi
18:00 hawkeye78 can someone help me with realurl? I have port a typo3 Project from one server to another and it don't work, on the "new" Server
18:00 hawkeye78 i have load the modul for the apache, i have create a .htaccess
18:00 Mambo Yes, I will try to get it out.
18:00 hawkeye78 and set AllowOverride All
18:01 hawkeye78 but typo3 found nothing, no css, no pictures and the links leads to 404 error
18:01 hawkeye78 and at the moment i have no idea
18:03 Conic Mambo: paste?
18:08 Mambo Conic: Can't find how to get it out at the moment
18:09 Mambo Conic: I could paste the code bits in question, if that helps?
18:10 Mambo Template setup:
18:10 Conic Mambo: no, paste.phlogi.net
18:10 Mambo conic what is that ?
18:10 Conic copy your code in there
18:10 Mambo ok
18:10 Conic then click "post now"
18:11 Conic and then give me the url of the page which loads then
18:15 Mambo Conic: Done : 1)+ 2)
18:15 Mambo Conic: 1) http://www.phlogi.net/f/t3/tsp/sp/template_setup/
18:15 Mambo Conic : 2) http://www.phlogi.net/f/t3/tsp/sp/xml_script_for_flexforms_in_te/
18:16 Mambo I guess 1) is fairly standard, but in 2) there was a slight difference of the template XML code I found to what was posted in the tutorial.
18:16 Conic ok the first one, what doesn't work there?
18:17 Conic didn't get your problem yet :)
18:17 Mambo I think it does work, but when I enter the reference to it in 2) I get Error! ...
18:19 Mambo In order to get the TS code executed I need to enter the reference "lib.menu:_1" in the XML Script for tempvoila. If I do that I get the error and no page displayed.
18:19 Conic do you want an element in your template to be typoscript, is that right?
18:19 Mambo Conic: I guess that the pagegeneration is aborted because of a php error. So the page doesn't exist
18:20 Mambo Conic: correct.
18:21 Conic Mambo: are you german?
18:21 Mambo Conic. how can I paste a screen shot?
18:21 Mambo yes, why?
18:44 miha hello i'm trying to display part of my page from outside php
18:44 miha it looks like it gets called but dont know how to write back
18:52 miha please?
19:09 ries pmk: what is Naymz ???
19:10 pmk ries: It's a network like Linkedin, but more spiffy :) It can import all your Linkedin contacts and invite them (which was what I did) when you join.
19:10 ries what is more spiffy about it??
19:11 pmk It looks like it has a lot of interesting features not found in Linkedin..
19:11 pmk and its more JS/Ajax based.
19:50 ries pmk: did you get any work out of it?
19:51 pmk I just joined it here today..
19:58 ries pmk: ever got work from linkedin?
19:58 ries I keep on getting requests from Indians to join Naymz
19:59 pmk I recently added info on my Linkedin profile about that Im seeking a new job.
20:00 pmk I got 3 joboffers after 2-3 days, so I LIKE linkedin. :)
20:02 ries pmk: well.. you are a TYPO3 guru... go figure!!!
20:02 ries nevrg ot work through linkedin though...
20:05 pmk You can't beat the Indians who offers to build a site for $99 :P
20:29 axel_foley hello @ all
20:30 axel_foley i am a mechanical engeneer and use php on a server.i can programm a little bit. but don't know how to add my own php-scripts in typo3?! is there an extension?
20:51 Conic lumophp include
20:51 Conic something like that
20:51 Conic don't know the exact name
20:52 Conic axel_foley: look here http://typo3.org/extensions/repository/view/lumophpinclude/current/
20:52 Conic we use that a lot, works fine...
20:54 Conic pmk: maybe you have a solution for my problem: http://pastebin.com/m71135df9
20:54 Conic i want to get the value out of line 6
20:55 Conic maybe with this function it could work http://typo3.org/fileadmin/typo3api-4.0.0/df/d32/classtslib__pibase.html#bfb0bc560ec7ab58d949df69afd149bd
20:55 Conic but i don't understand it
20:55 Conic do you have any clue? ;)
21:11 hawkeye78 hello
21:11 hawkeye78 i have a little problem with realurl i think
21:14 axel_foley Conic, thx
21:20 hawkeye78 what could be the reason that realurl don't work and leads by every link to a 404 error?
21:21 hawkeye78 AllowOverride All is set
21:21 pmk Conic: what are you trying to do?
21:22 pmk hawkeye78: have you enabled/configured the .htaccess file?
21:23 hawkeye78 yes
21:23 hawkeye78 and on another server it works well
21:23 hawkeye78 no problem at all
21:23 hawkeye78 that's why i think it must be a problem by the configuration of the webserver
21:27 pmk wrongly configured .htaccess is usually the reason for 404 errors.
21:28 pmk What about the rootid (set in the realurl config) is that correct. (Not sure if that changes anything)
21:29 hawkeye78 i have copy the .htaccess one by one
21:29 hawkeye78 but the roodid is not a bad idea
21:30 hawkeye78 but it don't find the css file too
21:33 pmk is baseURL set correct in your TS config setup? Any domain records? (if you copy a page with a domain record, the domain will be prefixed with a number, which can cause problem)
21:37 hawkeye78 yes the baseURL is correct i have check this first
21:37 hawkeye78 no domain records
21:37 hawkeye78 maybe something is brocken by the copy from one server to another
21:42 pmk that was what I had of ideas. (but im no expert when it comes to server setups)
21:43 hawkeye78 pmk, the part which i don't understand on the first look the working server and my testserver (which i try to get running) looks 100% the same
21:45 pmk try posting in the newsgroup. I think there's a special group for setup questions/problems.
21:46 pmk the "install" group looks pretty dead http://lists.netfielders.de/pipermail/typo3-install/
21:47 pmk so post in the english list.
21:48 hawkeye78 at the moment i play with the idea to delete the realurl extension and to reinstall it
21:59 hawkeye78 thanks for your help
21:59 hawkeye78 good bye
22:10 Conic pmk: sry was afk
22:11 Conic back again
22:11 pmk wat is it you are trying to do?
22:12 Conic pmk: i have this string which contains a little xml
22:12 Conic and i want to get the value out of this xml
22:13 Conic this is my var with the xml: http://pastebin.com/m71135df9
22:13 Conic in line 6 is the value i need
22:14 pmk is your xml is similar to the one used in the pages records?
22:14 Conic the xml comes from pages.tx_templavoila_flex
22:15 Conic this is the only place where the IDs of the CEs of a page are stored
22:15 pmk I wrote an ext a while ago that can extract values from the flex fields. (Its not on TER, as I haven't had time to finish it)
22:15 pmk http://forge.typo3.org/projects/show/extension-pmktsvoila
22:15 pmk it can return either the ids, or the CE's belonging to the ids.
22:16 pmk there's a limited manual in the wiki section.
22:17 Conic don't get it ;)
22:17 pmk currently it only works on the "pages" tabel, but when I get the time I'll add support for extracting FCE infos also
22:18 Conic don't understand... is it for getting the CEs when you know the Page ID ?
22:18 pmk yes, or from the current page.
22:19 pmk it returns the CEs for a specific TV column/field
22:19 pmk http://forge.typo3.org/wiki/extension-pmktsvoila
22:19 pmk it has 2 functions one for returning the ids and one for returning the CEs.
22:20 Underpointer hi
22:20 pmk I wrote it because I needed to access a specific TV column and feed the content through AJAX.
22:21 Conic do you do that via php?
22:22 pmk yes, but the function is called via typoscript. I guess you could call them from PHP as well by including the class.
22:23 Conic that sounds very interesting
22:23 Conic so again:
22:23 Conic you have the Page ID
22:24 pmk you can download the ext as a T3X file here: http://sourceforge.net/projects/typo3xdev/files/T3X/extensions
22:24 Conic -> and get a list with the CEs referenced on that page
22:24 Conic do you get that via tt_content.pid or via pages.tx_templavoila_flex ?
22:25 pmk not on the page, but in the specific TV column.
22:25 pmk tx_templavoila_flex
22:26 pmk its a pretty small ext. 25kb..
22:28 Conic ok, where can i download that?
22:29 pmk look at the links I posted earlier. you can download it either from the Forge SVN or as T3X file.
22:29 Conic i don't find a link there
22:31 pmk All the public ext at Forge gets conveted to t3x files once a week, and placed here: http://sourceforge.net/projects/typo3xdev/files/T3X/extensions
22:31 pmk search for pmktsvoila
22:31 Underpointer hi again, i got a question on translating "Link to External Url".
22:32 Underpointer Has anybody an idea how to translate not even the Nav-Point but also the link?
22:32 Conic pmk: 9 extensions start with pmk ;)
22:32 Conic nice job
22:32 pmk Underpointer: Not quite sure what you mean.
22:32 pmk Conic: I got 20+ on TER ;)
22:33 Conic n1
22:34 Underpointer i have a page from type "Link to external URL", but i have different urls for each language.
22:35 Underpointer If i translate this page, it is shown correctly in the right language in the menu, but i need to set a different Link for each language
22:36 thinabout_ hello, if I want to create a plugin an write something into the database created with kickstarter, what should I write into crdate, cruser_id?
22:37 pmk thinabout_: crdate = current datetime in unix timestampformat. cruser_id = id of BE user creating the record
22:37 pmk Underpointer: do you use the "one tree" multilang setup?
22:37 Underpointer indeed
22:37 thinabout_ pmk: but what if it's just the frontend, everyone, who is than the user?
22:39 pmk in the page_lang overlay (the localized fields you get in the 2nd lang) is there a field for the link, or is that the same as the one for the 1st lang?
22:39 pmk thinabout_> Set it to 0
22:39 Underpointer then i would use a fake user_id or create a be user called frontend_input, and use this id
22:39 thinabout_ pmk: thx underpointer: 0 is easier. :D
22:40 Underpointer yup 0 is easier, ;-)
22:40 sperber_ hm, is there a useful howto / docu for felogin?
22:41 Underpointer no there isn't a field
22:41 Conic pmk: u use exactly the function i didn't understand yet ;)
22:41 thinabout_ and timestamp is always set if their is a change?
22:41 thinabout_ tsstamp
22:42 Conic pmk: your extension does exactly what i was trying to do
22:48 Conic pmk: this function i don't understand: http://pastebin.com/m6bcbcfc7
22:48 pmk check the wiki on how to use it..
22:48 Conic no, i know how to use it ;)
22:49 Conic but i don't understand your code
22:50 Conic and when i understand how you pick the values out of tx_templavoila_flex then i've won ;)
22:51 pmk i use the templavoila API functions..
22:52 Conic yes, and $this->pi_getFFvalue is for searching out a value in an xml
22:52 pmk no, I just use plain "pi" functions.. and a t3lib_div function..
22:53 pmk $this->pi_getFFvalue(t3lib_div::xml2array($page['tx_templavoila_flex']), $flexField);
23:09 thinabout_ is there a function to validate user input?
23:34 Conic pmk: i think i solved it now
23:39 Shibbi i have problems with the ext ve_guestbook. it dosn?t appear in the IE
23:40 enmerkar Shibbi: as not in the html source?
23:44 Shibbi in the html source is just the div around the guestbook but without content in the div

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.