Search the website and IRC logs

Search is currently not available.

#TYPO3 IRC log from : Thursday 13 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
08:13 jstar-tw hi, what are the good point of Typo3 ?
08:14 jstar-tw does it support i18nand l10n ?
08:15 jstar-tw is it easy to make is own design ?
08:16 jstar-tw your project seem to be massively european
08:18 jstar-tw are you WCAG2 friendly ?
08:26 just2b still need answers
08:26 just2b ?
08:27 just2b @jstar
08:35 jstar-tw just2b: yep
08:36 just2b it fully supports translation, for the backend, and of course also for your records, including fallback to default
08:37 just2b design > you can use normal HTML templates with some markers which are replaced
08:37 just2b with the dynamic content
08:37 just2b and yes, it is more spread in european world but i guess it is like drupal which is widely spread in the US
08:39 just2b i am not so into wcag but IMO this shouldn't be that big problem as you can fully change how the content is outputted
08:39 jstar-tw I'm in taiwan so +6hour so I'm a bit worried that nobody will be up when I'm working
08:39 jstar-tw oh ok
08:39 just2b and of course you need to differ between the core and 3rd party extensions
08:39 jstar-tw why did you choose to use typo3 ?
08:40 just2b because it is understandable how to create content and how it is presented to the editor ... do you know the backend?
08:41 jstar-tw just2b: I know what is the backend, yes.
08:41 just2b there is the page tree which is like in explorer presenting all the pages in the strcture they appear also in the frontend .. on the page there are different content elements (which of course can be extended), like text, text with images, plugins (like guestbook and so on)
08:41 jstar-tw there is one on every CMS
08:41 just2b the translation handling is nice, also the support for imagemagick / graphicsmagick ... with the custom language typoscript (Whcih is not really a language but more configuration), you can create a nice menu in 20 lines
08:43 just2b i also like that restriction settings are very granular , so some editors can see only this and some only that .. some are allowed to set the category in news records, some only title + text, some editors are only allowed to edit this part of the page tree ,. ..
08:44 jstar-tw oh good
08:44 just2b but to be fair: some major partts of TYPO3 are fairly old in coding style .. so you will see some quite ugly things there .. BUT =>
08:44 jstar-tw does it use gettext to support multi-language ? Or MySQL ?
08:44 just2b don't know about gettext
08:45 just2b TYPO3 is currently rewritten from the scratch, but this will need still 1y + but parts are already backported to current versions to get there already the advantages of the new version
08:45 just2b mysql is best choice but you can also use mssql or even oracle
08:47 jstar-tw just2b: what do you mean best choice?
08:48 just2b mssql / oracle are done by using a database abstraction layer ... this costs speed and performance and furthermore not every 3rd party module does use the API and therefore would only work on mysql
08:50 just2b concerning your +6h > there are mailinglists too .. irc is not so much used and furthermore there are holidays today, so not a usual work day
08:51 jstar-tw holiday ? in which country ?
08:51 jstar-tw I prefer IRC, it's more interactrive
08:51 just2b at least in austria ;)
08:52 just2b i don't like it because every information is just lost for everybody else but of course, talking is faster here ;)
09:02 jstar-tw isn't the IRC log public ?
09:02 jstar-tw or at seem for some channel it is.
09:02 just2b there is a log done by a guy but still .. no categorization, no threads ..
09:02 jstar-tw just2b: what the difference between backend vs. front-end ??
09:03 jstar-tw just2b: ok I see your point
09:04 just2b backend is for editors to update and change content, frontend is how the website is seen by any visitior
09:05 just2b content can also be edited in the frontend but for bigger changes, I and many others prefer the backend
09:06 jstar-tw ok, that's what I thought but a guy in a video make me doubt
09:07 jstar-tw ok so you edit front-end to change the layout for instance
09:07 just2b what you mean with "edit front-end"?
09:07 jstar-tw does typo3 is well supported on linux ? Cause all I see is windows package and stuff like that.
09:08 just2b yes absolutly
09:08 just2b this is just because windows guys need all those packages ;)
09:08 jstar-tw I meant "content can also be edited in the frontend"
09:08 just2b yes of course
09:09 just2b for getting it working you need your usual working server with php, memory_limit with something like 40mb, gdlib2, IM or GM, mysql
09:09 just2b mod_rewrite if you want to rewrite urls for SEO
09:11 jstar-tw got PHP, MySQL, mod_rewrite running. Don't know for gdlib2 or IM
09:12 just2b graphicksmagick is preferred
09:14 jstar-tw just2b: but what is it, I never heard about that one. I know ImageMagick and it's really powerful
09:15 just2b imagemagick did some very strange things in their history,,.. changed for example there API quite much and got also some performance troubles .. therefore a 2nd project started which does basically the same thing
09:16 jstar-tw seem to be a good project too
09:17 just2b with TypoScript you can do e.g
09:17 just2b lib.image = IMAGE
09:17 just2b lib.image {
09:17 just2b file = path/to/thefile.jpg
09:17 just2b file.maxW = 100
09:17 just2b file.maxH = 200
09:17 just2b }
09:17 just2b and you will get the image in the correct size
09:19 jstar-tw what is TypoScript ?
09:20 just2b a configuration language for TYPO3
09:21 just2b which is mostly used to configure plugins but also to replace static markers in the template with dynamic things like a generated image
09:25 jstar-tw just2b: ok seem interesting
09:26 just2b or another example
09:26 just2b lib.anotherthing = TEXT
09:26 just2b lib.anotherthing {
09:26 just2b value = this is the text
09:26 just2b wrap = <p>|</p>
09:26 just2b typolink.parameter = www.typo3.org.org
09:26 just2b }
09:26 just2b this will produce the text "this is the text", and wrap the <p> </p> around, and will link it to typo.org
09:27 just2b of course this are very basic examples
09:27 just2b but as I said, with 20 lines you will get a multilevel menu with e.g. <ul><li> .. and different classes on the items according if the item got subelements or is currently active
09:35 ndee what's the release plan for flow3?
09:36 just2b ndee they will soon start with monthly sprint releases
09:42 ndee ok, so, around at the end of the year, flow3 will be "finished"?
09:43 ndee another question: I gonna maintain a bigger TYPO3 site with a live, stage and test environment. How would you guys handle the synchronisation between the live, stage and test environment?
09:46 just2b lol, finished??
09:46 ndee just2b: I mean released, the version 1.0
09:46 just2b maybe, yes, not my decission
10:17 jstar-tw just2b: I download scr+dummy and extract the package. Do I need to rename the folder `typo3_src+dummy-4.3.3` or this is just an install folder ?
10:18 just2b you need to copy boths content into the folder of your choice
10:20 nd__ If you can use symlinks on your server, download the seperate files and use the symlinked system... way better over time
10:25 jstar-tw I download `Source + Dummy [zip]`
10:39 jstar-tw just2b: I'm running in '123' mode, when I fille provide username and password on the 1st step, it download the index.php ;S
10:41 just2b looks like something is not correct wiht your appache?=
10:41 jstar-tw yep seem I remove php module or something like that
10:57 dokma hey guyz! anyone know how to shove adsense INTO the first CE on the page? I couldn't find any exts that could to this...
10:57 just2b what do you mean with into
11:19 aterriblechaos does anybody have a pointer how to add custom javascript to a backend flexform?
11:25 just2b inline or to the head?
11:28 aterriblechaos would prefer inline
11:28 just2b use a USER type
11:30 aterriblechaos do you mean do you mean <form_type>user</form_type><userFunc>tx_myext->my_custom_field</userFunc> ? or <type>user</type> ..
11:31 just2b sntax doesnt look that familiar right now, but yes
11:31 aterriblechaos ok, thank you
11:46 poioop hello all. where do i find the "Constant editor" ?
11:46 poioop im looking to activate coolURI but can't get it to kickin
11:47 just2b poioop > log in as admin > module template > choose root page > right frame > select box
11:47 just2b (root page with the TS templates(
11:48 poioop aaah :)
11:48 just2b i guess you found?
11:49 poioop yes :) not th e options i hoped - but this must be what the author of the tut must have meant :)
11:49 just2b if you have instaled the extension, there should be another dropdown to select the ext
11:50 just2b i mean the dropdown is there anyway, but an additional entry should be there
11:50 poioop must i include this extension somewhere in the template expressively? i only istalled it in the manager and did some config reviewing
11:50 just2b possible
11:50 just2b click on edit whole record > include static from extension
11:51 just2b i never used cooluri
11:52 poioop hmmm.i may just use realurl, maybe thats easier to plug in...
11:52 just2b :D
11:57 poioop how can i check if realURL is doing what i expect it to?
11:57 poioop is there some BE page showing the links?
11:57 just2b no, only FE
11:57 just2b like hmenu or link in a content element
12:01 poioop aah. say, i have a page with 2 langs on it. do i have to set the speaking url for each manually?
12:02 just2b if you want to set it manually, sure, otherwise page title is used
12:04 poioop how would i to batout collisions in title/lang
12:04 poioop say Home ind de/en
12:05 poioop ?
12:05 poioop ow would it go about collisions in title/lang (its been a rough night :( )
12:05 just2b you have the de or en in the url anyway
12:06 poioop aah :)
12:09 poioop ok, my root page is a shrotcut. do i have to provide translations for it as well?
12:11 influenjaa how to write this in typoscript: if(uid=x) { doSomething; } else if { do somethingelse; }
12:14 just2b depends on which place, and where this uid belong to, but I would go for a COA and a if
12:16 poioop hmm.. i have a root, say "HomeSHORTCUT" wich links to the 2-lang page "HomeDE" and "HomeEN". when i enter http://localhost/de/HomeDE - shouldnt i get the germna page? i keep getting the default, no matter what i enter
12:17 just2b it works without realurl?
12:17 influenjaa Thats what i need:
12:17 influenjaa temp.items.1 {
12:17 influenjaa if(uid==1)
12:17 just2b no code here plz
12:17 influenjaa dosomething
12:17 poioop language chnaging, yes like ?L=1 for de
12:17 poioop and no parm for defaul
12:31 poioop RealURL: i get "Segment "de" was not a keyword for a postVarSet as expected!" in the realURL log. any idea?
12:31 just2b some configureation wrong
12:31 poioop rootpag_id is fine
12:32 poioop language var is set to "L" as expected
12:32 poioop the constants de and en are fed to typo3 via ts script in the master template
12:33 just2b root page > checkbox root of website checked?
12:36 poioop yes
12:37 poioop i meamn, it works when adressing the page via the typo3 address code
12:37 poioop like ?id=4&L=1
12:38 poioop the right lang appears
12:39 poioop it looks like realurl does not know how to treat the de path segment or rather translate it to the lang parm
12:40 costaeye Hi guy's using an ext called simple gallery which looks at a directory... I have a problem though when I add a new directory ... it break the order of the directories
12:53 poioop oops forget it
12:53 poioop i thought it works out of the box - i should have read the manual first
12:54 just2b what was it?
12:56 poioop RealURL
12:56 poioop i had to fix the mappings
12:56 poioop now all is just fine
12:56 just2b k ;)
13:18 influenjaa Could somebody tell me how to write if/else conditions like this: if(array[uid] = x) { dosomething; }
13:19 influenjaa or just if(this-item-uid = x)
13:20 aterriblechaos influenjaa: you can use if or the more flexible case .. http://pastebin.com/9nsUXwqY
13:30 influenjaa aterriblechaos: i changed allWrap.cObject to linkWrap.cObject... this should work?!
13:30 aterriblechaos influenjaa: it depends on the object you are using, are you using a tmenu or content or records etc
13:31 influenjaa tmenu
13:31 aterriblechaos you have to make shure that the property you are using a) exists and b) has stdwrap
13:31 aterriblechaos for tmenu both should work: linkWrap and allWrap
13:33 BlueWing hi
13:33 costaeye is it possible to move folders with in file admin to different location in the directory tree
13:33 influenjaa allWrap works like a charm but linkWrap isnt
13:33 influenjaa it doesnt output even default.value
13:33 costaeye I have tried to move a folder and I only get the option to move into not above or below
13:34 BlueWing I have a very strange problem with typo3-4.3.3, sometimes I get forcibly logged out, redirected to the login page. but i can't log in back, there is no login error, no invalid username, i just got redirected back to the login page forever until i close the browser. when i start the browser again i can log in again
13:34 aterriblechaos influenjaa: i checked tsref, linkWrap has only wrap and not stdWrap, so it want work
13:35 BlueWing oh, this is not browser dependent, happens with IE, FF, and Chrome
13:36 influenjaa aterriblechaos: could you please point out another option for what im i trying to get?
13:37 influenjaa [uid=x] ?
13:37 aterriblechaos you can use if, http://typo3.org/documentation/document-library/references/doc_core_tsref/4.1.0/view/5/7/
13:38 aterriblechaos but imho if is more complicated than just using the case i sugested
13:38 aterriblechaos and also the if requires stdWrap
13:39 aterriblechaos BlueWing: you should be able to use copy/cut and the clipboard
13:39 BlueWing aterriblechaos: I don't get it, what's the clipboard got to do with this?
13:41 aterriblechaos BlueWing: clipboard is just a tool in typo3 that lets you copy and paste things, try to click a folder and select "cut" or "copy".. than you can click on "show clipboard" and paste the folder where you want
13:41 BlueWing aterriblechaos: err.. that wasn't my question
13:42 aterriblechaos err sorry BlueWing, i meant costaeye
13:42 BlueWing ok
13:42 aterriblechaos BlueWing no idea why you keep getting logged out, but sounds like a coockie problem
13:42 aterriblechaos are you using some proxy?
13:42 costaeye BlueWing: hi
13:42 BlueWing no proxy
13:43 aterriblechaos also no reverse proxy on serverside?
13:43 costaeye BlueWing: did you respond to my question?
13:43 BlueWing costaeye: no i didn't respond to your question
13:43 aterriblechaos i did costaeye, but i tagged my answer with BlueWing just read the things i wrote above ;)
13:45 costaeye aterriblechaos: AH OK ... so you have no control over where folders are created
13:46 costaeye aterriblechaos: sorry I miss read it ... I can use clipboard
13:47 aterriblechaos you can use clipboard, but still the sorting of the folders will be alphabetical
13:47 costaeye aterriblechaos: how do I view the clipboard in the fileadmin directory tree though
13:47 aterriblechaos costaeye: enable it, click on "show clipboard" under the folder listing
13:47 costaeye aterriblechaos: hmm! my folders are not in alphabetical order ....
13:48 costaeye aterriblechaos: I wish they were .. it would make my life easier
13:48 aterriblechaos uhm .. my are .. A-Z than folders from a-z
13:57 costaeye aterriblechaos: The problem I have is when I add a new folder for a gallery it throws all of the other out a sync
13:58 costaeye aterriblechaos: so folder a is showing folder b photo's
13:59 aterriblechaos costaeye: which gallery extension are you using?
13:59 costaeye aterriblechaos: I am using http://typo3.org/extensions/repository/view/chgallery/current/
14:02 costaeye aterriblechaos: it's driving me mad
14:03 aterriblechaos costaeye: you should be able to set categoryOrder = date and categoryOrderAscDesc=desc so sorting will not change when adding a new folder
14:03 costaeye aterriblechaos: I have this set
14:04 costaeye aterriblechaos: let me check the desc
14:05 costaeye aterriblechaos: I had it set to ascend
14:05 costaeye aterriblechaos: OK .. let me add a new folder and see what happens
14:10 costaeye aterriblechaos: strange it's not picking up the new folder
14:11 aterriblechaos new folder now should be the last one
14:13 costaeye aterriblechaos: OK ... look here http://www.walkingholidaysspain.eu/photo-gallery/ this is the current order
14:13 costaeye aterriblechaos: no I will add a photo to the new folder
14:14 costaeye aterriblechaos: now refresh
14:15 costaeye aterriblechaos: the bottom image has no title
14:15 costaeye aterriblechaos: which trows everything out
14:17 costaeye aterriblechaos: Now I have added villa as the category but it has the abanilla images
14:18 poioop i need to create a list of level 2 pages and get them to be wrapped in divs carrying the id of their parent page.
14:18 poioop is that possible *without* using a user defined php function?
14:19 costaeye aterriblechaos: fixed it ....... dam it's a pain .. I had to play wit the category listing order
14:20 aterriblechaos costaeye, good that it works now
14:21 aterriblechaos poioop, yes that can be done with ts
14:22 poioop i manage dto get the 1st level to be read out ad the uid of the root elements to be wrapping them. now i need an independent block to fill it with the divs for each subpagegroup
14:23 aterriblechaos just use yourmenu.2=TMENU to define the second level
14:23 aterriblechaos have a look at expAll if your submenu should be shown always
14:23 poioop i need to hmenu objects in order to treat the menues independently, right?
14:25 poioop "i need two HMENUs"
14:25 aterriblechaos no, just one HMENU and 1. 2. 3. for levels, like here http://www.typo3wizard.com/en/snippets/menus/text-menu.html
14:25 poioop but this way i would get level 1+2 in one block
14:26 poioop i need to show each level on a different location in the source
14:26 aterriblechaos than you need multiple hmenus
14:28 poioop would that be likt "temp.sub=HMENU ; temp.sub.entryLevel=2 ; tem.sub.2 {my level specs..}" "; serves as newline here)?
14:30 poioop right now this doesnt show anything ...
14:30 aterriblechaos if you are using entryLevel=2 you should use temp.sub.1=TMENU ..
14:31 poioop aaah ok
14:37 poioop ok. this gives sub elements for one main page shortcut. how do i go about to get the second level for all shortcut pages
14:37 poioop ?
14:57 costaeye aterriblechaos: I have broken something and not sure how to fix it :S
14:57 costaeye aterriblechaos: lost the content http://www.walkingholidaysspain.eu/
15:14 costaeye aterriblechaos: phew fixed
15:30 poioop where do i put my php scripts containing the userFunc funtions, eg for HMENU userdefined ?
15:33 Denyerec2 you can put 'em in fileadmin IIRC
15:48 costaeye Hey den
15:51 Denyerec2 hey man
15:59 poioop the php filename must match the function, right?
16:00 Denyerec2 I seem to recall the word userfunc being REALLY important
16:00 Denyerec2 been a long time since I built a typo3 site though.
16:02 Denyerec2 http://www.typo3wizard.com/en/snippets/common-problems-and-solutions/simple-userfunc.html ?
16:09 notlistening Hi has anyone got experience with building and setting up typo3 etc on ubuntu?
16:09 poioop thanks!
16:10 Denyerec2 yes notlistening
16:10 Denyerec2 What's your issue?
16:10 costaeye Denyerec2: you here
16:10 notlistening well i am using the autoinstall script from the website and modifying it after it has all installed I can not get image magic working for the life of me :P
16:11 costaeye Denyerec2: I broke http://www.walkingholidaysspain.eu
16:11 notlistening it can not find the binary
16:11 costaeye Denyerec2: I get a blank page now ..... all I did was add a div and update tv
16:11 notlistening very broken :(
16:12 costaeye Denyerec2: what would cause it to break
16:12 costaeye Denyerec2: The guy who site it is will shot me :(
16:13 costaeye Denyerec2: this is the template http://www.walkingholidaysspain.eu/fileadmin/templates/whs2/index.html
16:13 notlistening look at the source it is not outputting anything
16:13 Denyerec2 notlistening: I have never used the autoinstall script
16:13 Denyerec2 I have onlye ver downloaded and configured manually.]
16:14 Denyerec2 Usually it's something to do with ubuntu not coming with a version of imagemagick
16:14 Denyerec2 Try googling for ubuntu imagemagick
16:14 notlistening You have not got any notes on how you go about doing it manually?
16:14 Denyerec2 Mark - when you updated TV, what exactly do you mean ?
16:14 Denyerec2 notlistening: not here, no. I am rebuilding my development server at home, so might be able to help in a week or so :(
16:14 costaeye Denyerec2: just did the normal update
16:15 Denyerec2 Try checking if imagemagick is installed on Ubuntu notlistening
16:15 costaeye Denyerec2: didn't map anything
16:15 costaeye Denyerec2: just did a save as
16:15 Denyerec2 mark - go into the mappings, make sure they're still there.
16:15 Denyerec2 I have vague memories of this happening to me but can't remember the specifics
16:16 notlistening Denyerec2, will do when the script finishes
16:16 costaeye Denyerec2: everything is there
16:16 costaeye Denyerec2: nothing has changed
16:18 costaeye Denyerec2: it's like it has lost all of it's mapping
16:18 Denyerec2 edit oneof the mappings
16:18 Denyerec2 save it out again
16:18 Denyerec2 flush caches
16:18 Denyerec2 pray
16:19 costaeye Denyerec2: everything is still there though
16:19 Denyerec2 I don't care if it;'s still there
16:19 Denyerec2 EDIT ONE
16:19 Denyerec2 & save it again
16:19 Denyerec2 sometimes it shows you one thing and does another.
16:19 notlistening lol open source with bugs :D
16:22 costaeye Denyerec2: nope mad no difference
16:23 costaeye Denyerec2: could you login and look?
16:24 costaeye Denyerec2: I can roll back all of the changes
16:27 costaeye Denyerec2: the roll back worked
16:34 costaeye Denyerec2: have you vanished :)
16:35 costaeye what do I need to add to the typoscript to an image in between the nav menu and twitter widget http://www.walkingholidaysspain.eu
16:38 Denyerec2 nope mark, I'm on site
16:38 Denyerec2 I can have a look later tonight.
16:38 Denyerec2 if you edit the HTML that TV is using
16:38 Denyerec2 you normally just have to go in, edit, save, refresh.
16:39 Denyerec2 Maybe your edit was invalid HTML ?
16:39 costaeye Denyerec2: it i working now
16:39 costaeye Denyerec2: did a roll back
16:40 costaeye Denyerec2:got a little issues with the main image moved to the right but I will fix that later .....
16:40 costaeye Denyerec2: trying to workout how to add an clickable image below the menu
16:41 costaeye Denyerec2: I should be able to do this in the typoscript I think ....
16:43 costaeye Denyerec2: dam I wish I understood typoscript ....
17:03 poioop ok, next problem. i would like to get all localhost/Users/<removed>/en/home/
17:04 poioop when i hit the page without the lang, it will skip the prefix in the hrefs
17:49 JunGle- how it's possible to read locallang_db in my pi1 extension
17:49 JunGle- i try GLOBALS['lang']-sL() but it return the default language
18:32 poioop how can i manipupulate the href of this typolink: http://pastebin.com/rrH634Lt
18:54 poioop how can i use config variables to merge with strings.. like typolink.parameter.wrap = http://sdfdsdf?{config.language}
18:58 poioop i need langauge
20:19 poioop aaargh. i am too stupid to get teh ###PAGETITLKE### Marker with the current page tite ({page:title})
21:36 ironm hi ... somebody around?
22:22 ironm after debug-ing of sr_feuser_register I've found that the original value of the HTMLPlain-Variable will change in the exim4 mailbox to shorter lines with ending "=" ... like http://paste.debian.net/73209/
22:23 ironm I use utf8 .. thank you in advance for any hints how to solve such issue :-)
22:53 bruce_lee4711 hello
22:54 ironm hello bruce_lee4711
22:54 ironm do you have a question bruce_lee4711 ;-)?
22:55 bruce_lee4711 yes!
22:55 bruce_lee4711 I want to make some movies available to download
22:55 bruce_lee4711 a lot of movies
22:55 bruce_lee4711 I'm using ftp to upload them to the server
22:55 ironm there are some typo3 extensions as far as I know bruce_lee4711
22:56 bruce_lee4711 I know, I tested many of them
22:57 bruce_lee4711 do you know an extension which lists all files from a directory and generates the downloadlinks automatically?
22:58 ironm not really bruce_lee4711
22:58 bruce_lee4711 ok, but thank you
22:58 bruce_lee4711 ironman: do you have a question?
22:59 ironm until now I put all all files manually ... but it would be to much work
23:00 ironm well .. when you find such extension let me know please bruce_lee4711 ;-)
23:00 ironm what version of typo3 do you use?
23:00 bruce_lee4711 I'm thinking about writing an extension that does these things....
23:00 bruce_lee4711 4.1 and 4.2
23:01 ironm and probably php 4.x or 5.2 ..
23:02 bruce_lee4711 I think that I have at least php-5.2
23:02 ironm I use typo3 4.3.3 and php 5.3 .. there are some php 5.2 -> 5.3 issues .. like ereg_replace etc ...
23:03 bruce_lee4711 sorry, but my php is really bad!
23:03 ironm I had to debug and change some extensions to get them working with php 5.3 ...
23:03 bruce_lee4711 I have 5.3.1-1 installed
23:04 ironm I mean the php code ..
23:04 ironm I am not able to write an extension myself at this time
23:05 bruce_lee4711 I wrote some extension, but I don't like them myself...
23:06 ironm *lol* @ bruce_lee4711 ... are they in TER?
23:06 bruce_lee4711 no! I don't want to show them to somebody who knows a little bit of typo3....
23:07 bruce_lee4711 <----- gooing to smoke a cigarette
23:08 tomsdale forge appears to be down.
23:10 ironm no idea ..
23:10 ironm what url?
23:11 tomsdale http://forge.typo3.org/
23:11 bruce_lee4711 I'm not able to connect to forge as well
23:11 ironm yes .. I can't access it
23:11 tomsdale https://svn.typo3.org/ neither - I guess they are doing maintanance
23:12 tomsdale At least a good excuse for a break :-)
23:12 ironm *g*
23:15 ironm bruce_lee4711: do you know the rgsmoothgallery extension?
23:15 bruce_lee4711 ironm: yes, but its been a few months since I used it
23:17 ironm I can't remember if you can specify a directory with files and don't need to upload every file separatelly
23:17 bruce_lee4711 I know the extension! its really cool!
23:19 bruce_lee4711 ironm: you can specify a directory
23:19 ironm it sounds nice :-) .. I was playing with this extension a bit ..
23:21 ironm do you use "realurl" and "https_enforcer" bruce_lee4711 ?
23:21 bruce_lee4711 realurl yes
23:21 bruce_lee4711 https no
23:22 bruce_lee4711 I'm not james bond!
23:22 ironm with a separate realurl_conf.php in ./typo3conf?
23:24 ironm I have some strange behavior sometimes .. like the wrong link is desplayed (the previous one ... )
23:24 ironm displayed ..
23:25 bruce_lee4711 I use realurl together with aeurltool
23:26 ironm I use realurl_autoconf.php ... BUT will need realurl_conf.php for chosing the proper language depends on the called domain ..
23:26 bruce_lee4711 in typo3conf I have a file called "urltoolconf_realurl.php"
23:26 ironm with one typo3 DB .. (one tree)
23:27 ironm I have to checkt the "aeurltool" extension .. don't know it
23:27 ironm for what is aeurltool good for?
23:28 bruce_lee4711 I don't know exactly, but I think it solves a lot of my realurl-problems
23:28 ironm hmm ... s/for \(.*\)for/&1for/ *ggg*
23:29 bruce_lee4711 what do you want to substitute?
23:29 bruce_lee4711 is this for the url?
23:30 bruce_lee4711 is this a windows-path?
23:32 ironm echo -n 'for what is aeurltool good for' | ... ;-)
23:32 ironm no ...
23:32 ironm just kidding bruce_lee4711
23:33 bruce_lee4711 I have only typo3 running on single-domains
23:34 ironm I am going to run few domains ... inkl. https to the same tree .. for secure registration / login
23:38 bruce_lee4711 sounds interessting
23:38 ironm well .. there is another issue ..
23:39 ironm due to the restricted https-area .. (on the apache.conf level) ... but with the https-login from the typo3 tree
23:42 ironm I don't know if there are some ready solutions
23:43 bruce_lee4711 I don't know an easy solution to that, but I think that you have to apache by hand to achieve that
23:45 ironm well .. the point is that typo3 should put the login info to the apache before it should be able to access this area .. MAYBE I am wrong and typo3 doesn't need it at all
23:51 bruce_lee4711 I don't know, on my server I have a directory for https und another directory for http
23:53 bruce_lee4711 maybe you can link the https-directory to a directory in your typo3-installation
23:53 bruce_lee4711 for example:
23:53 bruce_lee4711 your realurl looks like http://typo3.org/notsecure and http://typo3.org/secure
23:54 ironm well .. I was working already with http://xyz.org/unsecuer and https://xyz.org/unsecure ...
23:55 bruce_lee4711 maybe you can link the https-directory on the server http://typo3.org/secure
23:55 ironm I mean as a root of the server ..
23:56 ironm the root dir of both (http/https) servers can be the same
23:56 bruce_lee4711 do have root-rights on the server?
23:56 bruce_lee4711 and ssh-access?
23:57 ironm well .. the ssh-access is anoter topic .. the owner of apache is www-data
23:58 ironm I have an ssh access (root) to my servers ..

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.