Search the website and IRC logs

#TYPO3 IRC log from : Wednesday 28 November 2007

Year: 2007 2008 2009 2010 2011 2012
Month: Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
00:31 Makumba hi all
06:58 xsebi mornin
08:02 tsrepadmin good morning #typo3!!!
08:03 tsrepadmin how can i set the mime_type with typoscript? instead of text/html it should be application/xhtml+xml, because I'm usind DOCTYPE XHTML 1.1
09:39 umc do you happen to know if you can add attributes to images that you add from the backend ? like usemap="#Map"
10:00 m0oman moo!
10:01 umc morning
10:05 pulponair goodmorning
10:12 umc morning pulponair
10:14 umc do you happen to know some good tutorials where they tell you how can you change elements of the template based on what page you are or something like this ?
10:15 umc with templavoila
10:19 toms Hi there
10:22 toms My page has three languages. One of them is arabic. If i enter arabic letters the RTE translates them to something like "&#XXX;". This is okay. THe headlines act the same. In my page the content is shown as arabic letters, but the headlines consist of "&#XXX;" (in Code "&#XXX"). How can I avoid this?
10:27 umc did you convert your site to UTF8 ?
10:27 umc maybe that's what you need to have it working properly
10:27 umc it's just a thought...
10:30 toms umc: Sounds good. Where can I get to know if I did?
10:31 umc if you don't remember, you probably didn't do it. wait a sec, I'll look for a link
10:31 umc it explains very nice how to convert the db, FE, BE
10:31 umc then you can write in whatever languages you want
10:32 umc probably not anchient chinese and korean, but I don't think that should be a problem :)
10:32 num000 hello
10:32 typo3user hi
10:33 toms umc: I even do not want to write in arabic, but my boss likes to ;)
10:33 typo3user i have a typo3 questions maybe someone can help?
10:33 umc http://www.typo3-media.com/blog/article/utf8-and-typo3-updated.html
10:33 toms typo3user: ask
10:34 umc it's a good tutorial. I managed to convert it
10:34 typo3user does somebody know a problem about using typo3 with ie6?
10:34 umc because I too use languages with weird characters...
10:34 umc mine are from latin2 though...
10:34 num000 i've used once the smoothgallery from just2b and there i had a image which had an arabic description, it worked great
10:34 Fanty I need to generate a link to the next page in the page tree from an extension - any nice function I could use for this purpose thus avoiding to write queries to get the ids I need?
10:34 typo3user especially the file upload in the backend
10:34 num000 umc which language?
10:34 umc romanian
10:34 num000 typo3 is very nice handling languages
10:35 typo3user when i use the function with ie6 the browser allways says: error: page not found. in ie7 and ff its working
10:36 umc ie is kind of retarded... :)
10:36 umc 6 more then 7
10:37 typo3user yes i know. but i this a ie6 problem? when i google for it, i get no results
10:37 typo3user it seems nobody has this problem
10:38 typo3user ( maybe cause all are using ie7 or ff )
10:38 umc in general, t3 should work with ie... but for special extensions and other 3rd party stuff, maybe it wasn't coded with all browsers in mind
10:38 num000 which extension for example?
10:39 typo3user i get this problem in the backend.
10:39 umc it was just an example. I don't have anything particular in mind
10:39 umc for me it seems to work fine
10:39 typo3user in the filemanager. wehen i want to upload a file.,
10:39 num000 typo3user can you explain again, i didin't read your problem above
10:40 typo3user when i use the ie6 and i want to upload a file in the backend (with the integrated typo3 filemanager), the ie6 says: error: page not found
10:40 num000 ohh ohh,
10:40 num000 this is not normal
10:41 num000 the backend has as far as i know nothing special and should work on any browser
10:42 umc did you tail the error logs and such ? to see if it's some bug that snuk in while you changed anything else...
10:42 num000 i don't have that browser here, but i'm sure it works on other
10:42 pulponair any ideas on how to replace a marker within a TS setup from within an extension?
10:42 typo3user i watch the error logs
10:43 pulponair i thought about flatting the TS array and performing a simple str_replace but i wonder if there are more elegant ways
10:43 num000 pulponair yes there is
10:43 pulponair num000:name it ! ;)
10:43 num000 you need to work with getSubpart(...
10:43 num000 etc.
10:44 num000 maybe you should read a documentation or an example for this
10:45 pulponair num000: dude you did not get me : TS setup aka this-conf is a array when adressed from an extension plugin. So using the the template functions wont work.
10:45 num000 pulponair, aren't you trying to replace ###MARKERS### from your t3 extensions in your php code?
10:47 pulponair num000: yes but i am not talking about an "html template" i am quite familiar to that substitutemarker stuff. What i need is to replace a marker which is placed in the extensions $conf. Wait i ll put up a sample
10:47 toms umc: Switching to UTF8 seems to be very tricky. I'm not sure if I like to try this. Only a very few pages use arabic language. Can I achieve what I like by something else than using UTF8?
10:47 umc don't know...
10:47 umc you can always take backups of everything
10:47 umc so if you screw up you can always revert the changes
10:47 num000 pulponair, maybe i didn't understand you. it did sound like replacing markers
10:48 pulponair num000: it is but it is not about replacing markers within a normal html template but within an array of unknown structur
10:49 num000 i don't understand with an array of unknown structur. maybe you have an example which we can look
10:51 toms umc: Well. Thank you so far.
10:53 pulponair num000: well i got some TS snippet shipping with my extension to render an image. Some parts of that TS snippet are set by the extension e.g. file etc. I want to provide the oportunity to "extension user" to change that "rendering object" in any kind. Therefor i can not use something like this : $this->conf['myImage']['file']=/foo/bar.gif since i do not know the structur of "myImage" (could be changed by the user). There for i thought a
10:53 pulponair over $this->conf['myImage'] and was looking for an elegant way to avoid traversing all "keys" by hand
10:54 pulponair num000: got me?
10:54 umc toms, it's really interesting... good to have utf8. it's gonna be by default in 4.2
10:54 umc with utf8 you really don't have to worry about languages not being shown properly
10:55 num000 pulponair i see, but i don't know unfortunately
10:56 pulponair num000: a very simple way would be something like $flat=serialize($this->conf['myimage']); $flat=str_replace(').....;$this->conf['myimage'] = unserialze($flat);
10:57 num000 you can use this, i don't think t3 has something for this
11:00 pulponair any hints on how to replace a certain value within a complex array of unknown structur? I want to avoid to traverse all keys "by hand" therefor i thought about somthing like : $flat=serialize($myArray); str_replace(....); $myArray=unserialize($flat). What do you guys think?
11:43 toms umc: I will bookmark the tutorial and keep it in mind. I found a solution which works for now. Thank you.
11:43 umc you're welcome
11:43 umc what solution did you find ?
11:44 toms umc: For the arabic language i set HTMLSpecialCharacter to 0
11:44 umc uhum. nice...
11:45 toms umc: Not really. I guess if I use special chars in arabic they will not work, but i do not intent to do so ;)
11:46 umc hehe :)
11:46 umc well... you'll know better next time you start a typo3 site
11:46 umc use utf8 and you won't have any problems
11:47 toms umc: The next time I start a typo page it will be 4.2 and problem is done ;)
11:47 umc :)
12:12 timof hi
12:15 pulponair num000: fyi i solved it that way and it is quite fast http://bin.cakephp.org/view/1287270211
12:25 num000 pulponair looks good, doesn't it
12:26 num000 i need to find out where tt_news is getting the weekdays translations from, since there are no translations for my turkish language here
12:28 dokma just switched to eclipse+pdt+xdebug. much more stable than dbg+phpeclipse+eclipse
12:28 dokma the later combination used to crash during long debug sessions
12:32 dokma I forgot the name of the function that generates the part of select query that excludes hidden and deleted fields
12:32 dokma can you guys remind me?
12:32 FloLeBlanc hi all
12:32 dokma hi flo :)
12:32 FloLeBlanc can someone tell me if IE wants to install quicktime on a certain page how I can find out WHICH element needs quicktime?
12:45 umc FloLeBlanc: did you try preventing it from installing it and see what element doesn't show up ? :)
12:45 umc maybe some embeded movie or something...
12:56 FloLeBlanc the problem is I don't see any element that wouldn't show up even when I compare it to FF :)
12:57 umc try removing them one by one... the simple process of elimination :D
12:57 umc see when the "install" dance stops
12:57 FloLeBlanc hmm seems I will have to.. tons of code there and images *sigh*
12:57 FloLeBlanc (I don't have any object or embed code)
12:57 FloLeBlanc thx for the hint cya later
12:57 umc good luck
14:16 dokma guys! where do I find the docs on TCA needed to setup my extension properly?
14:17 nature can anyone direct me to docs on how to deal with 'could not create database' install error?
14:18 nature (the ones i found in german are not helping me much)
14:29 ries nature: what OS ?
14:29 nature linux
14:29 nature fedora core 2 iirc
14:32 ries nature: does the account have enough right to create the database?
14:33 nature well i'm guessing no. it's my machine so i'm digging around trying to figure out that proper grant command
14:34 nature i created the database but i doesn't appear in the database menu
14:40 nature at this point of the install, it seems like typo3 is making an anonymous connect to the database. thus only showing databases that allow anonymous connects?
14:44 nature feh... seems like I opened a security hole doing it this way "grant all on t3_db.* to ''@'%'"
14:46 Provito nature, do this grant privileges on t3_db.* to 'typo3user'@localhost identified by 'yourpasswordhere';
14:46 Provito make sure you revoke the privileges of your previous command though :)
14:46 Provito don't forget to flush privileges; afterwards
14:47 nature yeah, revoke was a hot item to address
14:48 nature though i think the grant/revoke commands do the flushing as well
14:48 Provito well I run the command as a matter of course just to be sure
14:49 nature i had run this already "grant all on t3_db to myuser@localhost identified as 'mypass'" - but that wasn't allowing the db to show in the selection menu.
14:49 nature so the anonymous grant did the trick
14:49 nature now i revoke it and move on
14:50 nature (why I try this so early in the morning is beyond me)
14:50 nature thanks for the tip
15:16 num000 does someone know tt_news? i need to find out where tt_news gets the weekdays from. i would like to use it with a different language and this shows me english for weekdays. the rest is inthe needed language
15:21 num000 noone here who has an idea?
15:31 dokma num000: I've got those translated to croatian
15:31 dokma let me see how I did it
15:43 num000 dokma where is it sitting?
15:43 num000 dokma could you have a look which file contains the translations?
15:43 dokma still looking
15:43 dokma i think it is config.locale
15:44 dokma something like that
15:44 dokma did you import the translations?
15:44 num000 but not in the directory of the extension
15:44 num000 the translations for tt_news? no where and how?
15:44 dokma just a sec
15:44 dokma im on the phone
15:44 num000 dokma thank you
15:49 dokma still on the phone
15:49 num000 ok
15:49 nature so after i've installed and want to log into the admin section, 'admin' and 'password' are the default params?
15:50 nature (i picked the wrong day to stop sniffing glue)
15:50 num000 nature try it
15:50 nature i did
15:50 nature five times. checking my sanity level (that i can rtfm).
15:51 ries what is a good CSS editor on windows??
15:51 num000 vi
15:51 num000 vim
15:51 nature :)
15:52 nature reboot and install linux?
15:52 ries num000: vim is not a editor :D
15:52 umc num000: check out in the extension for tt_news, there might be some xml file with translations...
15:52 ries num000: just makes youa headache....
15:53 umc you might be able to add there info for other languages
15:53 num000 vi is not an editor?
15:53 umc sorry I can't give you more details, but I'm swamped
15:53 num000 umc well there are translation files, but i don't now the tags for the weekdays, they might be called different
15:53 ries num000: what plugin does vim has to give you proper hinting and validations on CSS files?
15:53 nature anyone know what table usernames and passwords are contained in?
15:53 num000 ries no validation, you can get highlighting
15:54 num000 you can use css validator from the net
15:54 ries num000: well, if vim cannot do validation of css files... then I don't call it a good editor for css files...
15:54 num000 ries are you expecting something different
15:55 num000 i have never seen editors specially for css which do more than highlighting
15:56 umc ries, maybe look for some eclipse plugins
15:56 num000 there is a small syntax check in vim
15:56 umc I use eclipse for editing all sorts of stuff
15:56 num000 maybe this helps you
15:56 ries num000: yes.. I expect a CSS editor be-able to give me hinting for values, do the validation and beable to attach itself or have a build in browser for real time chaning of CSS files and visually see the changes in real time.
15:56 num000 no, you can not do this with vim
15:56 ries num000: you should take a look at CSSedit on OSX....
15:57 ries But I need one for windows since some users in our team uses windows still...
15:57 flops hi
15:57 num000 you could configure vim to call a browser, but the css file will be cached and this won't help you
15:58 num000 but ries look at this eclipse plugin http://csseditor.sourceforge.net/
15:58 ries num000: I don't think that's good enough....
15:59 num000 sorry, i don't know more
15:59 ries num000: I think vim is nice to edit files on the server over ssh... But as a local development IDE there are better solutions
15:59 ries num000: no problem... that's what I currently wrote down :)
15:59 num000 let me know if you do find something usefull. i would love to look into it
16:00 mar77i lol
16:00 num000 pardon
16:00 flops anyone using the googlemaps api? i would like to use it for an extranet (only via login accessible). do you think that i have to get an "google maps for enterprise" key? or is this just for a system that doesn't have access to the google servers, like a intranet or a ?normal application
16:00 just2b flops i dont know but could be critical
16:01 flops hmm
16:02 flops should i try it and get an enterprisekey if google complains?
16:02 just2b yeah
16:02 just2b or read the website carefully again
16:03 flops To use the Maps API on an intranet or in a non-publicly accessible application, please check out Google Maps for Enterprise.
16:03 just2b you have a non-restricted area too?
16:03 flops no
16:05 num000 i can't find this translations
16:06 num000 this is unbelievable
16:06 flops OMG: Der Preis beginnt bei 10000 Euro
16:07 xat- :F
16:07 flops ok i think i have to look for a free geodata service....
16:08 just2b i guess it really depends what yo do
16:09 flops i just want to show a map with a pointer to a location, depending on a dbentry
16:10 just2b i would still do it with googlemaps
16:12 flops you mean try it with the free googlekey? and in case, turn this feature off? i think my customers don't want to pay 10K€
16:13 num000 umc, dokma could you find anything where these translations are sitting?
16:14 just2b yeah i would do so
16:15 flops mhm ok, i'll propose this to my customers
16:15 void just2b: i view your site now... but rgaccordion and rgaccordion2 links to same page
16:15 just2b yeah it is same ext but little bit different handling
16:16 mar77i hey where can I find out best about be-user groups
16:17 umc num000: look for some file called something like locallang.xml
16:17 umc for that extension
16:17 num000 umc i've this file of course,
16:17 umc might be in pi1 folder or somewhere
16:17 umc you've what ?
16:17 num000 but this file does not have anything about weekdays
16:17 num000 umc the file locallang.xml
16:17 void just2b: also i don't see v2 in the TER..
16:17 num000 and i don't now how the xml tags are going to be called
16:17 num000 hi void
16:17 void just2b: what is the difference?
16:17 void hi num
16:18 num000 void do you know where the tt_news weekdays translations are sitting? if in locallang.xml do you now how these xml tags are called?
16:18 just2b void: one handles all CEs of a column, the other only single CE
16:18 just2b check out the ecxamples
16:19 dokma num000: typo3conf/l10n
16:19 num000 ohh
16:19 dokma did you import translations via EM ?
16:19 num000 just german
16:20 num000 pardon and also turkish
16:20 dokma then they should be in typo3conf/l10n/de
16:20 num000 maybe the one i have is not up to date
16:20 dokma btw, for an easy finding of anything you can use this: grep -ir 'some translated term' root_of_T3_install
16:21 dokma if you are lucky to be on linux
16:21 num000 dokma i did a grep, but it found so much that i couldn't really use it
16:21 dokma you should take some very specific term
16:22 num000 dokma like monday friday? ;)
16:22 dokma ohh I was not thinking about dates
16:22 dokma but about location of tt_news translations
16:22 dokma dates have nothing to do with ext translations
16:22 num000 i did an update just, but the translations for german and turkish are all green, which means it is up to date
16:22 dokma they react to config.locale or something like that
16:23 dokma it's handled on the level of php amaik
16:23 num000 yes, most of the stuff do work for turkish and german but only the weekdays do not wlork
16:23 dokma yes, that is because they are handled separately
16:23 num000 ohhh i see, do you mean that i will have to set local_all
16:24 num000 i see, shit, of course they are managed by the server locales
16:25 num000 ohhh god, shit this is because of this bug, which even i reported http://bugs.typo3.org/view.php?id=6627
16:25 num000 is there no way to bypass at least the weekdays?
16:28 void i think no. rename all functions with 'I' to lower case?
16:29 num000 but then i even have to go to php level and start renaming all there
16:29 num000 this would even affect functions which i will maybe never use
16:29 num000 also i wouldn't be able to find out which functions these are
16:30 void yes..
16:30 dokma what a stupid bug
16:30 num000 and the problem is that php developers are not going to fix this till php 6
16:30 dokma a little bit of sed magic should do this in a few minutes
16:31 num000 windows php isn't affect
16:31 void php6 will not be very soon
16:31 num000 dokma, i think it won't be that easy
16:31 void 5.3 will be next release
16:31 num000 void yes, and this will also be affected
16:31 dokma it could be done like this
16:32 void that's bad
16:32 dokma find all occurences of function something
16:32 num000 even different character sets, far different from latin do work, turkish has only a few chars more and makes that much problems
16:32 dokma save all somethings
16:32 dokma and then do a global replace of all capital Is
16:32 dokma should be no more than a few minutes of work
16:32 num000 dokma, i can image your suggestion, but should i do a global replace of function calls which do include lowercase i character?
16:33 num000 i'm sure this will end up in a mess
16:33 dokma why should it?
16:33 num000 no it is not the capital I
16:33 dokma you are simply replacing uniqu identifiers
16:33 num000 it is the lower case i which makes the problem
16:33 dokma with different names
16:33 dokma lower case?
16:33 dokma I read upper case in the bug report
16:33 num000 look the problem is this, the lowercase i is in turkish not the latin uppercase I
16:33 dokma every function with capital I
16:33 num000 no
16:34 dokma ohh
16:34 dokma I missunderstood
16:34 num000 when capitalizing i it doesn't get to I it gets to I
16:34 dokma ohhhh
16:34 num000 sorry my irc client doesn't show it
16:34 dokma bogger
16:34 num000 imagin it is a capital I with a dot above
16:35 dokma yeah
16:35 dokma I remember that strange letter
16:35 num000 forcing lowercase i is not uppercase i which we know from latin
16:35 num000 here is a table http://webdesign.about.com/od/localization/l/blhtmlcodes-tr.htm
16:36 num000 dokma you are absolutely right if it would be a clear defined unique identifier, but in this case it is very common
16:39 Civiliste Hi! How can I get content item header field value from typoscript ?
16:40 Civiliste something like TSFE:id (which gives the current page id) but for content element and the "header" field
16:41 void Civiliste: for one particular content element?
16:42 Civiliste actually i'm trying to add a new frame option that wrap the content element with it's header name as id..
16:43 Civiliste So I added in the setup:
16:43 Civiliste tt_content.stdWrap.innerWrap.cObject.50 = TEXT
16:43 Civiliste tt_content.stdWrap.innerWrap.cObject.50.insertData = 1
16:43 Civiliste tt_content.stdWrap.innerWrap.cObject.50.value = <div id="{TSFE:id}">|</div>
16:43 Civiliste which works fine, but wraps obviously with page id, not content header
16:45 Civiliste (in the page config I added TCEFORM.tt_content.section_frame.addItems.50 = wrap with header as id)
16:46 Civiliste any idea, void ?
16:46 void one second..
16:46 Civiliste sure !
16:47 void use {field:uid}
16:48 Civiliste thx i'll try
16:53 Civiliste Thank you, void, it's working ! I'm using {field:header} to get the header instead of the uid. The solution seems simple but I couldn't figure it out reading the doc !
16:53 void np
17:14 dokma how do I fetch the id of the authenticated fe user from an extension?
17:18 flops dokma: $GLOBALS["FE_USER"]->user["uid"]
17:19 flops $GLOBALS['TSFE']->fe_user->user['uid']
17:23 flops bye
17:38 dino007 hallo leute
17:38 dino007 schreibt hier jemand deutsch?
17:39 pulponair dino007: die meisten aber das wird nicht gern gesehn, daher english
17:39 dino007 ich kann leider nich englisch
17:40 dino007 und ich komme nicht weiter mit meine typo3
17:40 just2b dann wirst du bei den dokus wohl verzeifeln
17:41 pulponair just2b: hi, btw
17:41 dino007 aslo mein problem liegt darin wenn ich die seite aufrufe www.xyz.com kommt nichts
17:41 just2b hi pulponair
17:41 dino007 aber wenn ich www.xyz.com/typo kommt die erste seite
17:42 just2b pulponair i nearly got blind today
17:44 dino007 wie kann so einstellen das wenn www.xyz.com aufrufe sollte gleich die erste seite erscheinen
17:45 just2b verschieb dein typo3 ins root
17:46 num000 just2b, sprichst dudeutsch?
17:46 num000 cool
17:47 num000 pulponair, du auch, deutsch
17:47 just2b klar, habs in meiner kindheit gelernt
17:47 num000 geht mir nicht anders
17:47 just2b pulponair kann auch ein bisschen
17:47 num000 ich finde es nur bemerkenswert, dass es so viele sind hier
17:48 num000 ich sollte mir mal die whois ansehen von den leuten
17:48 dino007 die ordner ist auf root
17:48 pulponair ja ich kann super deutsch
17:48 num000 dino007 das ist sicher nichts wildes, du musst es so verschieben wie just2b es dir gesagt hat
17:48 num000 heheh
17:48 mar77i peepz. chan regeln?
17:49 dino007 die inhalt oder die ganze ordner?
17:49 num000 mar77i dino007 can't speak english unfortunately, some nice guys helping him
17:49 mar77i lol regeln is no german word is it XD
17:50 mar77i u c?
17:50 num000 someone needs to help this guy before he gets desperate and leaves t3
17:50 dino007 Leute sorry echt aber ich kann kein english
17:50 num000 will someone help him with a query or a temporary channel?
17:51 mar77i wasn't there a german t3 channel?
17:51 num000 no
17:51 num000 not as far as i know
17:51 num000 mar77i let him speak german
17:51 num000 for a couple of minutes at least
17:51 just2b makes no sense for typo3 because i really know one guy who uses typo3 and cant speak english
17:51 num000 mar77i although german is a wonderful language, maybe you will learn a bit too
17:52 mar77i macht was ihr wollt. is eh auch für mich einfacher
17:52 mar77i XD
17:52 just2b ....
17:52 mar77i I only said, it's a chan rule.
17:52 num000 ;-)
17:53 dino007 ich bin jetzt schuld oder das ihr deutsch schreibt oder
17:53 num000 dino007 also beeil dich
17:53 mar77i rofl
17:53 dino007 ich kommen nicht weiter mit meine typo3
17:53 num000 dino007 geh in das verzeichnis und mache mv * -R ..
17:54 num000 das verschiebt den inhalt eine ebene hoeher
17:54 dino007 mit pytty oder
17:54 num000 ohh ohh
17:54 dino007 ok ich probiere
17:55 dino007 danke vielmals
17:55 num000 womit du das machst ist realtiv egal, du willst den inhalt von deiner /nichterwuenschtesverzeichnis
17:55 num000 eine ebene hoeher verschieben nach / also musst du mv nehmen
17:56 dino007 mv?
17:57 xat- mv = move
17:57 xat- move = verschieben
17:57 xat- :D
17:57 dino007 ok danke
17:58 dino007 die befehl ist so oder mv+ -R stimmt das
18:04 dino007 also leider geht nicht
18:05 mar77i "mv * -R .."
18:06 dino007 ich wechsel in der vercheihnis von typo3
18:06 dino007 dann gebe ich das befehl mv * -R typo3
18:06 dino007 kommt aber fehler meldung
18:07 num000 gott sei dank
18:07 num000 hoffentlich machst du dabei keinen fehler
18:07 num000 denn den wirst du nicht mehr korrigieren koennen so einfach
18:07 num000 oben hat mar77i es sehr ausfuehrlich hingeschrieben
18:09 dino007 es klabt trozdem nicht ich bin einfach zu blöd
18:09 mar77i ja. schreib ..
18:09 num000 dino007 es sind keine hellseher hier (ich hab noch keinen gesehen hier) schreib doch einfach die fehlermeldung hier her
18:10 mar77i .. = [parent directory]
18:10 dino007 also ich mache so
18:10 dino007 cd www
18:10 dino007 dann cd typo3
18:10 dino007 dann mv * -R typo3
18:11 dino007 und kommt fehler meldung
18:12 num000 ich weiss zwar nicht warum du typo3 verzeichnis bewegen willst, aber wenn du das unbedingt musst, dein befehl oben verschiebt alles was du hast in ein verzeichnis namens typo3 das muss nicht unbedingt klappen
18:13 num000 geh in das verzeichnis hinein schau es dir in ruhe mit ls an, dann entscheide dich, wenn du es bewegen musst und mach ein "mv -R * .." ohne anfuehrungszeichen
18:13 dino007 mein start seite kommt sonst nicht
18:13 num000 ich vermute die wird nie wieder kommen, wenn du ein paar mal hin und her verschiebst
18:15 num000 wenn du .htaccess kennst kannst du besser auch eine redirect regel schreiben
18:15 num000 ist vielleicht in deinem fall sicherer
18:15 num000 dann bleibt es physisch in dem verzeichnis, aber sie wird vom webserver umgelenkt
18:15 dino007 und wie bearbeiti ich das
18:16 questioner hallo i've a question about user-administration
18:17 num000 dino007 wenn du apache benutzt gibt es beispiele in der /etc/apache/available-sites verzeichniss, schau dir die an und passe dementsprechend deine an
18:17 dino007 ich bin bei webhostone
18:17 num000 questioner sorry, this is an english speaking channel, so don't wonder and ask your question
18:17 num000 k.a.
18:18 dino007 ok vielen dank
18:18 questioner i've added a new backend user, but he doesn't see the content elements and content on the right frame
18:18 questioner i gave him all permissions
18:19 num000 questioner, if the new user doesn't see the page tree it might be a problem of permissions on those pages, so go to the permissions web->access and set the proper permissions
18:19 num000 also you need to set DB mount point
18:20 questioner my first problem was, that the user didn't saw the filetree but then i changed the permissions and he see it
18:20 questioner but the content-elemtents are invisible
18:22 questioner are there different permissions for the content-elements?
19:28 dino007 leute ich habe geschaft vielen dank für eure hilfe!
19:29 dino007 ihr seit soo neeet
19:31 xat- jetzt aber
19:31 xat- :)
19:33 num000 cool
19:33 num000 dino007, typo3 community is cool
19:34 dino007 yes verycool
19:48 ilya211 Hi everybody. Please, help with advice. What developer's libraries are very poverfull and flexible in FE plugins development? And especially with ajax features.
19:50 ilya211 lib/div, api_macmade, ameos_formidable, wfqbe, or auxdataviewer? Which is better, well supported and developed?
19:51 just2b i am not sure if one of it got ajax... for that take an ajax lib
19:52 ilya211 xajax?
19:54 ilya211 I need two main features: 1) flexible data output and 2) ajax data manipulation. I use jQuery and Flexforms. Any ideas?
19:56 just2b just use a normal plugin anf your jquery
19:56 just2b to fetch data use eID if you need it fast, a 2nd page type if you need all cOBj
19:59 ilya211 Is it enough? Could you give some extensions for example? I don't understand how to build ajax link in kickstarter.
20:00 ilya211 There are xajax examples but I can't find jQuery sample.
20:02 just2b just search for eID, there is a demo ext too
20:03 ilya211 ok, thank you just2b
20:03 just2b np
20:52 tokam_on1 hi
20:53 tokam_on1 which ide you use for typo sciprt?
21:04 tokam_on1 ^^
21:20 tokam_on1 whats a nice ide for typo3 and typoscipt
21:36 num000 is it possible to add a single link to the menu with ts?
21:54 num000 void are you here?
21:54 void yes, me there
21:54 num000 ohh
21:54 num000 just one question, void i need to add a login link to a menu, can this be done with ts?
21:55 num000 adding a simple link to the existing menu
21:57 just2b depends where you want the link
21:57 num000 it is for my wap menu, so it doesn't matter actually
21:57 num000 on the normal pages i've a marker which i replace
21:58 void num000: make menu a COA and add link as a TEXT
21:58 just2b or make a prepend/append
22:00 num000 prepend append?
22:01 just2b with stdWrap
22:01 just2b 1.stdWrap.append = TEXT
22:01 just2b should work
22:01 just2b (1 = TMENU)
22:02 num000 where how does append then work?
22:06 just2b it is a parameter of stdwrap
22:06 num000 so if i did a 1.stdWrap.append = TEXT
22:06 num000 what would be the next step todo?
22:06 num000 lets say page with the id 20 is going to be called
22:06 just2b 1.stdWrap.append {
22:06 just2b value = link
22:06 just2b stdWrap.typolink.parameter = http://www.just2b.com
22:06 just2b }
22:10 num000 i've done this
22:10 num000 page.100.3 = TMENU
22:10 num000 page.100.3 {
22:10 num000 stdWrap.append = TEXT
22:10 num000 value = link
22:10 num000 stdWarap.typolink.parameter = http://dinc.org/index.php?id=38
22:10 num000 }
22:11 num000 but it doesn't work
22:11 just2b stdWrap.append.value
22:11 just2b stdWrap.append.stdWrap
22:11 just2b warap is wrong too
22:15 num000 is this correct stdWrap.append.stdWrap.typolink.parameter = http://dinc
22:17 just2b looks ok
22:19 num000 unfortunately it doesn't work
22:20 num000 just2b could you have a look here http://pastebin.com/d69f9f94
22:21 num000 this is the part for the wireless pages
22:21 num000 unfortunately it doesn't work as i've done it
22:26 num000 help ;-)
22:26 just2b sy was on the phone
22:27 num000 no problem, i've pasted a pastebin link above, i would be thankfullif you could have a look into it
22:28 just2b so no link but you see the 3rd level, right?
22:28 num000 i need a link to my login page which is one level below the main menulevel
22:28 num000 i could paste the whole ts if you want
22:28 just2b no thx
22:29 just2b why not a page.101 = TEXT =?
22:29 num000 mhhh
22:29 num000 i've no argument
22:29 num000 i'll try
22:30 num000 how exactly do you mean
22:30 num000 could you give me an example
22:35 just2b page.101 = TEXT
22:35 just2b page.101.value = link
22:39 num000 and this for the link parameter? page.101.parameter = http://
22:40 void 101.typolink.parameter = 111
22:40 void if you need to link to page number 111
22:41 num000 page.101.typolink.parameter = 111 didn't work, no link shown
22:42 num000 ahh now it did work
23:31 void just2b: as i understand, for tt_news i just need to make good template? or there is another way?
23:31 void good means with proper classes
23:36 just2b depends what you need

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.