09:13:15 <alexander_dick> I'm wondering if it is possible to have the page configuration inherited from the main page - this was possible earlier but now it won't work
09:13:56 <alexander_dick> I have a frontpage and a subpage. on the subpage I want common settings to be inherited from the frontpage layout
09:21:03 <alexander_dick> now I have included the same "base" settings for every page layout. have to configure it twice therefore. http://i.imgur.com/3EUFxqC.jpg
09:22:17 <BenjaminR> alexander i dont have a tipp regarding this because it should work but id like to ask something different: is it likely that these settings (pids, ga etc) change depending on page?
09:26:52 <alexander_dick> I have some specific settings for the subpage layout but all other settings should be inherited
09:27:03 <BenjaminR> since these values are stored in flexforms most times it is better to place settings that are not likely to change to typoscript constants
09:27:50 <BenjaminR> and since typoscript settings are inherited and assigned to the page template and fce automatically this would result in the same behaviour inside the template
09:28:47 <BenjaminR> assigning plugin.tx_yourproviderext.settings.topMenuRootPid in ts setup would make it available in template as {settings.topMenuRootPid} automatically
09:57:46 <BenjaminR> when i am grown up i will be a coder too
09:58:53 <danilobuerger> 1) you change storage to case sensitive 2) remember last uid in sys_file 3) go to filelist module and click through all folders, this will regenerate sys_file but with different uids 4) execute select a.uid, b.uid from sys_file as a, sys_file as b where a.identifier = LOWER(b.identifier) AND a.uid != b.uid AND a.uid < ####YOUR LAST UID FROM 2)#### 5) regex the result with /([0-9]+)\t([0-9]+)/delete from sys_file where uid=$1; update
09:58:53 <danilobuerger> sys_file set uid=$1 where uid=$2;/ 6) execute those new sql statements 7) done
10:23:13 <danilobuerger> alexander_dick you cant change the page template like that.. what you will have todo is move the stuff in the rendering section (often called "Content") to a partial... then check via f:if which of the two partials you want to display
10:24:31 <BenjaminR> danilobuerger - what about a pageprovider which checks for a TCA value that the extension sets and switchs according to that value the action?
10:24:58 <danilobuerger> yes BenjaminR but thats far more work than just having 2 little partials and 1 f:if
10:46:01 <BenjaminR> danilobuerger - is there are something like v:page.info for content elements? something to resolve current content element. what for? want to query record title in a thrid party plugin
13:21:16 <shaggz> Hey guys, I always get this error if I clear the cache. PHP Warning: scandir(): (errno 13): Permission denied in .../typo3_src-6.1.7/typo3/sysext/core/Classes/Utility/GeneralUtility.php line 2748. I'm using fluidcontent 3.1.0, fluidpages 2.1.0, flux 6.0.2 I know there are newer versions, but at the moment I only want to fix this issue. I debugged i
13:21:17 <shaggz> t and saw that scandir(/) is called. That's obviously not correct. Does anybody know what I'm doing wrong?
13:35:56 <NamelessCoder> shaggz did you change *any* template, layout or partial root path to "/" ?
13:38:25 <NamelessCoder> shaggz maybe you can debug typo3conf/ext/fluidpages/Classes/Service/PageService.php:299 - this is the *only* place in any fluidtypo3 extension where scandir() is used.
13:38:50 <NamelessCoder> (a stack trace would help a great deal)
13:39:26 <shaggz> Hi Nameless, i paste the stack trace
13:39:27 <NamelessCoder> Momodedf this page should explain everything: http://fluidtypo3.org/documentation/templating-manual/appendix/migration/from-flux-6x.html :)
13:39:37 <NamelessCoder> pastebin, don't paste here ;)
13:40:23 <shaggz> for sure but i prefer gist, but should be the same right?
13:41:00 <NamelessCoder> absolutely, any paste-site will do
13:43:24 <NamelessCoder> Momodedf there is additional select/group field specific info here: http://fluidtypo3.org/blog/news/flux-forms-revisited.html - scroll down to the section called "Breaking changes"
13:45:24 <NamelessCoder> Momodedf basically you should now use flux:form.relation - and you should not need to change anything except the namespace (as described on the first url) and the tag name of your current "group" field to become flux:form.relation, arguments are the same.
13:52:25 <Guest|73114> we have severe problems with fluid rendering speed. Are there any insights using advanced caching mechanismns like ESI?
13:54:07 <NamelessCoder> Guest|73114 if your server has a slow filesystem, uses a networked database server, has no opcode caching and (worst of all) runs TYPO3 versions below 6.2 you *will* see bottlenecks in I/O.
13:55:12 <NamelessCoder> in addition Fluid can be hard on filesystems which do not support proper memory caching of files
13:58:50 <Momodedf> Hi NameslessCoder thanks for your help, actualy i've seen those articles and alreat tried with a relation, but it make me a full list of my website's tt_content and I'ld like to use a wizard to select them
13:59:28 <Guest|73114> We use 6.2 on a extreme performant Ubuntu Rootie with APC, memcached (local as well as AWS Elasticache tested). The filesystem is EBS-backed, but i have to do some research on memory caching of files ...
13:59:34 <NamelessCoder> Momodedf you may be missing "size" attribute set >1 to make the field a two-pane one with selector on the right and selected values on the left
14:00:38 <Momodedf> I have a two-pane already, but I would like a wizard with pagetree like it used to
14:00:38 <NamelessCoder> Momodedf internally the flux:field.relation viewhelper still creates a "group" type TCEforms field, it just needs the proper attributes (this particular field type has a lot of different displays depending on size, multiple and maxItems properties)
14:01:02 <NamelessCoder> if the "group" field could do that before, the "relation" field can do it now ;)
14:23:11 <misiak> Hi, is there any ft3_empty extensions for FLUX 7? Thnx.
14:53:01 <Momodedf> is there any way to add a pagetree wizard to flux relations ?
15:08:29 <Torstenn> Hi there, i'm using typo3 6.1.7 and fluidcontent, if i create a fluidcontent element with a flux:form.content i can put a plugin into that content element, all works find
15:09:02 <Torstenn> but if i move the content Element to anote fluidcontentelement (in a section too) the colPos ist set to "0" instead of -42 it was before
15:37:55 <Momodedf> yes I've seen it NamelessCode but i dont want to make relation to pages but to tt_content on those pages
15:38:46 <Guest|90779> Maybe someone can help me please? I've set up some containers on page templates to add teasers to a page... that's working quite well - but now it comes to localisation... how is it possible to localize the fluxform and it's fields? (i mean not the labels, i mean how can i localize the contents of the fields?) Thank you!
15:39:00 <NamelessCoder> you asked about how to create a field with renderMode=tree, flux:field.tree is how you do that
15:40:03 <NamelessCoder> Guest|90779 this is an open feature request, see https://github.com/FluidTYPO3/flux/issues/506
15:40:40 <Momodedf> NamelessCoder that's because I'm lost with my tt_content container type ... maybe I'm on a wrong way to do it ..
15:40:59 <Guest|90779> Oh no! I thought I've almost finished the development... :-(
15:41:22 <Guest|90779> But thanks for your answer....
15:41:40 <NamelessCoder> it is possible to manually add the tx_fed_page_flexform field to page overlay (and extend DB schema)
15:43:22 <shaggz> Hey nameless I don't have the stack trace at the moment but I can say that it is noch fluidpages. If I remove fluid content the error is gone. Its the get_dirs function in GeneralUtility.
15:43:44 <shaggz> Does that help in a way? It seems that fluidcontent triggers it somewhere
15:44:49 <Guest|90779> Was this answer (tx_fed_page_flexform) for me?
15:45:50 <NamelessCoder> Guest|90779 yes, that one was for you
15:47:55 <NamelessCoder> shaggz it's likely that you either have not included the static TS to set templateRootPath for your provider extension or another extension containing FCEs. Or that the static TS simply contains no view paths.
15:48:14 <NamelessCoder> shaggz for more debugging check typo3conf/ext/fluidcontent/Classes/Service/ConfigurationService.php:253
15:51:25 <shaggz> from which version do you speak nameless?
15:54:07 <shaggz> Is that a big problem? Then I have to try it again with the update
15:56:58 <NamelessCoder> shaggz to confirm that you're not experiencing an old bug yes, you should try the development branches
15:58:37 <shaggz> Normally I do, but this time not because I experienced problems after the update. But you're right. I update it and tell you if the problem is gone
16:02:42 <shaggz> and the other extension also to the latest version
16:03:09 <Guest|90779> Nameless, thank you for your help - i added "tx_fed_page_flexform" to the install tool overlayfields.... and i extended pages_language_overlay with tx_fed_page_flexform... that should be ok, should'n it?
16:03:35 <NamelessCoder> Guest|90779 yes that should be it.
16:04:15 <NamelessCoder> shaggz replace your extension directories for flux, fluidcontent (and fluidpages) with git repositories checked out on the development branch. See http://fluidtypo3.org/blog/news/62-install-script.html for the necessary commands
16:05:23 <shaggz> Thanks for the link but there we have a problem. I can not update to 6.2 because 2 Extensions that I have to use are only working until 6.1
16:06:07 <NamelessCoder> you don't need to upgrade, you just need to see the git clone commands ;)
16:07:04 <shaggz> I just looked at the code, sorry wanted to say that the clone commands should work
16:45:25 <Outdoorsman> Is it possible to make a "Text with Image" content element from CSS_STYLED_CONTENT responsive?
16:56:04 <Outdoorsman> @NamelessCoder randomresult mrboe or others... It would be nice to make css_styled_content or fluidcontent_core integrate with fluidbootstraptheme such that you could easily just select if you wanted an image to be responsive from within "Text with Image". Would this be too complicated or even possible?
17:04:49 <Torstenn> Hi, ive a question to fluidcontent, if i insert a plugin into a fluidcontent section all works fine, but if i move the plugin between two sections the colPos is changed from -42 to 0 which results in a double representation in BE and FE, any ideas?