05:37:20 <fger> hi guys ... simple question: how do i receive a GET-Parameter value inside a fluidcontent element ?
05:37:39 <fger> i pass it with a f:link.page additionalParams construct from another page
05:38:18 <fger> dont find it in any context - does it have to be prefixed with some tx_fluidcontent_.... or do I need a controller inside my provider extension to pass it ?
05:45:25 <bjo3rn> fger that smells like a content controller although I'm not sure if the current request is available then.
05:51:29 <fger> I did a ContentController in my provider extension and extended the fluidcontent-ContentController. added a myelementAction($myVariableToPass) and am now determining the right additionalParams-syntax in my link.page viewhelper
05:51:33 <bjo3rn> on the other hand you can access the superglobals like $_GET in a content controller *shiver*.
06:07:39 <fger> hmm... i added a controller to my provider extension but it isnt recognized
06:09:18 <fger> looked into the fluidbootstraptheme extension https://github.com/bootstraptheme-for-typo3/fluidbootstraptheme/blob/development/Classes/Controller/ContentController.php
06:09:29 <fger> and inside its ext_tables.php and did it the same way
06:09:49 <bjo3rn> probably an issue with namespaces?
06:11:20 <fger> i register it with XY.XYtemplates in ext_tables.php
06:11:35 <fger> and in my controller: namespace XY\XYTemplates\Controller...
06:14:40 <bjo3rn> btw. the action can't have any arguments
06:23:23 <NamelessCoder> fger you need to nest the parameters in a tx_yourext_content[arg] way
06:23:38 <NamelessCoder> raw query parameters are not intended to be available in any Extbase controller
06:23:48 <NamelessCoder> (if you need that, GeneralUtility::_GET)
06:24:27 <NamelessCoder> to check which scope is expected you can for example generate a link from your controller via UriBuilder or some f:link.action or something in the template that belongs to it
06:51:16 <fger> hmm my problem is more that the controller action isnt weven called
06:54:13 <fger> I'm now transmitting GET-Param called ?tx_XYtemplates_content[discussionID]=6
06:58:55 <NamelessCoder> the controller class name has to match the extension key you register in ext_localconf.php, maybe you left out the "Vendor." part? Maybe the controller class is not named or placed correctly - or maybe the action method is protected or incorrectly named.
06:59:22 <NamelessCoder> e.g. no "Action" suffix on the method. It has to be 100% extbase style.
06:59:49 <fger> i did it like in fluidbootstraptheme
08:33:31 <NamelessCoder> fger whatever the reason may be... https://github.com/FluidTYPO3/flux/blob/development/Classes/Controller/AbstractFluxController.php#L271 might be getting the wrong context so if you're debugging I would start there
08:45:30 <Tjark> hi, i just tested my provider ext. with Custom FCE´s in TYPO3 7.x (7.0, 7.1 and 7.3).
08:45:30 <Tjark> I can select my FCE´s, but the flux fields are not visible.
08:49:04 <fger> @namelesscoder: wow this is strange .. the renderAction of the AbstractFluxController isnt called at all, i cleared cache and did an xdebug breakpoint there ... doesnt work
08:49:14 <bjo3rn> Tjark we released a bugfix today (4.2.4) please try that.
09:03:44 <fger> ah, the resolveFluxControllerClassNameByExtensionKeyAndAction returns NULL
09:18:51 <fger> seems it tries to resolve class "Tx_XYtemplates_Controller_PageController " , but i am using namespaces
09:19:00 <fger> and the pagecontroller class is there
09:23:20 <NamelessCoder> what exactly is your vendor name and extension key? the example dummy names you give aren't valid and if your name uses the same naming that might cause this
09:24:03 <NamelessCoder> in your example, extension key must be "x_ytemplates" in the last example and "x_y_templates" in the ones before that
09:25:01 <NamelessCoder> and you say ContentController is called - but you're giving an example from attempting to resolve the page controller. Are you doing two controllers?
09:26:12 <NamelessCoder> (the resolving method executes any number of times, once for the page and X number of times depending on how many Flux-enabled content elements get rendered)
09:32:47 <fger> ok, i register the content/page structure in my provider-extension like this:
09:33:08 <fger> my extension folder is named f03templates
09:45:03 <fger> the provider extension was built with builder
09:47:47 <fger> i activated hardFail in the resolver and it failed first for the pageController,... I created it the same way like my ContentController
09:57:01 <fger> its f03templates when the method u linked last is called
09:57:04 <NamelessCoder> https://github.com/FluidTYPO3/fluidcontent/blob/development/Classes/Provider/ContentProvider.php#L140 - is how fluidcontent will read the expected extension key which means the value recorded in DB should also contain the vendor name - which I bet yours doesn't
09:58:08 <fger> the builder version i used put in a 'f03templates' in the ext_tables.php register statement
09:58:16 <NamelessCoder> well, those two are, strangely enough, compatible in the eyes of fluidcontent but NOT in the eyes of Flux when resolving a controller class
09:58:40 <NamelessCoder> if you add a new content instance now, does it record the vendor name in DB? (asking so we narrow the problem down)
09:59:00 <fger> and u are right, the DB entries dont have a vendor name if the provider extension is not registered with a vendor name FROM THE BEGINNING
10:00:30 <NamelessCoder> this would be the crucial point - if the new content record has the vendor name, there's no "bug" but it definitely is cause for confusion when you don't have a class alias map
10:03:11 <NamelessCoder> the reason it works with and without vendor name until you try to resolve PHP classes is of course that Flux doesn't care when resolving paths for templates or expected filesystem paths
10:04:11 <NamelessCoder> ah, the wonders of using vendor names in TYPO3 ^^
10:21:19 <fger> but yes, the tx_fed_fcefile is set to F03.F03templates:<filename>
10:23:30 <fger> so i guess as we already have around 250 FCEs with old db-naming i leave the register-process with "f03templates" and map the class in migrations/classes ...
04:39:56 <Guest|25569> Hi everyone, I'm having a problem with flux:form.fields. None of the fields in a content element will show up in the backend. For fields in a page template it works totally fine
06:07:27 <domsann> Any1 an idea why I cannot execute storage->moveFile in my commandcontroller w/o php error?
06:07:55 <domsann> I set permission permissions.file.storage.1 { ....moveFile = 1.....} for the cli user
10:29:00 <Guest|79884> Hello guys, i have a problem with the v:page.languageMenu viewhelper. I have set hideNotTranslated="1". This works, for all languages except the default. When the default is hidden, it still appears in the language menu
10:29:21 <Guest|79884> Would be great if some 1 got a solution
04:57:02 <Guest55629> Hello, i developed a lot of Content Elements with fluidcontent. Those includes also nested elements, like e.g. a slider with nested grids. Now i suddently run into the problem that content inside those nested containers are duplicated or even 3 times visible in frontent. In backend all looks OK. I found some bugreports in this direction, but they s
04:57:02 <Guest55629> eem to be fixed already. Does anybody had this problem also once and has some hints to bugfix or workaround that?
05:17:11 <mrboe> can i have a section/object in an section/object ?
05:26:07 <Guest55629> btw: I have not updated flux, so http://fluidtypo3.org/blog/news/new-colpos-value.html can not be the case i think.
05:26:23 <Guest55629> And: I use current versions from TER
06:51:05 <Guest55629> Hm.... I solved that problem partly. I have in a container two conditions: "{var} == false" and "{var} == true", with which I render content based on a setting here or there. But both conditions were executed. {var} comes from a checkbox, which is not always displaed (displayCond). But still wondering how a {var} can be both true AND false... If c
06:51:05 <Guest55629> heckbox is not displayed, the real value is NULL. I thought in this case only ({var} == false) would be true, but not also ({var} == true)...
06:51:23 <Guest55629> But that seems to be not a flux issue, but fluid...
06:59:18 <NamelessCoder> Guest55629 the comparison above would not work. You should compare with 0 or 1 to determine true/false. Or just put the variable in there, e.g. condition="{var}"
06:59:58 <NamelessCoder> it would not work because Fluid would see that as a string rather than an expression and a string (unless empty or containing a zero) will evaluate to TRUE when cast to boolean
07:05:23 <NamelessCoder> - standalone fluid supports such syntax
07:05:48 <NamelessCoder> (assuming your {var} contains a string "true")
07:06:07 <Guest55629> So problem is that my flux checkbox returns a string, right?
07:12:05 <NamelessCoder> no, your problem could be that displayCond not showing the field doesn't result in the value being zeroed in DB
07:19:13 <Guest55629> Ok, I'll make some tests with that. with 1/0 condition it works
09:21:07 <svenDeKa> Hi guys, I was looking for a way to access values from a parent FCE of inside a child FCE but did not find anything. do you have a tip?
09:28:45 <svenDeKa> i get my parent element with {v:variable.set(name:'parent',value:'{v:content.info(contentUid:\'{record.tx_flux_parent}\')}')}, but how can I access values from flux-fields inside it?
09:38:05 <fger> quick question: can i pass sorted objects to f:widget.paginate and the sorting is kept ?
10:08:48 <svenDeKa> @fger. afaik, the sorting should be kept. but I think it builds an array from the objects you pass to it.
10:10:14 <svenDeKa> for example: IN: ObjectStorage of MyObjects - Out: Array of MyObjects
06:45:09 <Guest|28536> Hi, just trying out fluidcontent_core - Nice work! One thing i miss is the mailform support. The mailform element is quite empty, and i can't find any Template for it in the extension. Is this not yet supported or do i miss something? (I can still use form if i comment "tt_content.mailform < plugin.tx_fluidcontentcore.bootstrap" in extension's setu
10:54:40 <drlimbo> is there a way to use fal images in a FCE with sections?
10:55:06 <drlimbo> sure it is - i mean, is there a way to use multiple fal images in a section?
11:47:08 <papillon6> drlimbo: Few days ago I tried to build an "slider-FCE" with multiple slides, having an FAL-image each. Didn't find a solution finally.
11:48:11 <papillon6> If i added several slides (section) and created the image in the frist section, it was suddently saved in the second slide, too.
11:49:00 <papillon6> I'm using and old-school file-field for now ;-) If you find a solution, please let me know.
06:24:22 <fger> hi guys, will flux/fluidpages etc. be compatible with TYPO3 7.2/7.3 ? are there any breaking changes to be solved or why is FLUX 7.2.1 limited to TYPO3 7.1.x ?
07:59:21 <fger> @namelessCoder: FLUX 7.2 compability ? any breaking changes from 7.1 to 7.2 ?
10:21:48 <drlimbo> is there a way to render all Header as H2 instead of H1 with fluid?
10:21:59 <drlimbo> "content.defaultHeaderType = 2" doesnt seem to work
20:40:40 <Guest|5175> Hi, I've a question! I wanna combine a flux form Select and a fluid switch method, but cannot validate the array! https://gist.github.com/Ourelius/dc0baccc51dce531bf23 (line: 9, 20, 33, 44, 57)
20:41:52 <Guest|5175> Error: No value found for key "TYPO3\CMS\Fluid\ViewHelpers\SwitchViewHelper->switchExpression", thus the key cannot be removed
06:58:39 <svewap> Sorry to bother you, but does anyone know by chance why the field image_zoom is deactivated in the fluidcontent_core extension? The lightbox feature is still a nice feature for tablets and desktops.
08:43:01 <Guest|706> Hey guys, the menu of "fluidcontent_core" won't work :(. I updated it with the update script but I have the error that the template files could not be loaded. I saw that theres a missing php closing tag in the AdditionalConfiguration.php and I added it. Won't work anyway. Need help!
09:14:04 <Guest|58754> Hi. I'm trying to use own templates for the header in fluidcontent_core. Therefore I copied the original fluid-templates to my own template_provider-Extension and added some TS to set the new path: plugin.tx_fluidcontentcore.view.templateRootPaths.1 = ...
09:14:24 <Guest|58754> but unfortunatly my templates ignored. :-(
09:14:45 <Guest|58754> Have I forgotten something?
19:34:51 <flops> just fyi: the site extension isn't working in v. 6.2.14
19:44:43 <flops> so I tried to install the extension manually and created my providerextension. everything seems to work, but only the fluidcontent elements that I created don't get rendered in the frontend. the headline gets rendered but the stuff in the render section just does not show up in the frontend
19:45:07 <flops> anyone an idea how I could get rid of that problem?
19:47:15 <flops> fluidcontent_core elements and obv the pagetemplate are rendered
20:12:00 <NamelessCoder> flops please make sure it created typo3conf/AdditionalConfiguration.php - if it exists, you need to add some lines to it manually (see Resources dir in fluidcontent_core)
20:12:08 <NamelessCoder> and with that, I go to bed :)
20:18:25 <flops> if you need any "help" regarding the site kickstarter problem e.g log-files I could send you these, although I think it is a typo3 problem. a lock-file doesn't get deleted. that problem existed a few times before...
03:32:49 <Guest|38823> Hi. I'm using fluidcontent_core with a fluid template provider and a custom extras extension. My extbase plugin is rendered well, but without the given "header" field. How may I access this or tell fluidcontent_core to render the standard header to the plugin... ?
03:42:42 <Guest|38823> ah. got it - v:content.info helped. :-)
05:51:07 <Guest|5720> Anybody here? :-) I'm looking for a solution to get rid of the <div class="tx-my-extension">-wrap around my plugin. any hints?
05:57:41 <Guest|76735> Hi. Sorry - accidentally closed the browser and destroyed my chat ;-) As I'm not sure if my question has arrived the chat; once again. I want to get rid of the <div class="tx-my-extension">|</div>-Wrap around my plugin. How may I achieve this? Thanks in advance.
13:23:52 <dreadwarrior> Hey guys! Just wanted to drop in to let u know that the FluidTYPO3 (flux, fluidcontent_core, fluidcontent, fluidpages, fluidcontent) suite is working properly on 7.3 with this patch in ur provider extension: https://github.com/dreadwarrior/vantomas/commit/7d89f41cdaf4667ff76cd4906d4c206bebbfbe46
13:23:57 <dreadwarrior> ext:css_styled_content carries this setup and if u disable it, u can't use the default CEs from the core
13:24:03 <dreadwarrior> or rather: use the default CEs from the CType select box for the fluidcontent_core installation ;)
13:24:17 <dreadwarrior> Please let me know what you think about it.
02:54:36 <TYPO3ua> When will flux, fluidpages, fluidcontent for TYPO3 version 7.3?
04:03:19 <Denyerec> Hey All - I might need to secure a subcontractor to switch a site running on TV into one running on the latest versions of FLuidpages and Typo3. If anyone is available for this work and can examine the existing site to come up with a quote please get in touch ASAP.
05:20:46 <NamelessCoder> Denyerec if you tweet about it I can retweet ;)
05:21:27 <Denyerec> I'll see if anyone from the home crowd is interested here first, then I'll take you up on that offer :)
05:32:33 <NamelessCoder> I say it like that because bjo3rn is taking care of coordinating the contributions we expect and our next release depends on those ;)
05:33:02 <NamelessCoder> TYPO3ua see responses to Denyerec, it's about the same thing :)
05:41:47 <NamelessCoder> hoping for a status update myself sometime this week but in all fairness it's vacation time, etc. - as soon as we know, there will be an article (both to inform about coming fixes and to thank the contributing companies)
16:17:48 <flops> I'm new to the whole fluid thing and I really like it but it also drives me crazy.
16:19:25 <flops> I was using fluidcontent_core and I tried to render the default header of a custom content element.
16:21:29 <flops> getting the text is no problem. but I just cannot get the settings from the apperance-tab header.type etc. I think I'm missing something really general
10:32:06 <ndee> since NamelessCoder maybe here: hey guys, I’m getting following error, when I try to execute the „site“ extension: 2015/07/16 16:26:16 [error] 29643#0: *40191 FastCGI sent in stderr: "PHP message: PHP Fatal error: Call to a member function set() on a non-object in typo3_src-6.2.14/typo3/sysext/core/Classes/Core/ClassAliasMap.php on line 141. I’m running the latest 6.2.14 version. Anyone experienced that problem before? I’m running nginx with php5-fpm.
03:42:53 <Guest|24101> Good morning everybody. I'm struggling with some flux/fluidcontent stuff right now and was hoping someone in here can help me. I wanna use the flux:form.container element but it always says "Section expected at container but not found ". Anyone an idea what I'm doing wrong?
03:51:45 <denis_droid> Someone here that can help me with merged settings in flux?
09:08:26 <Guest|22616> Hi there. Is there a way to use fluidtypo3 with typo3 7.2?
05:07:10 <Guest|64502> HI, I just make my way trough the documentation and asked myself if it is possible to set content-elements only for special page-layouts?
05:07:38 <Guest|64502> eg. user selects page "home" and there only 2 of 5 content-elements are allowed to be used
05:21:38 <Guest|64502> oh sorry I thougth you can see my question
05:21:46 <Guest|64502> I just make my way trough the documentation and asked myself if it is possible to set content-elements only for special page-layouts?
05:22:02 <Guest|64502> I just make my way trough the documentation and asked myself if it is possible to set content-elements only for special page-layouts?
08:33:39 <pedda> does editing of pages != standard page work for you if you use fluidpages in that project ?
08:34:01 <pedda> for instance: external url, if i change the external url and hit save, i get an fluidpages error
08:34:22 <pedda> Fatal error: Cannot use string offset as an array in /var/www/public_www/emil-frey-classics.ch/typo3conf/ext/fluidpages/Classes/Provider/PageProvider.php on line 246
09:53:35 <pedda> if i define basic.doctypes of EXT:fluidpages in extension manager in order to be able edit non standard typo3 pages in backend while fluidpages is running, my custom extension "breaks"
09:54:14 <pedda> or at least i get plenty of error messages telling me that flux viewhelpers couldn't be loaded by the autoloader
10:00:01 <Stefanie> Fatal error: Class 'TBE_FolderTree' not found in /html/typo3/typo3_src-6.2.12/typo3/sysext/core/Classes/Utility/GeneralUtility.php on line 4432
10:03:24 <pedda> you need to scroll down that message until some lines occur, which you recognize, as you're dealing with some feature of typo3 which starts breaking at a certain point
10:30:19 <pedda> it won't appear magically in frontend unless you use a viewhelper to render a FAL image
10:30:44 <pedda> this is what you're using: https://fluidtypo3.org/viewhelpers/flux/master/Field/Inline/FalViewHelper.html
10:31:06 <pedda> you see this: Example how to get the first file reference from a fluidcontent element, for the flux field named "settings.files": {v:content.resources.fal(field: 'settings.files') -> v:iterator.first() -> v:variable.set(name: 'settings.files')}
10:33:30 <mneuhaus> ok, then, *pulling up sleeves* lets find out what fails here :)
10:39:24 <drlimbo> hi there, does someone already find a good solution for dynamic image rendering (size based on viewport)
10:40:17 <mneuhaus> drlimbo: you mean through an ajax call?
10:41:25 <mneuhaus> afaik you can't get information about the viewport through pure php means. only javascript can read detailed info like that. you could maybe "guess" based on the screen resolution i think there was a way to read that info using php
10:42:07 <mneuhaus> scratch that, even screen resolution isn't accessable without js
10:46:05 <mneuhaus> for me it seems not flux itself is the issue but the Compatibility6 ext
03:18:07 <Guest|95418> Good morning everybody. I'm struggling with some flux/fluidcontent stuff right now and was hoping someone in here can help me. I wanna use the flux:form.container element but it always says "Section expected at container but not found ". Anyone an idea what I'm doing wrong?
03:47:25 <xaver> Guest|95418: i never used container, but this message is from T3 core. Maybe provide a gist with code. looks like somehting isn't found
03:48:44 <xaver> around line 68 in typo3/sysext/backend/Classes/Form/Container/FlexFormElementContainer.php
03:49:19 <xaver> also provide version informations of flux fluidcontent and T3
04:37:57 <mneuhaus> so, after a bit of digging around yesterday i now know more about srcset and picture element regarding responsive images
04:38:40 <mneuhaus> those 2 serve to similiar, but different purposes. srcset ist meant to offer different image sizes of the *same* focus and aspect ratio
04:39:20 <mneuhaus> picture element on the other hand is more granular and can offer different focus and aspect ratios to better fit into the specific breakpoints
04:39:40 <mneuhaus> so, i guess both could/should be implemented. i got a basic srcset version running:
04:42:59 <Guest|95418> Hi @xaver. Thanks for your reply.
04:43:24 <Guest|95418> Gist: https://gist.github.com/flatchar/4a5daaa9ca67e8b57eca. I use typo3 7.3.1, flux 7.2.1 and fluidcontent 4.2.4. Any ideas? :)
04:44:19 <Guest|95418> well. clever. drop the dot at the end ;) https://gist.github.com/flatchar/4a5daaa9ca67e8b57eca
04:49:48 <Guest|95418> Even the example for Bootstrap Grids on fluidtypo3.org (https://gist.githubusercontent.com/misterboe/34018646f84e4c8a81b6/raw/ColMasterFlex.html) uses Containers but doesn't work for me.
05:20:52 <xaver> Guest|95418: maybe it is broken in v7
08:20:30 <mneuhaus> i'll see if i have time to continue tonight
08:21:26 <mneuhaus> srcset is working but code-wise quite ugly i think i'll make a trait for srcset and add it to the 2 existing image viewhelpers (resourse.image + media.image)
08:56:14 <drlimbo> is there a viewhelper to put some "content" in the <head> sections -> like v:asset.script but without script =P
08:56:37 <drlimbo> i need some conditional-comment + script like <!--[if lt IE 9]> .. <script...
08:58:17 <drlimbo> same as typoscript page.headerData
08:59:28 <mneuhaus> from where? a page template, content element, plugin, etc?
09:00:24 <drlimbo> sorry, from fluid page template where i load all scripts and css with v:asset.
04:48:16 <Guest|65519> Hi guys. Quick question; I have a table containing a couple thousand records. I need to be able to select one or many of these records to form an arbitrary group that is later rendered on the page. Basically, you select a few records and those are thrown into a table. That's all. So far, I tried to achieve this using a simple select-box, as well as
04:48:16 <Guest|65519> flux:field.relation, both in combination with flux:wizard.suggest. Sadly, neither works as intended. I can fill the select-box by using a custom viewhelper, but that implies loading all records right away, which might slow things down and seems pretty unnecessary. I also couldn't get the suggest-wizard to list any entries at all. flux:field.relati
04:48:16 <Guest|65519> on, on the other hand, does work with the wizard, but it also loads all the records right away. Further, I was not able to show any other value than that of the first column of the record. It's numeric and pretty non-descriptive, an obvious no-go. I'm pretty new to this stuff, so please forgive any obvious ignorance. I did look at fluidtypo3 refere
04:48:16 <Guest|65519> nce, but my questions remain the same. Using Typo3 version 6.2.1, fluid 7.2.1.
05:10:29 <ToM04> #1225709596: The template files "/srv/www/nginx/typo3conf/ext/wu_template/Resources/Private/Layouts/Content.html", "/srv/www/nginx/typo3conf/ext/wu_template/Resources/Private/Layouts/Content" could not be loaded
05:11:48 <ToM04> I am not sure why a content.html gets used. my content-element is called testimonial.html
05:17:37 <ToM04> ok. looks like I have to change my page template
08:23:36 <JohPie> jmverges: I miss a button to reopen a issue... :(
15:27:51 <mneuhaus> would you like to speed up the boot time of your apps? you can start this app immidiatly by using 1 shitcoin or wait 15min for it to load. 100shitcoins cost 19.99€
15:28:15 <mneuhaus> windows 10 with in-osx-purchase
15:30:28 <mneuhaus> you need to hide costs behind coins, makes more money
15:30:47 <mneuhaus> because you don't "pay with money"
15:31:09 <jmverges> did you start in computers with windows?
15:31:44 <mneuhaus> me? yep, used 95,98,2k,xp and vista
15:31:56 <mneuhaus> after vista 2 years ubuntu, then mac
15:33:02 <xaver> i can't see appserver sessionbeans anymore -_-
15:34:48 <jmverges> I started with msdos and 3.11, now even my father uses ubuntu
15:35:23 <mneuhaus> toyed with msdos and 3.11 on the pc of a friend, but my first own pc was a pentium 2 with win95
15:44:09 <jmverges> the only "good" thing microsoft did was putting "cheap" computers in our homes. the bad thing about that is people used to work with it. how many lost and paid hours of developers in projects doing fucking crossbrowser for fucking IE?
15:44:46 <xaver> jmverges: windows is good for a lot of things :)
00:24:54 <mneuhaus> xaver: lol :D "Note: In order to ship our implementation of srcset in time for Windows 10, Microsoft Edge currently does not support the width (w) descriptor – we’re working on adding this in a future update."
00:25:07 <mneuhaus> the width descriptior is the most useful part ^^
00:44:34 <intva> I have a strange problem. made a simple file field, saved an image. in the var the whole path and the imagename is saved but v:media.image just renders the URL. same with f:image
02:13:51 <intva> hi rosieres. right now I changed it to fal inside the sections. but this doesn't work too
02:14:19 <intva> is it possible to use flux:field.inline.fal inside a section-object
02:15:25 <intva> this is my code: http://pastebin.com/i0e6tQST
02:15:52 <MarcHH> Hi. When using the TYPO3 content element "Insert Record" to make a reference to another content element I get an error in the FE which breaks down to the wrong SQL-statement "SELECT * FROM tt_content WHERE uid IN () ORDER BY sorting ASC". TYPO3 6.2.14, current flux,vhs etc. PageProvider build with FluidPowered TYPO3, content rendering with fluidcon
02:41:32 <intva> haha, yes it is just for me testing and quick and dirty
02:42:35 <rosieres> and why don't you set settings.previewImage ? in form.object
02:46:47 <MarcHH> Hi again. :-) When using the TYPO3 content element "Insert Record" to make a reference to another content element I get an error in the FE which breaks down to the wrong SQL-statement "SELECT * FROM tt_content WHERE uid IN () ORDER BY sorting ASC". TYPO3 6.2.14, current flux,vhs etc. PageProvider build with FluidPowered TYPO3, content rendering wit
02:47:23 <rosieres> intva: you are also good advised to use sheets -> flux:form.section -> flux:form.sheet
02:47:46 <MarcHH> I've seen related bug reports (#103, #160) but can't figure out which is already fixed and which may be a good/bad idea to patch locally...
03:16:32 <rosieres> intva: removing unessecary nesting and using sheets as best practice should make it easier. And maybe the translation then appears.
03:17:54 <intva> but unessecary nesting? I just want a section with some fields inside. thats it
03:19:41 <rosieres> intva: see the first listing -> https://fluidtypo3.org/documentation/templating-manual/templating/creating-templates/language-usage.html
03:58:09 <sitegeist_alex> Good morning everybody! If have a question regarding https://github.com/FluidTYPO3/vhs/issues/808
03:59:40 <sitegeist_alex> We are still in progress with the update of vhs and found out that the following was working before the update of vhs to the current development branch:
06:00:10 <NamelessCoder> sitegeist_alex is <v:resource.image> itself outputting "Array" or does it put "Array" as identifier? In any case: issue re-opened!
06:02:01 <7GHAAT81V> [builder] NamelessCoder closed pull request #71: [TASK] Updated extension name field description (development...updateLabel) https://github.com/FluidTYPO3/builder/pull/71
06:02:01 <18VAADLRE> [builder] NamelessCoder pushed 2 new commits to development: https://github.com/FluidTYPO3/builder/compare/62a96cd8e2f6...6617cecc1b04
06:02:01 <18VAADLRE> builder/development cfb5992 jmverges: [TASK] Updated extension name field description
06:53:38 <Guest|67067> hi, I have fluidcontent_core running and want to add a checkbox to the upload.html. is this possible?
08:03:25 <moger-xx> I am running fluidpages and have a page template "category" with a corresponding categoryAction in my pageController. I also have a "detail" template with a detail action. Now , in categoryAction, I want to forward to detailAction. I get an exception: "Could not analyse class:Tx_ConMyprovider_Controller_PageController maybe not loaded or no autol
08:03:41 <moger-xx> i simply do $this->forward('detail');
08:04:39 <moger-xx> what I want to archieve is a typo3 page that switches dynamically between two page templates.
08:05:14 <moger-xx> of course I could also do this with one template, a variable and two partials but i prefer two distinct actions and templates.
09:13:00 <Timross> Hi, I'm trying to override one of the partials in fluidcontent_core with my own partial in my extension. but it doesn't seem to work.
09:14:16 <Timross> I've added the following to my setup text in my ext,
09:38:16 <Guest|82794> Hi I get the error '"" is not a valid template resource URI.' if I use the current development flux version
11:02:38 <Timross> For anyone that is interested, the FluxService has a method getDefaultViewConfigurationForExtensionKey() that sets the default template root paths at index 10
11:09:17 <Timross> I don't want a variant though, I want to ALWAYS render an image in a custom way. So I want to make use of the overlay functionality that comes wiht the templateRootPath method
11:09:53 <Timross> the fact that the content_core typoscript sets the index at 0. implies that I can override it at .1
11:10:04 <Timross> But that's not the case as it is also set at .10
11:12:20 <Timross> but I do understand that variants are a flexible solution.
11:27:26 <Timross> ha, I just checked the latest version of https://github.com/FluidTYPO3/flux/blob/development/Classes/Service/FluxService.php#L290
11:27:45 <Timross> the default index is now set to .0
11:28:01 <Timross> I've just got an older version.
11:28:46 <Timross> fixed in dev, but not master yet.
11:30:58 <xaver> Timross: master is only the release from TER
11:50:51 <Timross> @xaver: I installed with composer, but it's all cool. It's working now. Just took me a while to get it all straight in my head. Thanks for your help
15:04:38 <Outdoorsman> Hi again NamelessCoder. Boris Schauer (mrboe) Just tipped me off to adding `\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addToAllTCAtypes('tt_content','--div--;Categories,categories','');` to `ext_tables.php` of my provider extension, which makes the Categories tab and it's contents appear on TYPO 7.2 content elements now. For some reason the categories just quit showing up on content elements with the advent of TYPO3 7.2 though it was
15:04:38 <Outdoorsman> worked out of the box in 6.2 and 7.1. I submitted a Forge issue for it... https://forge.typo3.org/issues/68650
08:33:25 <Konstantin> First time here. Seems nice :)
08:40:27 <Konstantin-sal> I've made a custom HTML template file for content element made inside my FLUID extension. How can i add images using standard backend tab Images ? It isn't even activated by default... Here is the file with my gallery