12:18:30 <drlimbo> is there a way to parse from DateTime to String? "Cannot cast object of type "DateTime" to string."
12:54:03 <steffen> Hello. I have 3 templates. Is it possible to place the stylesheet and javascript references in one single file or in typoscript somehow to avoid duplicate content? Thank you.
12:58:37 <braguzz> hi {v:content.render(pageUid: 1)} works
12:58:46 <braguzz> {v:content.render(pageUid: 139)} doesnt work
13:34:02 <ilCerchiari> I'm encountering this exception: Template could not be loaded. I tried "/[...]/typo3conf/ext/fluidpages/Resources/Private/Templates/Page/Default.html" on a migrated TYPO3 (from 4.5 to 6.2) with all the latest fluidtypo3 extension. The odd thing is that I get that exception only if I try to load a page directly from frontend. If I'm logged into be t
13:34:02 <ilCerchiari> he page renders correctly and then also if I load it without be session. Any clue how to solve this?
14:34:37 <ilCerchiari> Doing some trials I think i found the problem, it seems to be some incompatibility, at some level, with extensions workspaces and version... disabling them makes the problem vanish. Just to let you all know.
21:46:33 <NamelessCoder> did you read https://fluidtypo3.org/documentation/templating-manual/introduction/fluid-best-practice.html#fluid-performance-concerns?
21:46:45 <NamelessCoder> did you set Production context?
21:48:19 <jmverges> how could I know if nc_staticfilecache is working well?
21:48:55 <jmverges> I mean, probably I could increase the performance with best practices and I will, however I need some solution that increases a bit the performance
21:49:04 <NamelessCoder> don't know, but fixing bad performance starts -before- you implement additional hard caches
21:49:33 <NamelessCoder> don't be logged in to the BE while testing this, for example
21:49:52 <jmverges> I'm testing in one browser where I'm not logged
21:50:00 <jmverges> and in the otherone I'm logged
21:50:16 <NamelessCoder> limit the amount of typoscript you use. confirm that your templates are compilable and if they aren't, separate the uncompilable viewhelper usages into partials
21:50:41 <NamelessCoder> seriously, this is a HUUUUGE subject to open up and books have been written about it
21:51:28 <NamelessCoder> there is no silver bullet - you have to be aware of your site's structure and composition in order to determine the bottlenecks
21:54:17 <jmverges> I just installed yesterday cookie extension
21:55:19 <NamelessCoder> we're moving quite far from a fluidtypo3 context ;)
21:55:40 <jmverges> I know, sorry, I'm just worried
21:56:20 <jmverges> NamelessCoder, do you work with Varnish or nc_staticfilecache?
21:56:24 <NamelessCoder> first you have to determine which part of your site is causing bad performance. Setup, templates, records, etc.
21:58:24 <NamelessCoder> there are a few articles about Varnish+TYPO3 written by TYPO3 agencies, I recommend studying those
21:58:54 <NamelessCoder> but in general: you should learn Varnish before you just jump in and expect it to solve everything. And still: you should fix the bottlenecks rather than hiding them.
22:00:27 <jmverges> I discovered just now that I had installed cookies extension and it uses USERINT and then pages where not cached with nc_staticfilecache
22:01:03 <NamelessCoder> what I said about locating and fixing the bottleneck still applies
22:01:56 <jmverges> I'm sure, however my situation is that I'm doing a lot of things by my own and I'm working quickly... no unit test, duplications some times...
22:02:17 <NamelessCoder> I know this isn't what you want to hear but in this case you are most definitely doing it wrong
22:02:25 <NamelessCoder> you should never, ever be too busy to do it right