IRC logs

20140414

Logs from channel #fedext on freenode - our official support channel.

IRC log range: 20140414*

20140414

  • 00:09:32 <soee__> xaver_: tried it long time ago
  • 00:09:37 <soee__> but im on phpstorm
  • 00:09:48 <soee__> though havent try latest versions
  • 00:10:55 <xaver_> i have a git build
  • 00:11:01 <xaver_> its working greate
  • 00:11:17 <xaver_> only xsd is missing and i never used the feature before
  • 00:11:18 <soee__> xaver_: hows the php support ?
  • 00:12:44 <xaver_> greate
  • 00:12:47 <xaver_> also xdebug support
  • 00:14:41 <soee__> xaver_: good to know, maybe ill give it a try soon
  • 00:58:51 <7JTAADL7Y> [builder] NamelessCoder closed pull request #26: Namespace issues (development...namespace-issues) https://github.com/FluidTYPO3/builder/pull/26
  • 02:16:11 <Outdoorsman> Wow... not sure what's going on, but my first flux site is exceedingly slow.
  • 02:24:28 <NamelessCoder> hi Outdoorsman
  • 02:24:44 <NamelessCoder> could you give a bit more info - server type, php version, etc.?
  • 02:33:41 <Outdoorsman> Apache PHP 5.4. I'm using fluidbootstraptheme and fbtcustomiser.
  • 02:36:45 <Outdoorsman> Parse time was 63030ms for a text/image page, nothing complicated.
  • 02:37:55 <NamelessCoder> holy crap
  • 02:37:59 <NamelessCoder> excuse my French
  • 02:38:27 <NamelessCoder> virtual server? database located on remote host? mounted network filesystem?
  • 02:38:51 <Outdoorsman> virtual... remote host.
  • 02:38:57 <NamelessCoder> 6.1 or 6.2?
  • 02:39:04 <Outdoorsman> Dedicated server. TYPO3 6.2
  • 02:39:25 <NamelessCoder> EXT:uncache installed?
  • 02:39:36 <NamelessCoder> Context set to Development?
  • 02:39:41 <Outdoorsman> I'm guessing there's a race condition somewhere or something?
  • 02:39:54 <Outdoorsman> Yes, I have it set to development.
  • 02:40:01 <Outdoorsman> I don't have uncache installed.
  • 02:40:22 <NamelessCoder> okay - Development context does indeed put a LOT of extra load on your site because fluidcontent will continually parse your templates
  • 02:40:36 <NamelessCoder> first thing is to try this in Production mode
  • 02:41:10 <Outdoorsman> There's development in TYPO3 and then there are some development things in Flux. Which one particularly are you referring to?
  • 02:41:42 <NamelessCoder> the so-called "TYPO3 Context" variable - ENV setting, normally specified in your server's virtual host configuration
  • 02:42:01 <NamelessCoder> SetEnv TYPO3_CONTEXT Production
  • 02:43:09 <Outdoorsman> In Flux I just checked and had basis.disableCompiler = 1 so am disabling that first.
  • 02:43:18 <NamelessCoder> this one is hugely important in 6.2 - default is to use Production but if you changed this to Development you should surely expect a much slower site
  • 02:43:30 <NamelessCoder> that one must never be on in production mode ;)
  • 02:43:33 <NamelessCoder> suuuper slow
  • 02:44:38 <NamelessCoder> 60s is still pretty crazy - I have almost the exact same setup as you locally, in Development context it renders in around 12 seconds which is pretty damn slow too
  • 02:45:05 <Outdoorsman> It's certainly not production yet, but would like to start showing the client what i have done so far and owuld like it to be a BIT more responsive :)
  • 02:48:07 <NamelessCoder> can you ask for php 5.5 or ask for APC?
  • 02:48:14 <Outdoorsman> Wow.. what a difference :)
  • 02:48:18 <NamelessCoder> well yeah ;)
  • 02:48:31 <NamelessCoder> development bypasses a lot of key caches
  • 02:48:46 <NamelessCoder> what's the tally now?
  • 02:49:05 <Outdoorsman> Just disabled that dev stuff and it's doing much better. Checking the timing.
  • 02:49:31 <NamelessCoder> I have plenty more tricks
  • 02:52:28 <Outdoorsman> Well it's much faster, but I see that there's something else that's slowing things down on my local network so my *faster* times aren't representative of actual time.
  • 02:52:57 <NamelessCoder> you should do these now anyways:
  • 02:53:35 <Outdoorsman> Nevertheless, thanks. This is my first time using dev mode in TYPO3 6.2 so wasn't aware of it actually disabling cache.
  • 02:53:46 <NamelessCoder> in install tool: 1) disable deprecation logging completely, 2) set minimum required SEVERITY for logging to WARNING or even FATAL, 3) Increase default caches lifetime from 3600 to something like 86400
  • 02:54:23 <Outdoorsman> That would be more appropriate for most of the site I'm working with.
  • 02:54:42 <NamelessCoder> 4) set FE.versionNumberInFilename to empty string
  • 02:54:51 <NamelessCoder> then in Apache:
  • 02:55:31 <NamelessCoder> 5) make sure mod_expires is loaded, 6) target assets types like js,css,png etc. and increase cache lifetime for those
  • 02:55:45 <Outdoorsman> Thanks for the tips. I noticed that the deprecation log was enabled by default with the beta version of 6.2, but I believe the first full release disables deprecation logging by default thankfully. That's a lot of unneeded data unless you needing it.
  • 02:55:57 <NamelessCoder> 7) set BufferedLogs On, 8) Move rules from .htaccess into virtualhost file
  • 02:56:25 <NamelessCoder> I guarantee you these will increase your performance by several factors ;)
  • 02:56:56 <Outdoorsman> I noticed your speedy distribution of TYPO3 so was guessing you'd know just a TAB about the topic :)
  • 02:56:59 <NamelessCoder> the slower your system is in general, the more impact these will have.
  • 02:57:10 <NamelessCoder> a thing or two ;)
  • 02:57:30 <NamelessCoder> fluidtypo3.org is the culmination of all those tricks put together and it is FAST
  • 02:57:33 <Outdoorsman> I have a fairly well powered machine but of course I'm running a number of sites, so it can have an impace.
  • 02:57:46 <NamelessCoder> it does *all* that and also adds Varnish
  • 02:58:20 <Outdoorsman> Nice. I have a Varnish server but am still tweaking it and don't have it in production on any sites yet.
  • 02:58:34 <NamelessCoder> you definitely should fire that project up again
  • 03:00:08 <Outdoorsman> I'll get back with you when I can test it better. Right now I'm working through a remote connection and can't fix some of the local network issues till I get back to the office.
  • 03:01:24 <NamelessCoder> http://fluidtypo3.org/community/irc-logs.html?tx_fluidtypo3org_content%5Bdate%5D=20140414&tx_fluidtypo3org_content%5Bcontroller%5D=Content&cHash=b2a2cbc64fef6a201dcf7b165c408cfd#02:53:46
  • 03:01:34 <NamelessCoder> save that link for when you get into the office
  • 03:01:49 <Outdoorsman> I will :)
  • 03:02:37 <Outdoorsman> I'm using fbtcustomiser and notice that I was getting dual loading of jquery and other assets. It looks like fluidbootstraptheme uses typoscript to load assets and fbtcustomiser had a partials file called SharedResources.
  • 03:03:19 <Outdoorsman> What's the preferred method to handle an overlay of assets?
  • 03:03:27 <NamelessCoder> aah, in that case fbtcustomiser is not up-to-date
  • 03:03:43 <NamelessCoder> preferred simply for performance reasons: TS defined VHS assets
  • 03:03:58 <Outdoorsman> So TS is preferred then?
  • 03:04:10 <NamelessCoder> we discourage inclusion of file-based assets in templates unless it is with good reason, fx in an FCE
  • 03:04:52 <NamelessCoder> yes: EXT:fluidbootstraptheme does the right thing, uses TS. The other ext should also do this but I think it is simply because randomresult is not yet finished with that one
  • 03:05:27 <Outdoorsman> I hacked at it a bit thinking the file was the way to go so ended up doing things like... plugin.tx_vhs.settings.asset.bootstrapcss >
  • 03:06:53 <Outdoorsman> I guess I will try to rewrite that file into TS instead. So glad I asked. Try to ping randomresult on that if I don't get around to it. I seem to be offline when he's around.
  • 03:08:01 <NamelessCoder> the time difference is pretty big (it's 3 AM here)
  • 03:08:04 <Outdoorsman> Well, I have to run. Thanks again. That put me miles ahead from where I was just a few minutes ago. I'm excited to check out the stuff in the irc log link. Later @NamelessCoder.
  • 03:08:14 <NamelessCoder> yes you should rewrite that file to TS - it is much easier to control
  • 03:08:22 <Outdoorsman> I could do that.
  • 03:08:24 <NamelessCoder> use the same names as fluidbootstraptheme's TS
  • 03:08:40 <NamelessCoder> that way they just overwrite instead of duplicate :)
  • 03:09:07 <NamelessCoder> alright - have a nice day, cya :)
  • 03:09:26 <Outdoorsman> Yes, I noticed he didn't quite use the same names... some of the names had hyphens like bootstrap-css. I making it match but it didn't seem to overlay correctly even then. I had to just empy the TS vales.
  • 03:09:36 <NamelessCoder> it's all my fault actually
  • 03:09:50 <NamelessCoder> I adjusted his strategy for asset inclusion as well as the names they use
  • 03:10:08 <NamelessCoder> - better to follow the absolute best practice since the ext is going to be popular
  • 03:10:17 <Outdoorsman> You don't have to confess... it's ok :) I'm just glad to know what to do.
  • 03:10:28 <Outdoorsman> Hopefully it gets updated soon.
  • 03:10:51 <Outdoorsman> I'm checking out now. Thanks :)
  • 03:10:52 <NamelessCoder> I almost assume that is something he'll be working on this week
  • 03:10:57 <NamelessCoder> yep, cya :)
  • 10:02:51 <Bomwollen> hi guys somebody here i have a question regarding partials
  • 10:08:07 <Bomwollen> how is it possible to add a (logo) section in a partial that is then configured in the constant editor
  • 10:12:35 <hsp2n> morning everyone
  • 10:16:36 <alex_schnitzler> Hoi
  • 10:17:38 <randomresult> hoi
  • 10:18:17 <alex_schnitzler> Is there already a plan when fcc supports text+images?
  • 10:19:46 <hsp2n> benjaminr made a quick gist for that
  • 10:20:56 <randomresult> alex_schnitzler seems to be a big thing as they want text+images compatible to the TS-Version (lots of choices you can make in there)
  • 10:21:05 <hsp2n> quick question to the merry men: my boss would like to know if fcc will go stable before/in march.
  • 10:22:09 <alex_schnitzler> randomresult: So if I need it, I implement it myself I guess
  • 10:22:32 <randomresult> i think benjaminr has an alternative ... did you mention it benjaminr ?
  • 10:23:10 <randomresult> i think the problem is --> if you switch from one to another... the existing elements. if you start from scratch, you should be fine
  • 10:27:47 <Bomwollen> how is it possible to add a (logo) section in a partial that is then configured in the constant editor
  • 10:29:00 <BenjaminR> Typoscript Setup below plugin.tx_yourproviderextension.settings is availble in the template automatically as {settings}
  • 10:29:03 <BenjaminR> Bomwollen
  • 10:30:34 <BenjaminR> Depending on what value your constant is expected to contain you choose a matching viewhelper. fx if the value indicates the path to the file use regular fluid image f:image viewhelper and pass value to is. Following a complete example:
  • 10:31:37 <BenjaminR> Your Typoscript Constant plugin.tx_yourproviderextension.settings.myLogoPathAndFilename can be used in the template with <f:image src="{settings.myLogoPathAndFilename}" /> to render an image
  • 10:32:30 <Bomwollen> thank you BenjaminR i ll try that
  • 10:33:05 <BenjaminR> you are welcome
  • 10:33:19 <hsp2n> is there any news on when fcc might go "stable"?
  • 10:33:25 <Bomwollen> one more thing BenjaminR, i am using an extension a normal tab navigation and a dropdown navigation partial
  • 10:33:38 <Bomwollen> i mean it provides both partials
  • 10:33:45 <BenjaminR> hsp2n: you can use it without many doubts. i use it in production as danilobuerger and alexschnitzler also do
  • 10:34:20 <hsp2n> boss would like to see a "officially released" build
  • 10:34:27 <Bomwollen> well what i want is to replace the used tabnavigation with the dropdown navigation ( to show if a page has subpages), but this seems not to work
  • 10:34:32 <hsp2n> would be nice, but I guess I can convince him if that doesn't work out
  • 10:35:36 <BenjaminR> Bomwollen: didnt understand the szenario - sorry
  • 10:36:25 <Bomwollen> ok, i have an extension with different fluid templates, and partials
  • 10:37:48 <Bomwollen> http://pastebin.com/Z9CCQVH6
  • 10:38:13 <BenjaminR> Bomwollen: preable: fluid templates are different from fluidcontent element templates :)
  • 10:38:24 <BenjaminR> fluid is part of TYPO3 CMS
  • 10:38:29 <BenjaminR> so this can be irritating
  • 10:38:34 <Bomwollen> sorry
  • 10:38:57 <BenjaminR> so i guess you are talking about fluidpages template when i see the snippet
  • 10:39:05 <Bomwollen> aye mr Rau
  • 10:39:08 <BenjaminR> ;)
  • 10:39:21 <BenjaminR> okay so i am ready for your explanation :)
  • 10:39:53 <Bomwollen> so let me go on , one partial is called navigation and it uses the template tabnavigation.html: http://pastebin.com/w4QTSw2p
  • 10:41:53 <hsp2n> so is there a roadmap for fcc? I'd need a statement wether or not there will be a "release" before or in may. I need this so I can argue for fcc appropriately
  • 10:42:04 <Bomwollen> this is the tabnavigation partial: http://pastebin.com/GAnkHSwh i want to replace in navigation.html the tabnavigation with dropdown navigation: http://pastebin.com/1wxzD8kG but it does not work
  • 10:43:07 <Bomwollen> as far as i understand replacement happens here: <f:render section="TabNavigation" partial="TabNavigation" arguments="{_all}"/>
  • 10:44:50 <Guest15662> Hi there, i'm using TYPO3 6.1.7 wirh fluidcontent, i have an FCE with a form.content section, so additional FCEs can be placed in this FCE, but if i translate this FCE the inner FCEs are not translated(copied) is this possible with fluidcontent?
  • 10:48:14 <BenjaminR> hsp2n: here is our roadmap http://fluidtypo3.org/roadmap.html
  • 10:48:48 <hsp2n> that's all I needed!
  • 10:50:28 <BenjaminR> Bomwollen: yes you already pointed out where the partial is rendered
  • 10:50:43 <BenjaminR> but are you aware of the typoscript values that are read in DropdownNavigation?
  • 10:50:54 <BenjaminR> fx <v:page.menu entryLevel="{v:var.typoscript(path: 'lib.menu.main.entryLevel')}">
  • 10:51:12 <Bomwollen> set to 0
  • 10:55:52 <BenjaminR> so you have to describe what "but it doesnt work" means :)
  • 11:02:13 <Bomwollen> BenjaminR when I change the section name to DropdownNavigation this frontend crashes and this exception occures: http://pastebin.com/PtVGUAxj
  • 11:04:44 <BenjaminR> Bomwollen: i see! which version of vhs do you use?
  • 11:05:34 <Bomwollen> BenjaminR 1.8.5
  • 11:07:04 <BenjaminR> try cherry-picking this commit https://github.com/FluidTYPO3/vhs/commit/1a9833176d2be804b1cacc6cb04f602845fd892a
  • 11:07:12 <BenjaminR> or pull from development branch
  • 11:15:52 <Bomwollen> BenhaminR I think this works....
  • 11:16:22 <BenjaminR> good Bomhollen :)
  • 11:18:33 <Bomwollen> thanks so it seemed to be a bug in vhs
  • 11:19:02 <BenjaminR> yap which has been fixed :)
  • 11:20:28 <Torstenn> Hi, im using fluidcontent and want to copy nested content element to another language but he doesnt copy the nested elements, is this general possible?
  • 11:21:06 <hsp2n> I support Torstenn's question :)
  • 11:21:20 <BenjaminR> go for it :)
  • 11:21:44 <Torstenn> yeah it doesnt work *g
  • 11:22:00 <Torstenn> but i want to know if iam doing something wrong or its a missing feature
  • 11:22:57 <BenjaminR> Torstenn: please checkout the workbench/commands branch on flux
  • 11:23:19 <BenjaminR> https://github.com/FluidTYPO3/flux/tree/workbench/commands
  • 11:23:45 <BenjaminR> it contains a lot of fixed whch i expect to solve your problem
  • 11:24:06 <BenjaminR> danilobuerger worked on that recently
  • 11:24:49 <Torstenn> Ill try it, thanks
  • 11:24:56 <BenjaminR> for me it is fixed
  • 11:25:12 <BenjaminR> for some others too - it was a problem more people faced
  • 11:27:58 <Torstenn> YEAH it works :)
  • 11:28:07 <Torstenn> very nice thank @danilobuerger
  • 11:28:12 <BenjaminR> Great. Thank danilobuerger :)
  • 11:28:58 <BenjaminR> I am pretty sure this will go in the next TER release
  • 11:35:46 <cedricziel> merci
  • 11:40:58 <xaver> hi -_-
  • 11:45:46 <BenjaminR> hey saver
  • 11:45:50 <BenjaminR> xaver
  • 11:46:31 <xaver> hi BenjaminR - who wants to switch work?
  • 11:46:55 <BenjaminR> ?
  • 11:47:17 <xaver> i do nearly anything to get away from this task :)
  • 11:47:43 <BenjaminR> i take over ;)
  • 11:48:05 <xaver> OK - solr implementation
  • 11:48:07 <BenjaminR> if it is not about typoscript or templavoila or pibase :D
  • 11:48:22 <BenjaminR> or Solr :D
  • 11:48:31 <xaver> solr works but the extensions
  • 11:50:31 <Torstenn> ok with three languages it doesnt work :(
  • 11:50:51 <xaver> browser *****, cal, rekodafront, 2 glossarys, differnet event extensions, tt_news extended, multiple sites in tree, accessable only over tunnel, view page always uses IPv6 adresses - i have no compatiblity ........
  • 11:50:54 <Torstenn> It says, in red, "Localization failed; There already was a localization for this language of the record!"
  • 11:51:31 <Torstenn> any ideas?
  • 11:51:34 <BenjaminR> Torstenn: most times the error message says the truth :) go to list module and check for doub etranslation
  • 11:53:03 <Torstenn> ok your right, on the first "copy" it struggles with the languages, and create one element with the correct lang and the second with the wrong
  • 11:55:18 <shaggz> Hey guys, I updated some of your extensions and experiencing some strange behaviour.
  • 11:56:46 <shaggz> I update fluidcontent 3.1.0 --> 4.1.0, pages 2.1.0 -> 3.1.0, vhs 1.8.4 --> 2.0.0 and flux 6.0.2 --> 7.1.0
  • 11:57:56 <BenjaminR> shaggz: are you aware of the changed namespaces for viewhelpers? flux:flexform -> flux:form, flux:flexform.field -> flux:field any many more
  • 11:58:29 <shaggz> I used the update script of danilo to fix namespacing problems.
  • 12:00:01 <shaggz> Some problems disappeared but the frontend is still not working
  • 12:00:15 <shaggz> The requested page didn't have a proper connection to the tree-root
  • 12:04:48 <Crewcut> How do i update the vhs ext without removing it from ext. manager (due to dependencies in other fluidtypo3 ext)?
  • 12:06:44 <robsonrobi> Good morning. I recently updated from TYPO3 6.1.7 to 6.2 and therefore needed to upgrade, vhs, fluidpages,fluidcontent and flux. everything worked great, but now i am confronted with duplicate elements in the backend. my content f.e. is in an fce and there are some content elements, in the BE i see these elements but they are hidden + i see them on
  • 12:06:45 <robsonrobi> the page. Deleting one objecte results in deleting both.
  • 12:13:54 <mrboe> @robsonrobi
  • 12:16:13 <robsonrobi> yes, mrboe?
  • 12:16:36 <mrboe> this works for me: update typo3 and launch the update wizard > update the extensions and run the update scripts (the littel green arrows in extension manager) > after that compare databse
  • 12:17:14 <mrboe> only this order works for me
  • 12:17:18 <robsonrobi> did you have the same problem before using the update script?
  • 12:17:46 <mrboe> after update script all semms ok
  • 12:18:16 <robsonrobi> did you install the extensions via https://gist.github.com/NamelessCoder/8714035 ?
  • 12:18:57 <mrboe> but then you have to use the update scripts of fluidcontent and flux
  • 12:19:03 <Torstenn> BenjaminR: any ideas to my problem?
  • 12:19:22 <BenjaminR> no
  • 12:19:40 <mrboe> because they changed some fields
  • 12:20:43 <mrboe> and then do the DB compare
  • 12:21:02 <robsonrobi> yes, i know, i already did that but i will give it a new clean try.
  • 12:22:27 <shaggz> @Benjamin I fixed the problem on the frontend by DB compare, but the labels and controls (on hover) are gone
  • 12:36:20 <xaver> robsonrobi: Important - before you run the wizard upgrade flux and run the update script
  • 12:36:54 <xaver> or some relations are lost and elements are double and if you delete one the other element is also gone
  • 12:37:16 <xaver> TYPO3 drops a index and flux needs the ids
  • 12:40:49 <robsonrobi> thank you xaver!
  • 12:41:07 <robsonrobi> that is my problem...
  • 12:52:08 <Rawai> We are running TYPO3 6.2
  • 12:52:09 <Rawai> fluidpages 3.0
  • 12:52:09 <Rawai> fluidcontent 4.0
  • 12:52:09 <Rawai> flux 7.0
  • 12:52:09 <Rawai> vhs 1.8.5
  • 12:52:20 <Rawai> and when we translate content elements by click on copy default content elements than the content inside the column rows text or text with image etc. is gone.
  • 12:52:40 <Rawai> Beside this the Content Elements in the backend are overlapping itself which makes it nearly impossible to click the right buttons
  • 12:52:48 <Rawai> Also there seems to be no way to insert content which has already been translated ie. in list view as it does not show up on the page. Instead we get in field column [INVALID VALUE (“-2”)]
  • 12:54:21 <Rawai> we ran all update scripts which came with teh extensions and all say 0 rows have been updated
  • 12:55:24 <NamelessCoder> Rawai see https://github.com/FluidTYPO3/flux/issues/242 - a fix is coming
  • 13:03:57 <Rawai> thanks Claus will test it
  • 13:05:42 <NamelessCoder> Rawai some of it could be fixed in https://github.com/FluidTYPO3/flux/tree/workbench/commands - and we would appreciate feedback on https://github.com/FluidTYPO3/flux/pull/524
  • 13:07:07 <Rawai> how can we get the fix 524 easy to test it
  • 13:07:25 <NamelessCoder> git pull && git checkout workbench/commands
  • 13:08:18 <Rawai> will try thanks
  • 13:10:10 <NamelessCoder> yw
  • 13:37:21 <Torstenn> the copy of elements which contain other elements doesnt work for a third language :(
  • 13:37:53 <Torstenn> it says: "Localization failed; There already was a localization for this language of the record!"
  • 13:37:56 <Torstenn> any idea?
  • 13:50:38 <Rawai> same problem here even with the second language
  • 13:50:53 <Rawai> as soon as you have already existing records with languages
  • 13:52:13 <Rawai> @Claus the copy of the elements is working only when there werent any translated records before in list view. flux 7.1.0
  • 13:52:52 <Rawai> beside this the create new button below the images is disappearing when hovering over or it is more or less inside the left corner of the CE above
  • 13:53:01 <Rawai> bottom corner
  • 13:55:10 <Rawai> If you have columns i.e. 41.67% / 33.33% / 25% than the 25% part is overlapping the other translation column and it is only possible to click the copy content button when calling the page. as soon as you click on the column i.e. to the right now way to click copy again.
  • 14:02:29 <Rawai> it is also not possible to edit the actual column element while you can activate the CEs inside of it - but won't see anything in FE as parent Element is hidden
  • 14:03:45 <Rawai> you can activate the parent in List view !
  • 14:04:43 <Rawai> but in language view the translated parent element has no icons to edit or move and everything in there stays grey
  • 14:06:40 <Rawai> after enableling the parent element in list view the the parent element has still no icons but looks now good, also the elements inside of it. Parent can't be edited or moved while nested CE show thebutton to move but can't be moved in lLanguages View
  • 14:10:16 <Rawai> the copied nested element has now under relations a new dropdown: Content Area of Parent: but inside everything is [INVALID VALUE (column 2)] _ thow you can change it to 16.67% (column 3)
  • 14:12:49 <Rawai> In a column 50 33 16 with each elements in the translated column the 33 element gets listed in 16 above the 16 element and no way to move it actually to 33
  • 14:13:23 <Torstenn> is there a roadmap when this could work?
  • 14:17:12 <Rawai> Another even bigger problem IMHO is that if you have already translated elements you can't assign them to any column. also "Content Area of Parent" in Tab Relations is not existing in already existing but translated CEs - so still same problem as before - no way to get translations assigned to a certain place
  • 14:18:18 <Rawai> In TV there was at least a place where you could see all non used elements but this is not existinghere
  • 14:19:07 <NamelessCoder> Rawai "unused" elements don't exist as such, but lost relations can be found using the "list" view
  • 14:19:32 <Rawai> well but how can you assign them again?
  • 14:19:41 <Rawai> all the content is translated
  • 14:19:47 <Rawai> in list
  • 14:20:00 <Rawai> but don't show up in Page view
  • 14:20:24 <Rawai> copy content is not working when translations already exist
  • 14:20:34 <NamelessCoder> yes; either set the colPos, language or parent element to make the element a child or move it to fx top of a column to drag-drop it into place afterwards
  • 14:21:50 <Torstenn> ok i checked it, the problem is that, on copy to another language, the nested content elements get the wrong language
  • 14:22:03 <Torstenn> if you have more than two languages
  • 14:23:25 <NamelessCoder> please see https://github.com/FluidTYPO3/flux/pull/524 and https://github.com/FluidTYPO3/flux/pull/511 - if your symptoms are listed there, we know about them and intend to fix them
  • 14:23:34 <NamelessCoder> if they are not listed there, please add them on https://github.com/FluidTYPO3/flux/pull/524
  • 14:24:36 <NamelessCoder> and of course: please use the branch workbench/commands when you test these - symptoms reported from the development branch will only confuse this, making a fix take longer
  • 14:28:43 <Rawai> ok Claus when I change the column to Fluid Content Area in both the original and the translation (List View) than only in the Original the Relation field exists with only one column i.e. 16.67% even there are 3 columns available. In the translation this field is missing
  • 14:29:31 <NamelessCoder> this should be noted in the issue flux#524 as it could indicate a need to add this to the translation overlay
  • 14:29:32 <FT3BOT> Issue 524: [BUGFIX] Fix copy/paste/localise commands https://github.com/fluidtypo3/flux/issues/524
  • 14:31:08 <shaggz> Hey Nameless, I updated all of your extensions but it seems that the content elements are now broken. The controls are gone (edit, hide ... when you hover over an element) and the labels are gone so I can not edit in page view
  • 14:31:09 <Rawai> we use already the 7.1.0
  • 14:31:30 <Rawai> this is with 524
  • 14:31:45 <NamelessCoder> shaggz you may be in language edit mode
  • 14:32:03 <shaggz> thats correct
  • 14:32:30 <NamelessCoder> https://github.com/FluidTYPO3/fluidpages/issues/118
  • 14:32:47 <NamelessCoder> before you report problems here, please see the list on https://github.com/organizations/FluidTYPO3/dashboard/issues/repos?direction=desc&page=1&sort=popularity&state=open
  • 14:33:41 <Rawai> at least there is a workaround like Claus pointed out - Assigning the translated CE to MainContent Column and than drag and drop everything to get back the design also in the Translation.
  • 14:33:57 <NamelessCoder> if you use TER versions, also check the list of closed issues as we close issues when fixed in development
  • 14:35:37 <shaggz> Okay, I'm sorry
  • 14:36:43 <shaggz> The drag and drop is not the important one, but the labels should be visible
  • 14:36:49 <NamelessCoder> no worries - we just have to centralise this in a more permanent location, and give you a way to find possible solutions/workarounds faster than waiting for me to come around ;)
  • 14:37:06 <shaggz> (=
  • 14:41:44 <shaggz> I didn't find an issue about the missing labels on github
  • 14:47:19 <shaggz> Okay it's not only the labels. As I said, the controls are not visible. Maybe someone has a hint for me. @Nameless this was the same problem last time as i switched back to flux 6.0.2
  • 14:49:00 <NamelessCoder> danilobuerger is our man for that fix - my personal choice would have been to remove our script from the languages view
  • 14:51:01 <danilobuerger> our script doesnt have to be present in languages view as d&d isnt supported there by the core either
  • 14:51:23 <NamelessCoder> danilobuerger but you agreed to turn the bug report into a feature request ;)
  • 14:51:57 <shaggz> Thats okay, do you know why the labels of the content elements are not visible?
  • 14:52:17 <danilobuerger> i didnt agree ^^, i just asked if thats what he wanted... i am not going to implement d&d fpr languages view
  • 14:52:29 <NamelessCoder> aah heh :)
  • 14:52:33 <shaggz> That bug exists since I updated the extensions
  • 14:52:44 <NamelessCoder> in that case I think we should reject this and avoid loading our script for this view
  • 14:53:02 <danilobuerger> NamelessCoder yes :-)
  • 14:53:02 <NamelessCoder> shaggz very likely related to loading the script in question
  • 14:53:22 <danilobuerger> shaggz which labels are missing?
  • 14:53:54 <shaggz> I created fces and the labels for the content element are missing
  • 14:54:14 <danilobuerger> again what exactly do you mean by labels... a screenshot would be helpful
  • 14:54:23 <shaggz> wait a second
  • 14:55:41 <NamelessCoder> I'm out, will be back later
  • 14:55:42 <shaggz> http://screencast.com/t/eRanUvbMI2t1
  • 14:55:52 <shaggz> Bye Nameless
  • 14:55:54 <danilobuerger> ah
  • 14:55:54 <NamelessCoder> (it has NOTHING to do with randomresult showing up! ^^)
  • 14:56:09 <randomresult> hehe
  • 14:56:11 <danilobuerger> did you upgrade flux without executing the update scrupt?
  • 14:56:13 <randomresult> i now it has
  • 14:56:34 <NamelessCoder> you just have a way of showing up as others leave, randomresult :)
  • 14:56:46 <randomresult> hehe
  • 14:56:51 <randomresult> go to hell
  • 14:56:52 <shaggz> I removed the extension and pulled the git version
  • 14:56:53 <randomresult> :)
  • 14:57:00 <danilobuerger> shaggz there is an update script
  • 14:57:29 <danilobuerger> your problem is caused (with a certainty of 99%) by not executing the update script
  • 14:57:53 <shaggz> hmm
  • 14:58:17 <danilobuerger> shaggz i will have to leave now too, but maybe randomresult can help you out... other than that see http://fluidtypo3.org/blog/news/flux-70-released.html
  • 14:58:43 <shaggz> Am I able to fix it now?
  • 14:58:50 <randomresult> run the script
  • 14:58:55 <randomresult> you know where it is?
  • 14:59:06 <shaggz> Or should I have do that before I updated?
  • 14:59:27 <shaggz> If it is the one in the extension manager I have done that already
  • 14:59:32 <randomresult> you need to update the extension and first after that go to the extensionmanager and hit the button for updateskript
  • 15:00:08 <shaggz> That's what I made
  • 15:00:20 <randomresult> whats ur problem?
  • 15:00:28 <randomresult> wait i reread all the messages
  • 15:00:54 <randomresult> which versions do u have? master or development?
  • 15:00:54 <shaggz> I removed the extension, then I pulled from the dev branch and after that I executed the script
  • 15:00:58 <shaggz> dev
  • 15:01:06 <randomresult> which extension ?
  • 15:01:12 <randomresult> flux?
  • 15:01:33 <shaggz> content 4.1 pages 3.1 vhs 2 and flux 7.1
  • 15:01:40 <BenjaminR> danilobuerger - can you tell me how to remove tt_content ctypes from content wizard?
  • 15:01:44 <BenjaminR> would be grat
  • 15:01:49 <BenjaminR> cant figure out
  • 15:01:58 <randomresult> vhs 2.0?
  • 15:02:04 <randomresult> oha... i have 1.8.5
  • 15:02:16 <randomresult> lemme check
  • 15:02:23 <BenjaminR> dev branch randomresult
  • 15:02:24 <shaggz> Thank you
  • 15:02:39 <randomresult> shaggz?
  • 15:02:46 <shaggz> yeah?
  • 15:02:52 <randomresult> thank you for what?
  • 15:03:11 <shaggz> you wanted to check sth :D
  • 15:03:15 <randomresult> ah
  • 15:03:32 <randomresult> version of T3
  • 15:03:33 <randomresult> ?
  • 15:03:38 <shaggz> 6.1.7
  • 15:03:56 <randomresult> hmmm. im on 6.2
  • 15:04:14 <randomresult> so whats ur problem then?
  • 15:04:31 <shaggz> Can't update because some extension I need are not compatible at the Moment
  • 15:04:41 <randomresult> ok.
  • 15:04:48 <randomresult> so u come from flux 7.0
  • 15:04:49 <randomresult> right?
  • 15:05:00 <randomresult> ahä... i mean 6 to 7 right?
  • 15:05:23 <shaggz> yes
  • 15:05:34 * randomresult is on 6.2 with flux 7.1 / pages 3.0 / content 4.0
  • 15:05:50 <randomresult> and u work with providerextension?
  • 15:05:55 <Torstenn> randomresult: do you know where the localization of nested content elements is done?
  • 15:05:56 <randomresult> and these contents are missing
  • 15:06:09 <shaggz> Yes that's right
  • 15:06:20 <randomresult> Torstenn what u mean?
  • 15:06:23 <randomresult> section?
  • 15:06:28 <shaggz> Wait, not the contents but the label
  • 15:06:38 <shaggz> Did you see the screenshot I posted?
  • 15:06:47 <randomresult> paste it again pls.
  • 15:06:50 <Torstenn> yes
  • 15:07:08 <randomresult> i saw it
  • 15:07:13 <Torstenn> with 3 languages the language of the content elements which are nestes is set wrong
  • 15:07:20 <Torstenn> i want to quickfix it for my customer
  • 15:07:33 <shaggz> http://screencast.com/t/eRanUvbMI2t1
  • 15:08:04 <randomresult> Torstenn normally u find a LLL file in private Language for each language
  • 15:08:19 <randomresult> shaggz everything else works?
  • 15:09:31 <randomresult> Torstenn here u find an example https://github.com/bootstraptheme-for-typo3/fluidbootstraptheme/blob/master/Resources/Private/Language/locallang.xlf
  • 15:09:51 <shaggz> Yes everything else works fine
  • 15:09:59 <Torstenn> hm no i mean in language mode you have the button for "Copy default elements"
  • 15:10:39 <randomresult> ah ok
  • 15:10:43 <Torstenn> and in the command branch of flux danilo has implemented the copy and translate for nested elements, but it doesnt work correct for more than two languages
  • 15:11:07 <Rawai> Hi Torsten I have same problem I guess
  • 15:11:19 <danilobuerger> Torstenn thats a known issue, the workbench branch is not finished yet
  • 15:11:20 <Torstenn> yeah ill take a look
  • 15:11:22 <Rawai> use 7.1 of flux like claus said
  • 15:11:30 <Torstenn> ah ok
  • 15:11:43 <Torstenn> the problem is i need it today :|
  • 15:11:43 <Rawai> than go top list view
  • 15:12:13 <danilobuerger> Torstenn that branch will certainly not be done today
  • 15:12:23 <Rawai> click on edit so you can see the box where to choose the fields you want to see
  • 15:12:28 <Rawai> here you choose:
  • 15:13:10 <Rawai> Language
  • 15:13:13 <Rawai> Columns
  • 15:13:23 <Rawai> the one after Layout
  • 15:13:26 <Torstenn> @Rawai one moment pls
  • 15:14:03 <Torstenn> go top listview?
  • 15:14:06 <Torstenn> what you mean with taht?
  • 15:14:08 <Torstenn> *that
  • 15:14:22 <Rawai> click on Header
  • 15:14:28 <Rawai> than the edit stick will appear
  • 15:14:35 <Rawai> just left beside it
  • 15:14:42 <Torstenn> page properties?
  • 15:14:56 <Rawai> no Page Content
  • 15:15:09 <Rawai> Page Content - Header
  • 15:15:28 <Torstenn> ah ok i know what you mean
  • 15:15:34 <Torstenn> list view -> show only content table
  • 15:15:39 <Rawai> click it
  • 15:15:42 <Rawai> exactly
  • 15:15:48 <Rawai> now mark the following
  • 15:16:02 <Rawai> Language
  • 15:16:12 <Rawai> after layout - Column
  • 15:16:17 <Rawai> Columns sorry
  • 15:16:23 <Torstenn> i did
  • 15:16:27 <Rawai> scroll down
  • 15:16:37 <Torstenn> but you mean after click translate
  • 15:16:38 <Rawai> until you see Aspect Ration
  • 15:16:39 <Torstenn> or?
  • 15:16:45 <Rawai> below the 2 entries
  • 15:16:57 <Rawai> Content area of parent and Parent element
  • 15:17:26 <Torstenn> ok i got this
  • 15:17:32 <Rawai> you need to hold the command (MAC) or the Cntrl (WIN/LIN) button
  • 15:17:45 <Torstenn> yeah i know ;)
  • 15:17:47 <Rawai> than set fields on the right of thebox
  • 15:17:58 <Rawai> now you see above all your CEs
  • 15:18:27 <Rawai> Unfortunately you will loose the language when you want edit now one of the columns which is very bad
  • 15:18:32 <Rawai> but it is like that
  • 15:18:50 <Rawai> work around would be to name your container elements with a language mark
  • 15:19:04 <Rawai> i.e. D for German E for English beside the title
  • 15:19:26 <Rawai> First you need to assign the cloumns
  • 15:19:43 <Rawai> use FluidContentArea for the nested Elements
  • 15:19:50 <Rawai> for all others DONt
  • 15:19:59 <Rawai> as otherwise you will se nothing at all in frontend
  • 15:20:04 <Torstenn> mom
  • 15:20:44 <Rawai> after this is done use the next column which is "Content area of parent"
  • 15:21:42 <Torstenn> wait please
  • 15:21:53 <Torstenn> i think i have some other kind of problem
  • 15:21:53 <shaggz> @randomresult are you still here? ^^ Do you have an idea what I can do?
  • 15:22:52 <Torstenn> ive insert a CE with a nested CE and if i translate it the "container" CE has the right language but the nested element has the wrong language
  • 15:23:19 <Rawai> here you set now the column - you will see that it will give you actually no choice to choose anything so simply choose what is there ;-)
  • 15:24:11 <Rawai> you can change the language to in that view. Have you checked that you named the language the same like the id (flag) is
  • 15:24:23 <Rawai> sometimes it happens that this gets forgotten
  • 15:24:34 <Rawai> and than German shows up with English flag
  • 15:24:50 <Rawai> or English title even it is German
  • 15:24:55 <Rawai> etc
  • 15:28:06 <Torstenn> @Rawai the only problem is that the wrong language is set on "copy default content elements"
  • 15:28:17 <Torstenn> if i change the language after copy all is fine
  • 15:28:25 <Torstenn> like danilo said its a known issue
  • 15:29:14 <Rawai> well we lost all CEs when we translated and need to reassign them to which is very cumbersum
  • 15:30:24 <Torstenn> that works for me at the moment
  • 15:30:26 <Torstenn> :)
  • 15:30:35 <Torstenn> did you the translation with flux 7.1?
  • 15:30:55 <Rawai> no we did them with 7.0
  • 15:31:04 <Rawai> and than updated to 7.1
  • 15:31:13 <Rawai> as claus suggested
  • 15:33:14 <Rawai> for this reassigning work it would be great to have actually a possibility to list all fields you check in parallel so that you can see all of them at the same time and that they don't get sorted a-z after you click the edit button which is total crab
  • 15:36:43 <Rawai> Also the naming of the column does not get into those tables - which means your "Hero" might be Left and your Main will be "Normal" etc- very confusing
  • 15:49:18 <pedda> hi there
  • 15:49:36 <pedda> does anyone run a 6.2 project already?
  • 15:49:42 <pedda> in production..
  • 15:55:03 <randomresult> hi pedda... preparing one ...
  • 15:55:07 <randomresult> no live no..
  • 15:55:17 <pedda> okay
  • 15:55:40 <pedda> it feels a bit like back in 4.4 times
  • 15:56:14 <pedda> just right before 4.5 arrived.. a lot of modules were on the way, but they didn't manage to make it into the 4.4 release
  • 15:56:24 <pedda> same now for 6.2
  • 15:56:44 <pedda> the indexed_search and felogin doesnt work properly ..
  • 15:57:35 <pedda> maybe it'S not the right choice to use those two extensions anyway.. but they should work if shipped with the core ^^
  • 15:58:25 <pedda> so if you'r project requires some login feature.. be warned harry ^^
  • 16:06:12 <shaggz> Hey randomresult, do you have an idea what I could do to fix my problem?
  • 16:08:51 <randomresult> pedda: omg.
  • 16:09:02 <randomresult> good that i dont need login and search for now :)
  • 16:09:20 <pedda> i have a small page running in production based on 6.2
  • 16:09:47 <pedda> there were no issues at all, after i got 6.2 up and running
  • 16:10:13 <pedda> i did it one or two days after 6.2 was released,
  • 16:10:21 <pedda> but as mentioned it was tiny and simple
  • 16:36:02 <danilobuerger> pedda yes i have
  • 16:36:23 <danilobuerger> running smooth
  • 16:36:26 <pedda> do have mentioned extensions in use? (felogin and indexed_search)
  • 16:36:33 <danilobuerger> indexed_search
  • 16:36:35 <pedda> for me too as long as it stays a tiny project
  • 16:36:47 <danilobuerger> oh mine is a bit bigger (not huge though)
  • 16:37:12 <cedricziel> reading your last message without any context
  • 16:37:15 <danilobuerger> :D
  • 16:37:16 <cedricziel> :D
  • 16:37:20 <danilobuerger> thats what she said
  • 16:37:33 <pedda> … you ferkels ..
  • 16:37:46 <cedricziel> lord please, release me from the temptation ^^
  • 16:38:04 <danilobuerger> pedda see l-boxx.de -> thats running 6.2 + ft3
  • 16:38:10 <pedda> i need to relaunch a website with direct_mail, powermail, some user registration, login, and migrarte tt_news dam resources to tx_news fal
  • 16:38:24 <cedricziel> sounds manageable
  • 16:38:34 <pedda> as long as i stick to 6.1 .. yes
  • 16:38:34 <cedricziel> there's patches around for tt_address and direct_mail
  • 16:38:45 <pedda> which don't work properly ..
  • 16:38:50 <danilobuerger> cedricziel if you must you can quote me ;-)
  • 16:38:50 <pedda> tt_address does
  • 16:38:54 <pedda> direct_mail does not
  • 16:39:16 <cedricziel> there is one on github
  • 16:39:59 <cedricziel> näääää; watt ne fiese boxx!
  • 16:46:45 <shaggz> haha
  • 16:50:07 <cedricziel> ;)
  • 17:13:39 <floxx> should i use dev branch for a new 6.2 installation, or is it sufficient to use master branch?
  • 17:15:59 <randomresult> floxx i would go for dev
  • 17:16:09 <Rawai> @pedda we are working on three 6.2 projects but many things simply don't work as you mentioned already. YAG, Indexed_search, felogin, etc
  • 17:16:26 <danilobuerger> indexed_search is working on 6.2
  • 17:16:49 <Rawai> we get errors here and just deactivated it
  • 17:17:19 <danilobuerger> Rawai that will most likely be a configuration error.. indexed_search is definitely working
  • 17:17:34 <floxx> felogin is not working under 6.2? oO
  • 17:17:58 <Rawai> well try to update a site - new sites work right
  • 17:18:18 <danilobuerger> i did update a site to 6.2 and indexed_search works
  • 17:21:25 <NamelessCoder> danilobuerger have you also confirmed that after clearing the indexed_search indexes they rebuild?
  • 17:21:33 <danilobuerger> yes
  • 17:28:16 <randomresult> @NamelessCoder do u have a minute?
  • 17:30:08 <randomresult> what a question. im here - claus is not :)
  • 17:30:20 <randomresult> damn. i need to change nick
  • 17:31:22 <randomresult> @NamelessCoder could you give us a helping hand - travis is a bitch in our project. maybe you have a minute for that. thx.
  • 17:31:35 * randomresult is away now. come - read it .
  • 17:40:01 <danilobuerger> lol @ Rawai
  • 17:40:03 <danilobuerger> uupps
  • 17:40:06 <danilobuerger> lol @ randomresult
  • 17:40:15 <danilobuerger> NamelessCoder also hates travis atm ;-)
  • 17:41:01 <hsp2n> ciao, have a nice day everyone
  • 17:41:49 <Rawai> good night have a nice day
  • 18:18:07 <Outdoorsman> randomresult... Just letting you know that I found out yesterday SharedResources.html used in fbtcustomiser should be ported to TS instead to follow best practice according to @NamelessCoder. Just thought I'd ping you on that if it wasn't on your radar yet.
  • 18:18:36 <randomresult> its removed from fbtcustomizer already
  • 18:18:50 <Outdoorsman> I guess I have an older version :(
  • 18:19:01 <Outdoorsman> Should I update then?
  • 18:19:11 <randomresult> was copied there to show how to override - after i copied, i moved all to TS
  • 18:19:20 <randomresult> no, just delete the two samplefiles
  • 18:19:38 <randomresult> its an empty extension anyway. just to override things.
  • 18:19:41 <randomresult> if needed
  • 18:19:56 <Outdoorsman> Ahhh ok. I manually included it thinking that it was needed and hadn't been included for some reason.
  • 18:19:58 <randomresult> i read your conversation with @NamelessCoder - and then fixed it
  • 18:20:09 <randomresult> no, it was just a showcase.
  • 18:20:41 <Outdoorsman> It's pretty cool too... I actully prefer that method since it's more compact than the TS version.
  • 18:21:15 <randomresult> you mean the assets?
  • 18:22:13 <Outdoorsman> Yes... that compact version of adding assets using something like this is only one line instead of 5 or 6... <v:asset.script name="bootstrap-core" group="cdn" path="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js" external="TRUE" standalone="TRUE" dependencies="jquery" />
  • 18:23:18 <Outdoorsman> I'm fine using TS as well though. I just want to do things the *right* way.
  • 18:23:32 <randomresult> well... both is the same in the end. but you can override TS with TS . so you dont need to change the templates. you can do it in the templated stored in your database. so can fix something in the backend without touching the files..
  • 18:24:21 <Outdoorsman> That would probably save having to flush quit as many cache file too then huh?
  • 18:27:14 <randomresult> dunno.
  • 21:24:23 <gernot_h> hi! is the ext "builder" for 6.2 ready to use?
  • 21:37:38 <BenjaminR> gernot_h: should be... in development branch
  • 21:37:46 <BenjaminR> https://github.com/fluidtypo3/builder
  • 23:06:43 <soee> i would like to see flux and other on http://translation.typo3.org/
  • 23:07:07 <soee> so it would be easy to have it localized
  • 23:45:42 <Outdoorsman> I want to Alternate Navigation Title to be used in my menu. Isn't it supposed to show by default? Docs for titleFields are found here, http://fluidtypo3.org/viewhelpers/vhs/1.3.2/Page/MenuViewHelper.html
  • 23:46:59 <Outdoorsman> This is what I have entered, maybe I just have a typo or something?? <v:page.menu entryLevel="{settings.entryLevel}" useShortcutData="TRUE" titleFields="navtitle,title">
  • 23:47:50 <danilobuerger> Outdoorsman which version of vhs?
  • 23:50:54 <Outdoorsman> I'm using GitHub development version. I updated it about a week ago.
  • 23:52:36 <Outdoorsman> I created a shortcut called "Home" in the page tree that points to the root page. The root page is titled the name of the site with the word "Home" in the Alternate Navigation Title field in page properties.
  • 23:53:10 <Outdoorsman> It is not displaying the word "Home" as I think it should.
  • 23:53:15 <danilobuerger> and the shortcut doesnt get resolved?
  • 23:53:39 <Outdoorsman> Yes, it's resolving and pointing the the uid of the root page.
  • 23:54:26 <danilobuerger> i meant the label... is it only for shortcuts that navtitle is not used?
  • 23:55:23 <Outdoorsman> Checking...
  • 23:55:56 <danilobuerger> actually please update your vhs version to the newest dev on git... i commited some changes to that 2 days ago