Search the website and IRC logs

#TYPO3 IRC log from : Thursday 15 January 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:40 Rialto hello
00:40 Rialto i'm new ans i have a qustion
00:41 dinsdale07 go on, If I know it I will help Rialto
00:41 Rialto ok thank you
00:41 dinsdale07 ckuhn, you can export a pagetree as a .t3d file and import it in a new installation
00:41 dinsdale07 ckuhn, just click on the icon in the page tree - more option - export as .t3d
00:42 Rialto i want to do a website like this http://www.outsourcing-land.com/village-solutions-pour-call-center/salon.php?ident=2521&comp=cpt
00:42 Rialto it is possible to this with typo3?
01:09 lynucs hi
08:06 coolguy hi there! is it possible to get the first creation date of a page?
09:03 maholtz|WORK morning
09:05 PiMB moin
09:50 beli moin
10:05 PiMB can anybody tell me why I have a lot of whitespaces in front of my first declaration?
10:10 maholtz|WORK you mean befor xml-prologe in html output?
10:15 PiMB or before <!DOCTYPE html (but there it doesn't give a problem)
10:15 PiMB I have a site with a lot of whitespaces before the first tag (about 9 new lines and a couple of spaces)
10:17 Nitjuh hi i have a small question
10:17 Nitjuh how can i deleted the table of a content element filelink
10:18 maholtz|WORK @PiMB: usually there are extensions included, which has before <?php and or after ?> newline and spaces
10:19 PiMB I read about it indeed
10:19 PiMB I will check this.
10:19 PiMB thanks maholtz
10:22 PiMB @nitin: the table for the filelink element is embedded in the pi1 class of css_styled_content.
10:22 PiMB but why do you want to delete this?
10:27 Nitjuh @PiMB because my client want's it :P
10:31 PiMB if you use css_styled_content it's not really possible without hooking or changing class
10:34 maholtz|WORK he should be able to overwrite the rendering in tt_content * with own user-func or typoscript
10:50 _pedda_ hi all
10:50 beli hey pedda
10:54 _pedda_ :)
11:24 _pedda_ does anyone know how to address a special browserversion via ts condition ?
11:24 _pedda_ i have the problem that in my ie7 v 7.0.5730.13 everything looks fine
11:25 _pedda_ but my customaer has ie7 v7.0.5730.13IS and some css declarations seem broken or misinterpret
11:26 _pedda_ i already tried something like [browser = msie] && [version = 7.0.5730.13IS] but this does not work
11:26 _pedda_ ist there a possibility to do this via php ?
11:27 _pedda_ i tried to find out how far a browserversion is told the server by the user visiting a website
11:28 _pedda_ it seems as if 7.0 is the only information the server gets told
11:29 TaucherMK _pedda_: You should try to fix this without triggering the user-agent-version
11:29 beli right
11:29 beli adjust your css
11:29 _pedda_ i know
11:30 _pedda_ the template's searchbox makes some problems.. i will replace it with a jpeg completely
12:48 _pedda_ tPl0ch:
12:59 fred^^ Hola
12:59 fred^^ Is there anything better than the current file browser
13:00 fred^^ Picking for example images is a little painful
13:01 HardPhuc quixplorer
13:13 pmk65 Does anyone know if there exists an extension where a FE user (project manager) can manage FE group access for other FE users (project members) ?
13:14 maholtz|WORK re
13:38 HardPhuck hey maholtz|WORK
13:38 m4rtijn wb maholtzi
13:38 maholtz|WORK hi
13:39 HardPhuck guys if i make a small FE self registration plugin
13:39 HardPhuck are there any security precautions
13:40 HardPhuck or can i add a form which will be filled, and a small captcha thing
13:40 HardPhuck like username and pass and captcha string and thats it
13:42 m4rtijn md5?
13:52 Trumpf Hello
13:52 Trumpf Is there no info about the T3DD09 out??
14:05 pmk65 Does anyone know if there exists an extension where a FE user (project manager) can manage FE group access for other FE users (project members) ?
14:28 nkuttler err, any quick ideas why th_mailformplus doesn't accept unicode input?
14:33 nkuttler hm, some reports about 4.0.12 breaking..
15:06 nkuttler is there a source for older versions of extensions?
15:07 nkuttler hm, i guess mailformplus should be in svn somewhere
15:08 HardPhuck anyone tried chgallery
15:09 HardPhuck can't seem to make it work with perfectlightbox
15:10 theconic Hi all, anyone an idea how to check a file whether it exists or not? (with TS)
15:10 theconic i know i asked this many times before, but until now noone had an idea :(
15:11 maholtz|WORK if its an image, you could use imgResource
15:13 maholtz|WORK make an image of it - if you get one, true - else false. but does not work with files, which could not be converted
15:13 theconic in my case i need to check PDFs
15:13 maholtz|WORK or you can use filelist
15:13 maholtz|WORK could work, but...
15:14 maholtz|WORK perhaps the easiest way will be writing an extension with an hook for stdWrap and use it there
15:15 theconic my problem is that i understand TS now, but wouldn't know how to write an extension
15:15 maholtz|WORK ok, well you could use filelist and LOAD_REGISTER to do that
15:16 theconic filelist or filelink?
15:16 maholtz|WORK filelist
15:17 maholtz|WORK page.10 = LOAD_REGISTER
15:17 maholtz|WORK page.10.fileexists.filelist = ...
15:17 maholtz|WORK page.10.fileexists.split {.. }
15:17 maholtz|WORK in split us if to check if that is "your" file
15:17 maholtz|WORK only if its the same you output it to the register
15:19 theconic what is page.10.fileexists?
15:19 maholtz|WORK the name of the register
15:19 maholtz|WORK you can use it then: page.20 = TEXT page.20.data = register:fileexists
15:21 theconic ok, let me take some time to work myself through the code, back in some minutes but thanks so far ;)
15:29 pmk65 theconic: You could also write a small userFunc (the step before making a full extension) and then calle the userfunc from your TS code.
15:32 Sebastan hello. Im using sessionarray through $GLOBALS['TSFE']->fe_user->setKey('ses', 'thisbuy["specialwindow_1_or_roofwindow_2"]', '2'); and have a couple of vars in thisbuy["differentvars"]. So thisbuy will be the mainarray... How can I take out all thisbuy[""] from session array again? Setting them to a emptystring will not erase the key itself...
15:32 maholtz|WORK @theconic: i give a +1 for pmk65's solution. (because the result will be perhaps easier to use)
15:33 jbaptiste_j Greetings, i have just installed TYPO3 4.2.3 could you suggest the best document (web, pdf, book...) for me to learn how to create a template from scratch in french or English language.
15:38 m4rtijn modern template building tutorial from the typo3.org website
15:38 HardPhuck ugh i hate firefox
15:38 HardPhuck but i need it :(
15:39 HardPhuck guys i need a simple gallery with albums and singleview, which one do you recommend
15:42 jbaptiste_j thank you m4rtijn but I'd like to start without templavoila, first
15:42 nkuttler HardPhuck: i use that goefbook thing on one site, was the least sucky last time i checked. but i _need_ a gallery that works recursively through dirs, there are better ones out there if you don't need that feature
15:42 nkuttler goef_photopoek iirc
15:42 nkuttler boek
15:43 HardPhuck well i'm trying chgallery but slowly giving up as it won't give me a single view
15:43 HardPhuck dunno where i'm missing something
15:48 HardPhuck okay, single view works now, the only thing left is to configure it with a lightbox
15:49 m4rtijn jbaptiste_j - r u german.. or do u speak german/
15:49 jbaptiste_j no sorry I can Kein Deutsch
15:50 m4rtijn mmk.. I have a german TV intro
15:51 ddoesburg m4rtijn: Is that interesting? You mean a kind of interview on TV?
15:53 ddoesburg jbaptiste_j: Follow the suggestion on http://typo3.org/documentation/document-library/
15:54 jbaptiste_j thank you I'll read and bookmark that page
15:54 ddoesburg You can easily skip FTB (=TV)
15:54 maholtz|WORK @jbaptiste_j: http://www.acqal.com/a/article/getting-help-with-typo3-98.html
15:58 m4rtijn jbaptiste_j - no its an introduction into TV
15:58 unbob1 Hey! Often I have som content that applies for all subpages of my site, like a footer-text. I use templavoila, and I'm just wondering how I can make elements apply to all subpages, and still editable by users.
15:58 unbob1 *how I can make elements that apply to all subpages
15:59 unbob1 what is the best way to do that?
15:59 m4rtijn content - text or images?
16:00 pmk65 unbob1: create those elements on a special page/sysfolder. Then create a TS object (CONTENT) that reads those elements and displays them.
16:00 unbob1 m4rtijn: anything, really
16:00 unbob1 standard content elements
16:00 HardPhuck ugh anyone using chgallery?
16:01 m4rtijn nope hardfuck
16:01 m4rtijn erm.. phuck
16:01 HardPhuck crap.
16:01 pmk65 for theconic, a simple userfunc for checking if a file exists or not: -> http://pastebin.com/m3733525
16:01 HardPhuck i have a strange problem, the lighbox won't work on gallery view, but when i click the single view it does... strange
16:02 pmk65 HardPhuck: Do the page show any javascript errors?
16:02 HardPhuck nope
16:02 HardPhuck the effect works
16:02 pmk65 And does the galleryview images have the correct "rel" attributes?
16:02 HardPhuck it just that plugin won't apply rel="" to the image
16:03 unbob1 pmk65: thanks, guess I can make that work :)
16:03 HardPhuck but when the single image is opened, it has rel attr
16:03 pmk65 most likely , you need to specify the rel attribute for listview in some other part of the config.
16:03 HardPhuck yes i'm searching
16:04 pmk65 And if you want the listview lightbox to use next/previous, the rel attribut needs to be a bit different
16:05 HardPhuck well i need it to get working first
16:07 pmk65 Does anyone know if there exists an extension where a FE user (project manager) can manage FE group access for other FE users (project members) ?
16:14 HardPhuck never heard of an ext when one FE user can manage another
16:14 theconic to all who tried to help me before with my "chek file" problem:
16:14 theconic I solved it
16:14 maholtz|WORK how?
16:15 theconic pmk65 sent me the solution with creating a user func
16:15 theconic this i will test later, hope it wirks, too
16:15 theconic works
16:15 theconic but i had my own idea now ;D
16:16 pmk65 The desc of this ext says it can be used for a FE user to manage access for other FE users -> http://typo3.org/extensions/repository/view/so_projectgroups/current/
16:16 theconic if you use 10 = IMAGE and 10.file = fileadmin/image.jpg ...
16:16 pmk65 Unfortunatly it's a piece of useless crap without manual.
16:16 theconic then it returns <img ... /img> if the image exists and an empty string if it doesn't exist
16:16 pmk65 I tried installing it, but just got a lot of sql errors
16:17 maholtz|WORK @theconic: use IMG_RESOURCE instead of image - returns only the image itself
16:17 maholtz|WORK well, ok makes no difference
16:18 theconic and like this... http://t3paste.org/qDZcyU
16:18 pmk65 theconic: I don't think that will work if your file is a pdf file. Then it would just translate the 1st page of the pdf, into an image.
16:18 maholtz|WORK would work, because he only needs to know, if there is a pdf file
16:18 theconic pmk65: no, it doesn't ;) it returns an empty <img /> tag
16:19 theconic and this is enough for an if.isTrue
16:19 pmk65 maholtz|WORK: you are correct. If he just uses the return value for checking. :)
16:19 maholtz|WORK but, i think the userFunc solution would be a little bit nicer:)
16:19 maholtz|WORK but it works *g*
16:19 theconic of course the value itself is useless, but it switches the isTrue ;)
16:20 theconic right, the userfunc is much "correcter", but with my solution the if clause needs only 3 lines
16:21 maholtz|WORK and it creates images!
16:21 HardPhuck finally, done the single view
16:21 theconic no, it doesn't !?
16:21 maholtz|WORK it does
16:21 HardPhuck some confusing properties in teh flexform
16:22 theconic why does it create images?
16:22 maholtz|WORK @theconic: they are put to typo3temp/pics afaik
16:22 maholtz|WORK they are created - but not shown anywhere
16:26 theconic er, i searched the whole typo3temp/pics and found no picture that was created today...
16:26 theconic possible that t3 doesn't try to create an image out of a file that has an unknown format like "pdf" ?
16:27 theconic because normally t3 creates the image and links to it in the image tag
16:27 pmk65 pdf is not an unknown image format.
16:27 maholtz|WORK well, perhaps it is not created, because you didnt change width and height
16:28 theconic but this time the src="" of the image is empty
16:28 pmk65 If you use a pdf as image, it will extract the 1st page of the pdf and turn that into an image.
16:28 theconic IF t3 can handly pdfs...
16:28 theconic what it can not do itself
16:29 theconic only with GhostScript
16:29 theconic and this i haven't installed
16:29 pmk65 it will still try to convert it, even if you doesn't have ghostscript installed
16:29 theconic so i think t3 just returnes the empty img tag as the result
16:29 theconic but it doesn't create a file in typo3temp/pics
16:31 theconic i think it aborts when realizing that this makes no sense ;)
16:31 theconic by the way: the posted TS works fine, i tested it
16:33 dinsdale07 Has anyone experience with online payment systems + TYPO3? Any comments - suggestions?
16:38 maholtz680 re
16:41 m4rtijn I have one dinsdale07
16:41 m4rtijn but.. its a rly simple solution :p
16:41 dinsdale07 I like simple m4rtijn :-)
16:41 m4rtijn .. k..
16:42 m4rtijn its fe_user registration which on registration sends an email to my customer... in auto-reply function at customers pc recognizes the subject and sends an email back with the account details of his bank..
16:42 m4rtijn hehe
16:43 m4rtijn if the payment arrives - the customer unlocks the fe_user
16:43 m4rtijn and he can download the payed content
16:45 dinsdale07 I see, so this would allow for downloadable content to be payed for by setting permissions.
16:47 dinsdale07 hm - I'm thinking about a multi step from. At the end there should be a price for a music camp which has to be payed for.
16:48 HardPhuck guys which folder am i permitted to upload with FTP
16:49 HardPhuck i mean if i try to upload something to fileadmin i get permission denied
16:51 dinsdale07 m4rtijn, I think with fe_user registration you can actually send 2 e-mails upon registration. One to the FE user who registered and one to a specified admin address. You can specify the text of the e-mail for both.
16:52 m4rtijn true.. could be that I did it that way.. its a while ago..
16:54 dinsdale07 But I keep that in mind. Sometimes the simpler solutions are the better. And since we are talking about registration fees of ca 300 CAD many people don't feel safe paying that amount over internet.
16:57 m4rtijn what I did was.. take the username the person chose and let them put that as "comment line" in the payment..
16:57 m4rtijn thats namely a variable which can be passed on in the email..
16:57 m4rtijn so if u see a payment at the bank with that username in the comment you know which user payed immediatly
17:01 Sebastan hello again. How can I delete keys from sessionarray when I code a extension?
17:03 maholtz680 setting null doesnt work?
17:04 Sebastan setting to null only results in a new value "[thisbuy] =>" but all vars like [thisbuy["plissee_schraege"]] => 11 arent affected
17:05 maholtz680 cant
17:05 maholtz680 different element
17:05 maholtz680 [thisbuy][plissee_schraege] is syntax
17:05 maholtz680 thisbub != thisbuy["p...
17:05 Sebastan hm.. think your right... but what did I create?
17:06 maholtz680 you wanted multidimensions but have only one
17:06 Sebastan ok. I will rewrite them...
17:06 maholtz680 the key is thisbuy and 'thisbuy["plissee_...'
17:06 Sebastan thanks...
17:07 maholtz680 hth
17:09 HardPhuck ugh, finally photogallery uploadedd
17:10 HardPhuck about hardphucking time
17:11 HardPhuck pretty okay when you figure out how to properly configure it
17:24 m4rtijn hehe
17:32 m4rtijn HardPhuck ?
17:39 HardPhuck back now, smoking time
17:40 HardPhuck http://www.ipotovanja.si/potovanja/fotogalerija.html
17:40 HardPhuck this is the gallery if someone wants to see it :D
17:57 maholtz680 @HardPhuck: nice
17:57 HardPhuck thnx
19:58 gentooma HI - I've got a slight Problem with 'external links' - my website is accessable via 2 subdomains - when I go to a.mysite.com and klick on the menu item with a page that has a type of external link (which links to b.mysite.com) the link works
19:58 gentooma BUT when I'm on b.mysite.com and I click on the same item (which still refers to b.mysite.com) the external link breaks and I see the (empty) content of the page
19:59 gentooma is there some TSConfig that I have to change in order to allow _external_ links to refer to the same page the link is on?
22:03 dokma hey guys!
22:04 dokma I've seen in the svn version of commerce that it supports HTML mail. Does any1 know how to get t3x of an svn extension?
22:18 timdeluxe__ scheiss router
22:18 timdeluxe__ ups
22:18 timdeluxe__ wrong channel

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.