Search the website and IRC logs

Search is currently not available.

#TYPO3 IRC log from : Thursday 20 May 2010

Year: 2007 2008 2009 2010 2011 2012
Month: Jan Feb Mar Apr May Jun Jul 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:11 james`` hi, i have a weird problem with tt_news
00:12 james`` i have a sysfolder called "data"
00:13 james`` and in this, there is a sysfolder with my news-categories
00:13 james`` and another one with my news-data
00:13 james`` so far so good
00:14 james`` now i would like to get these news by categorie at 3 different sites
00:14 james`` *pages
00:14 james`` page1: categorie A,B,C
00:14 james`` page2: categorie B
00:14 james`` page3: categorie C
00:14 james`` this is only working for one of these pages
00:15 james`` if i clear the cache
00:15 james`` the first page i open works
00:15 james`` eg: 1) clearcache 2) open page1 => page2 and 3 do not work
00:16 james`` eg: 1) clearcache 2) open page2 => page1 and 3 do not work
00:16 james`` eg: 1) clearcache 2) open page3 => page1 and 2 do not work
00:16 james`` any ideas?
00:34 bacardi_ what u think about joomla
00:34 bacardi_ ups sorry
00:34 bacardi_ wrong window
01:15 Fruchthoernschen hm
01:16 Fruchthoernschen Someone must tell me who I calculate the to spent up/in time for development ;)
06:10 lyhana8 hi, I'm trying to set up a typo3 on kubuntu, the install tool is in 123 mode and asking for db password
06:11 lyhana8 is this pwd the one for the db `typo3-database` ? Or a new one ?
06:49 Fruchthoernschen Knows someone why my creating proccess with tce does not create successfully the Pages with Titles?
07:40 lyhana8 hi, I complete the install process, and I'm asked a login/password
07:41 lyhana8 I tried the one from the DB but doesn´t work, how do I create it then
07:41 lyhana8 remember it's admin/password...
07:44 Fruchthoernschen hmm
07:44 Fruchthoernschen lyhana8, Where do you mean?
07:44 lyhana8 is your project aimed at IE user ? Cause the Backend office doesn't render correctly on my Firefox
07:44 lyhana8 Fruchthoernschen: that was the Back-end account
07:45 lyhana8 Fruchthoernschen: I'm trying to edit the admin account but doesn't find the save button :S
07:45 Fruchthoernschen for an fresh installation it is: admin and as Password: password
07:45 Fruchthoernschen lol
07:46 lyhana8 Fruchthoernschen: yep I remembered it when I see the user was 'admin` in the DB
07:47 Fruchthoernschen if you are logged in as admin you can use the Modulebar (left) and then preferences
07:48 Fruchthoernschen or LeftSIdebar (ModuleBar) click on Users (or BackendUSers called?) and then click there the pencil for the useraccount, at the top or at the bottom of the form of the user you can find the edit / update /save close .. at top are often small Icons like floppy-disks
07:50 lyhana8 oh~ I think the visual problem is due to missing images
07:51 lyhana8 yep, that images related
07:52 Fruchthoernschen oOOoO
08:48 maholtz|WORK morning
08:55 aterriblechaos good morning #typo3
09:02 bitcrusher hey guys
09:06 bitcrusher anyone know how to make the sitemap also show subpages? I can only make it show sections, which is really not what i want. Pretty weird i think
09:29 aterriblechaos bitcrusher: you can change "Menu of subpages to these pages" like here http://paste.phlogi.net/-7b52b6e287/
09:54 bitcrusher aterriblechaos: thank you very, VERY much for that :)
10:05 Fruchthoernschen hello ;)
10:09 ndee in a tmenu, is it possible for an external url to be shown instead of the typo3 version of the external url?
10:14 aterriblechaos ndee, have a look at http://www.typo3wizard.com/en/snippets/menus/external-links-and-shortcuts-directly-in-the-menu.html
10:54 ndee aterriblechaos: thanks :)
10:56 ndee another question: I have a page(register) with different sub-pages(different actions). The sub-pages should only be accessible if the user is logged in. But when I create a link, the link is not clickable for not-logged in users. Is it possible to create the link and if the user is not logged in, it just jumps to it's parent page?
10:59 Fruchthoernschen hmm knows someone an Solution for this: $GLOBALS['TSFE']->includeTCA(); t3lib_div::loadTCA($table); include Loads the Complete TCA but when then loadTCA() is called the complete already loaded TCA is overriden. working currently with the t3lib_tcemain Object.
11:22 pmk65 ndee: You can configure TYPO3 so that links to protected pages, redirects to a different page.
11:24 pmk65 I wrote a small JS snippet (jQuery) a while back that opens a dtmlbox with login form. Once the form is submittet, the user is redirected to the protected page.
11:25 pmk65 example -> http://pmk.dk.srv3.t3t.dk/test/
11:33 maholtz|WORK @pmk65: nice
11:33 maholtz|WORK how does the script knows, if the page is access restricted?
11:34 maholtz|WORK class?
11:47 pmk65 maholtz|WORK: No it checks for a special GET parameter on the link (My 1st idea was to add a class, but the hooks in the login procedure sucks big time, as you have to duplicate the entire login procedure, as only a few (useless) vars is passed to the hook.)
11:50 pmk65 to enable a special GET param on access restriucted links, you justadd this to your TS setup:
11:50 pmk65 config.typolinkLinkAccessRestrictedPages = 1
11:50 pmk65 config.typolinkLinkAccessRestrictedPages_addParams = &referer=###RETURN_URL###
11:50 maholtz|WORK cool
11:50 maholtz|WORK like it, didnt know that would be possible
11:52 pmk65 and the JS script -> http://www.pastie.org/969126
11:53 pmk65 line 5 of the JS script has a hardcoded ID value (20) which is a page where the loginbox is inserted. (the loginbox is then loaded into the popup usin ajax)
12:13 Phlunk3 can someone show me an example of how to do a distinct query in extbase?
12:18 Prot0 SELECT DISTINCT title FROM my_table WHERE 1 ORDER BY title LIMIT 0,1
12:18 Prot0 ?
12:26 coolguy hello there! is it possible to use a h3 tag for ce headings instead as h2 tags?
12:33 pmk65 coolguy: in your CONSTANTS, set content.defaultHeaderType = 3
12:33 coolguy is it possible via the TCADefaults too?
12:34 pmk65 yes, but that will only work for new CEs, not the existing ones.
12:36 pmk65 TCAdefaults.tt_content.header_layout = 3
12:39 coolguy ah ok it works. thanks. is it possible to use for some ce (e.g. heading) the h2?
12:39 coolguy so for normal ce's the h3 and for ce's of type "heading" h2 ... i mean ...
12:42 pmk65 then you'll have to redefine the lib.header object I think. (Not an easy task)
12:46 coolguy ok thanks
12:48 Sazzad hello
12:51 Sazzad Hello Everyone
12:51 Sazzad I am using tt_news
12:53 Sazzad but i want to show the latest news headline and its publish date and a link to its detail on the top of all pages ie. template
12:53 Sazzad how can i do that
12:53 Sazzad can anyone help me in this issue?
13:00 kraftb hello ...
13:00 kraftb anyone from munich here ?
13:00 Prot0 hey kraftb :)
13:00 kraftb hi Prot0
13:01 Prot0 nope vienna atm ;-)
13:01 Prot0 nice
13:01 Prot0 what you going to paris for?
13:01 kraftb I am on an InterRail tour ...
13:01 kraftb Will be heading to Paris first, then some days after to Lisbon.
13:02 kraftb I learn Portuguese since February
13:02 kraftb So now you are in Vienna and I am in Munich.
13:02 Prot0 :-D
13:02 Prot0 i guess no coffee then..
13:06 Phlunk3 can someone show me an example of how to do a distinct query in extbase? <-- via the repository with $this->createQuery() etc ofcourse.
13:06 kraftb Well. I usually drink no coffee. But if someone from munich is here he could play city guide and show me some Munich famous places
13:29 Prot0 hehe
13:36 Sazzad no one give answer!!!
13:40 Prot0 just modify the template
13:40 Prot0 lol
14:02 randomresult hi there
14:04 randomresult someone ever worked wit kb-TV-contentslide?
14:11 randomresult noone?
14:23 randomresult it is quiet in here :)
14:42 snf Hello
14:45 snf TypoConsult in Denmark has site called typotry.dk where you can try out TYPO3 for free.
14:45 snf They have a different backend layout than the default.
14:46 snf The Module Menu is in the top bar as drop down instead.
14:46 snf Does anyone here know if that is a setting or an extension - or maybe it's not something which is publicly available?
14:46 snf I know that they use modern_skin.
14:52 coolguy hi there. is it possible to fetch the last menu entry of an tmenu?
14:52 coolguy i need to add a different css class to it
14:53 pmk65 coolguy> use optionsplit and set a class on the menuitems
14:56 randomresult coolguy: linkWrap = <li>|</li>|*|<li>|</li>|*|<li class="last">|</li>
14:57 FloLeBlanc hi all
14:57 FloLeBlanc can someone please tell me how the loginbox provided with typo3 4.3.3 is told to use md5 hashing? I want to switch from newloginbox where everything works well
14:58 FloLeBlanc (no more updates, depreceated)
14:59 coolguy wow, it perfectly works! thanks a lot ;-)
15:01 notlistening Hi i am using the 4.4beta2 version of typo and can't seem to be able to upload any files is this a known issue?
15:03 notlistening The dialogue come up then everything is frozen I can not click cancel upload and clicking on select files does nothing
15:04 notlistening can not even close it :(
15:13 notlistening Right with flash turned off uploads are okay
15:22 jbaptiste_j hello
15:28 pmk65 FloLeBlanc: kb_md5fepw should work with felogin extension.
15:39 FloLeBlanc pmk65: thank you I realised I forgot to install the extension - didn't know there are TWO native login boxes :(
15:46 FloLeBlanc does someone know if felogin does provide any hooks? I can't seem to find a manual
15:47 notlistening Couldn't find a Data Structure set for table/row "pages:77". nice the typo3 learning curve is steep :D
15:48 notlistening trying to use TemplaVoila but not sure i am doing it right atttttt all
16:00 Prot0 FloLeBlanc: open the pi files etc and look for 'hook' AND 'SC_'
16:00 Prot0 ;-)
16:00 Prot0 that usually works for me if the manual fails heh
16:00 FloLeBlanc prot0: i did... no hooks for me *sigh*
16:00 FloLeBlanc I'm a bit puzzled on what to do now... stay with the old "hacked" version, hack the new one too? all not too tempting :(
16:01 Prot0 you could XCLASS it
16:01 FloLeBlanc hm?
16:01 Prot0 :-)
16:01 Prot0 thats the clean way of hacking it hehe
16:01 Prot0 what do you want to do with felogin?
16:02 FloLeBlanc we use registration confirmation via SMS, I want to provide a box for "forgot password" where the user can enter his cellphone number to have it sent to him/her
16:03 Prot0 hm
16:03 Prot0 i see hooks in felogin
16:03 FloLeBlanc yeah there are 3, but none of them serves my purpose (password forgotten)
16:03 pmk65 FloLeBlanc: There's several hooks in the felogin ext..
16:04 FloLeBlanc after login, JS functions to encrypt pw when logging in, actions after logout
16:04 FloLeBlanc these are the ones I could find
16:04 Prot0 3 yes :-)
16:04 pmk65 "forgot password" doesn't really have anything to do with the login. Create your own "forgot pw" ext, and simply insert a link in the felogin html template.
16:04 FloLeBlanc hmm thought about that too, you are right pmk65
16:05 Prot0 true :-)
16:09 pmk65 it looks like the build-in "forgot password" of felogin is broken. -> http://bugs.typo3.org/view.php?id=13652
16:09 pmk65 So thebest solution would be to make your own.
16:10 FloLeBlanc I wonder if there is actually a real good reason to upgrade regarding the bug :)
16:11 FloLeBlanc the history doesn't say anything about a security problem hmm
16:14 FloLeBlanc thank you for the link pmk65
17:43 Denyerec2 hey guys
17:43 Denyerec2 having a real problem with a html charset issue
17:44 Denyerec2 no matter what I do, the page is being served as UTF-8 not Latin1
17:44 Denyerec2 For various reasons I am trying to force Latin1.
17:44 Denyerec2 I have tried META tag, htaccess, hhtpd.conf and php.ini
17:44 Denyerec2 but the page is always served as UTF-8 no matter what I try
17:45 Denyerec2 Anyone got any other suggestions as to where I could look?
17:47 Denyerec2 Ok, someone had snuck a header() call into an includedl ibrary
17:47 Denyerec2 I'll kill them when I find them.
18:09 maholtz|WORK @Denyerec2: have to leave, but perhaps test a pur html-file and a pur php-file without using TYPO3...
19:02 ironm Hello gentlemen - I have some problems setting up realurl with multi_domains and multi_languages within the same typo3-treee. For some reason I am getting the URL double in the menu links (like: http://www.domain-xyz.com/www.domain-xyz.com/produkte/). I have checked google etc incl. all the papers from Dupolev and others but didn't get any solution. Do I have to change the TS code for menus when moving to the a multi domain / language
19:02 ironm environment? .. see the config below. Thank you in advance for any hints :-)
19:05 ironm the config: realurl_constants.txt http://paste.phlogi.net/realurl_const/ - realurl_conf.php: http://paste.phlogi.net/realurl_confphp/ - Language definition: http://paste.phlogi.net/language_definition/
19:07 ironm the site have three languages: german, english and french BUT only two domains (.com and .ch)
19:07 ironm has
19:31 ironm hi antichris ;-)
19:31 antichris hi
19:33 ironm are you familiar with the realurl setting antichris ?
19:56 ironm Hello gentlemen - I have some problems setting up realurl with multi_domains and multi_languages within the same typo3-treee. For some reason I am getting the URL double in the menu links (like: http://www.domain-xyz.com/www.domain-xyz.com/produkte/). I have checked google etc incl. all the papers from Dupolev and others but didn't get any solution. Do I have to change the TS code for menus when moving to the multi domain / multi language
19:56 ironm environment? .. see the config below. Thank you in advance for any hints :-)
19:57 ironm the config: realurl_constants.txt http://paste.phlogi.net/realurl_const/ - realurl_conf.php: http://paste.phlogi.net/realurl_confphp/ - Language definition: http://paste.phlogi.net/language_definition/
19:57 ironm the site has three languages: german, english and french BUT only two domains (.com and .ch)
20:32 aterriblechaos ironm: did you try to add http:// to 'urlPrepend' => 'www.domain-xyz.ch' ? according to manual you need it
20:33 ironm hi aterriblechaos .. I didn't I mean .. I will check it .. thanks a lot! :-)
20:40 ironm aterriblechaos: should I use for english:'lang'=>'en' OR just 'lang'=>'gb' ... in realurl_conf.php?
20:44 aterriblechaos ironm i dont think you have to set the lang getvar at all
20:45 ironm hmm ... I can comment this line out
20:49 ironm aterriblechaos: what about:
20:49 ironm page.config.prefixLocalAnchors = all
20:49 ironm $GLOBALS['TSFE']->anchorPrefix
20:50 ironm is such setting the right one for a multidomain / multilanguage seite aterriblechaos ?
20:50 ironm site ..
20:50 aterriblechaos prefixLocalAnchors only configures anchor prefixes its ok.. $GLOBALS['TSFE']->anchorPrefix will do nothing, its php
20:52 ironm ok .. tnx :)
20:52 ironm I am editing now some files changing the config to only two languages (en/de) .. will test it in few minutes
21:33 ironm aterriblechaos: adding "http://" to --- 'urlPrepend' => 'www.domain-xyz.ch' --- helped to get correct value of menu-links :-)
21:34 ironm thank you very much aterriblechaos
22:03 ironm aterriblechaos: still around? .. one question: is [globalVar = GP:L = 1] a current value or just the value of the language code for the link (like sr_languagemenu)? How I could "jump" to another domain? .. like from .ch (de) to .com (en) using the language menu
22:20 ironm One question: is [globalVar = GP:L = 1] a current value or just the value of the language code for the link (like sr_languagemenu)? How could I "jump" to another domain? .. like from .ch (de) to .com (en) using the language menu
22:24 aterriblechaos ironm: i did never a realurl, but did you try a hmenu with .special=language ?
22:24 aterriblechaos [globalVar = GP:L = 1] matches the value of get var named L
22:25 ironm my problem is the value of language links to achive the jump to another domain ..
22:26 ironm I have to check .special=language ..
22:30 Fruchthoernschen check for domain names also with typoscript?
22:30 Fruchthoernschen see http://tsref.de
22:30 bacardi__ hi
22:32 bacardi__ i try to install flow3 , but what package under debian i must install for .yaml files?
22:33 bacardi__ hi ho fruchthöschen
22:39 bacardi__ ?
22:39 bacardi__ sos help
22:39 bacardi__ Mr. HardPhuck
22:39 bacardi__ u are my master of disaster
22:39 bacardi__ :)
22:40 Fruchthoernschen lol
22:40 Fruchthoernschen I don't know
22:40 bacardi__ hi fruchthöschen
22:40 Fruchthoernschen Fruchthörnschen ;)
22:40 Fruchthoernschen aber das ist auch falsch ;) Fruchthörnchen war richtig
22:40 bacardi__ or Fruchtzwerg :)
22:40 Fruchthoernschen hehe
22:41 SparFux Hi. On my typo3 debian installation, I get a database error. It says "The current username, password or host was not accepted when the connection to the database was attempted to be established!"
22:41 Fruchthoernschen lol
22:42 Fruchthoernschen SparFux, check your database server mysql for runing, and check the username also the related password. see phpmyadmin..
22:42 bacardi__ hmm sparfux schau mal in die config ob da alle databank einträge drin stehen
22:42 SparFux bacardi__: ok.
22:42 bacardi__ bei mir hat er die auch mal n icht komplett in die config geschrieben
22:43 SparFux bacardi__: hm... ja, sieht so aus.
22:43 SparFux basepath, dbserver und dbport sind empty values.
22:43 loopy englisch please, see topic
22:43 SparFux loopy: sry.
22:44 SparFux in my typo3 config in debian sid, I have empty basepath, dbserver and dbport.
22:44 SparFux does that cause the database errors?
22:44 bacardi___ have u
22:45 bacardi___ typo_db_username / typo_db_host / typo_db=
22:45 bacardi___ on localconf
22:46 SparFux bacardi__: yes: $typo_db_username = $dbuser;
22:46 SparFux $typo_db_host = $dbserver;
22:47 SparFux I purge and reinstall...
22:47 bacardi___ and typo_db_password= ?
22:48 SparFux $typo_db_password = $dbpass;
22:48 bacardi___ hmm also alles vorhanden
22:49 bacardi___ da muss ich passen
22:49 SparFux did sudo aptitude purge typo3-database typo3-dummy
22:49 SparFux I purged and now I am going to reinstall.
22:49 SparFux before, dummy and database packages did not seem to get purged...
22:49 bacardi___ kann man wohl nicht vergleichen , spar fux
22:50 bacardi___ i use 4.4 beta2
22:50 SparFux and on previous installs I gave wrong admin password for mysql.
22:50 bacardi___ direct install via wget and unzip
22:50 SparFux ok.
22:51 SparFux hm...
22:51 bacardi___ aber typo3 is schon nen krampf das zu installieren
22:51 bacardi___ ich hab 6-8 wochen gebraucht
22:52 bacardi___ typo3 is very unfriendly to install i think
22:52 bacardi___ i need 6-8 weeks to install it sucessfully
22:53 SparFux ok. :-)
22:53 bacardi___ i think the install tool could be more information whats wrong is on settings
22:54 SparFux installation gets done by the pros. It's more important to be easy to use in all day production :-)
23:03 bacardi___ is a german backend for typ 4.3 aviable ?
23:03 ironm bacardi___: there are also some issues with "old" extensions .. they don't work correctly with php 5.3 .. like sr_feuser_register, sr_freecap etc ...div2007
23:04 ironm sure .. you can set german von your BackEnd
23:04 ironm of you BE ...
23:06 bacardi___ i use 4.4 and wait for german files
23:06 bacardi___ what i need for flow3
23:06 bacardi___ what are .yaml extensions?
23:06 SparFux bacardi: let's put it that way. I ndebian sid, my backend is german.
23:06 SparFux and it is 4.3
23:07 SparFux what dbc_authmethod_admin shouldI use? password?
23:08 SparFux bye all. /me going to bed :-\
23:10 ironm gn8 SparFux
23:12 bacardi___ i see
23:12 bacardi___ he have same problem
23:12 bacardi___ as me no one helps no support
23:12 bacardi___ nothing
23:12 bacardi___ geduld sparfux
23:13 bacardi___ pls ask more times to oher times
23:13 bacardi___ to get help
23:13 bacardi___ i think someone somethere sometimes can help u
23:13 bacardi___ dont give it up
23:20 ironm hoi ndee ;-)
23:25 bacardi___ overflow
23:25 bacardi___ someone have installed flow3 sucsessfully?
23:53 ironm don't give up bacardi___ ;-)
23:54 ironm I didn't try to install flow3 until now ..
23:54 ironm only typo3 4.3.3 and 4.4b2
23:56 bacardi___ i hope sometimes there comes a german backend
23:56 bacardi___ for 4.4
23:57 bacardi___ what u think about joomla
23:57 bacardi___ or contrexx
23:57 bacardi___ ironm
23:58 ironm yes :-)
23:58 ironm well .. no joomla ... I don't know contrexx
23:59 ironm have you tested german backend for typo3 4.3.3 bacardi___ ?
23:59 bacardi___ contrexx is a cms made in swiss

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.