11:30:02 <mrboe> @cedricziel if i want to make a "gallery" funktion i dont have to put the fal field into a section if i understnad right
11:30:11 <Denyerec> cedricziel I wanted to ask someone what that actually MEANT
11:30:18 <Denyerec> as the document just says "Treat the ID as a reference"
11:30:25 <Denyerec> which is useless to someone who doesn't know whats going on :/
11:30:46 <cedricziel> Den: FAL has a type FileReference
11:31:11 <cedricziel> if you have a fal field, it returns the uid of the FileReference
11:31:46 <Denyerec> The so instead of resource.image I could use f:image and just throw the variable {image} into it, with treadIdAsReference ?
11:31:48 <cedricziel> but as it's possible to use strings in those fields as well, you need to explicitly tell the vh to treat the src value as reference
11:32:08 <Denyerec> And then wouldn't need to reference image.0.uid ?
11:32:28 <cedricziel> it get's a little more complicated when you have more than one reference, but yes, like that
11:32:52 <cedricziel> mrboe: fal in section objects doesnt work as there's no reference id
11:48:15 <Denyerec> you say things like "It expects a FAL resource", but I have no way to identify what that is, if I've got one, and how to get one ;)
11:48:22 <Denyerec> Everything I debug is either string or array.
11:48:48 <Denyerec> Unless the numeric type field is the key? If so, where's the lookup between the integers and the human names?
11:50:45 <Denyerec> I feel like this is a pretty large blackhole in my understanding of what's going on :/
12:07:53 <benjamin_654> i have a error with current dev versions: Fatal error: Call to a member function update() on a non-object in [...]/typo3conf/ext/flux/Classes/Service/ContentService.php on line 286
12:08:18 <benjamin_654> somehow D.I. does not work : https://dl.dropbox.com/u/25310351/Screen_Shot_2014-04-30_at_12.03.44.png - any idea what the problem might be?
12:10:13 <danilobuerger> benjamin_654 clear typo3temp and caches
12:14:35 <benjamin_654> danilobuerger: clearing cache did not help, i still get this error when using d&d : https://dl.dropbox.com/u/25310351/Screen_Shot_2014-04-30_at_12.13.22.png
12:16:42 <danilobuerger> in that case you didnt properly clear your caches
12:17:09 <danilobuerger> delete everything inside the directory typo3temp, go to the install tool (yes the install tool) and click clear all caches
12:18:10 <Denyerec> danilobuerger - any offers on my datatype investigation while you're here?
12:20:16 <benjamin_654> holy cow! clear all caches in the install tool did work!
12:43:44 <mrboe> could anybody of the team doublecheck
13:04:51 <Denyerec> randomresult, mrboe, perhaps you guys know about my datatype problem ?
13:05:04 <Denyerec> No-one seems able to tell me how I identify a datatype in f:debug
13:05:36 <Tjark> hi, is there a way to remove the "Select & Upload files" Button within the FAL Box in my own Extension ?
13:06:46 <mrboe> @Denyerec just have to get my debug working
13:26:13 <benjamin_654> Denyerec: f:debug does: "return \TYPO3\CMS\Extbase\Utility\DebuggerUtility::var_dump($this->renderChildren(), $title, […]);" - maybe the ->renderChildren() converts objects to arrays - if thats true, there is no easy way of debugging types within fluid. When you call the var_dump from a controller you should see the type info ..
13:27:02 <Denyerec> Maybe f:debug needs extending then ?
13:27:17 <Denyerec> because every time I've hit an error it's typically because I'm trying to pass the wrong datatype to a VH
13:27:23 <Denyerec> and the debug... is always "array"
13:27:31 <Denyerec> It's VERY confusing for a new user :/
13:28:14 <benjamin_654> Denyerec: can you give a specific example?
13:28:25 <Denyerec> Trying to use an image viewhelper
13:28:38 <Denyerec> I get an exception telling me that it expects a resouce of type X
14:12:55 <benjamin_654> Denyerec: what vielhelper are you using, and where do you get the variable {image} from? maybe you can post you template (a miminal version) in a gist?
14:27:47 <benjamin_654> its an array: /typo3conf/ext/vhs/Classes/ViewHelpers/Resource/Record/AbstractRecordResourceViewHelper.php
14:39:49 <Guest|42219> hi, i'm using VH "flux:field.inline.fal" to insert images into a fce (Configuration Section), can anybody give me a hint how to render this in frontend..which VH should i use for that?
14:57:11 <Guest|42219> is there any extension which takes advantage of the most common use cases for fces with fluid...it' really hard to get started with the many question coming up
15:21:57 <anhadikal> need to render the title of EXT:news in v:page.breadCrumb ... how can it be done?
15:23:05 <benjamin_654> Denyerec: <f:image image="{image.0}" width="210c" height="70c"/> needs a filepath or a id, i haven´t seen a viewhelper that needs a complex type
15:23:55 <benjamin_654> Denyerec: if you pass a reference id to f:image instead of a path you also have to set treatIdAsReference="1"
15:24:44 <Denyerec> I am clearly not explaining myself.
15:25:10 <Denyerec> How do I know what type that "something" is
15:25:16 <Denyerec> So I know where else it can be used
15:28:37 <benjamin_654> Denyerec: i dont thing there is a type/class involved here. its just a array and you take from it what you need: <f:image image="{image.0.url}" width="210c" height="70c"/> ?
15:29:28 <Denyerec> So... if extracting the resource returns an array...
15:29:33 <Denyerec> ...why do VH's require specific types ?
15:31:28 <benjamin_654> Denyerec: are you sure that this error comes from VHS? or from some typo3 function that cant create a image with the given src?
16:22:13 <ad_on_is> @mrboe thx, works as expected ;-)
16:30:23 <benjamin_654> i have a problem where drag&drop from and to flux fces does not work (development branch / TYPO3 6.2.2) - anyone having the same issue?
16:42:48 <Denyerec> This file is Good Code. It has sensible and consistent names for functions and variables. It's concise. It doesn't do anything obviously stupid. It has never had to live in the wild, or answer to a sales team.
16:58:07 <mrboe> here is my solution for today - field.inline.fal / content.resources.fal / Image Gallery > https://gist.github.com/misterboe/a34e34578ace5d8596fd
18:19:40 <Outdoorsman> Just got a /ROOT_DIRECTORY/typo3conf/ext/flux/Classes/Provider/AbstractProvider.php on line 964 when trying to view all frontend pages
18:49:30 <Outdoorsman> Doing it again to make sure
19:18:39 <Outdoorsman> Sorry Denyerec I was on the phone. I just deleted typo3temp/* and flushed frontend and general cache in TYPO3. To my knowledge I have not changed anything that would cause the issue.
19:18:54 <Denyerec> Tried the caches in the install tool ?
19:19:18 <Outdoorsman> I'm not sure which ones would be applicable?
19:19:44 <Outdoorsman> I'm there right now under "Clean Up" is that where you're talking about?
19:20:41 <Denyerec> Yeah just nuke every cache you can
19:20:52 <Denyerec> at least when NamelessCoder or danilobuerger come back you'll be ahead of the curve
19:21:11 <Denyerec> What's the whole errpr message?
19:21:18 <Denyerec> You pasted the file and line, but not the error
19:22:05 <Outdoorsman> Well I set it to Development mode in the install tool so I could see that but that's all that was shown.
19:22:20 <Outdoorsman> I haven't look at error logs.
19:22:30 <Denyerec> Normally with errors all turned on you get pretty solid exception output
19:24:53 <Outdoorsman> I'm finding this a little strange and wonder if it's user error because I have another 6.2 website with the same extensions with the addition ftbcustomiser that seems to be working. I have them both set up on cron to pull the latest dev versions every night and clear cache so everything should be equal.
19:25:42 <Outdoorsman> I'm going to clear all cache again on the other site to see if it starts having the same error too.
19:26:49 * Denyerec is just the resident photographer
19:33:07 <Outdoorsman> I just went to database analyzer and it wanted to add tx_fluidpages_templatefile and tx_fluidpages_layout fields.
19:33:32 <Outdoorsman> I added them and flushed all cache again... same issue still.
19:34:27 <Outdoorsman> Ahhh... I see I didn't copy the whole error... sorry there was a little more (forgive me).
19:34:43 <Outdoorsman> Fatal error: Call to a member function getSingle() on a non-object in /ROOT_DIRECTORY/typo3conf/ext/flux/Classes/Provider/AbstractProvider.php on line 964
22:27:37 <Outdoorsman> You're hardcore. I thought people who were as much into code as you would certainly use an IDE!
22:29:25 <Outdoorsman> I have a friend who codes for New Relic who uses vi for his primary coding editor... what a guy :)
22:30:06 <danilobuerger> well i use XCode as my IDE of choice... and because of that i cant stand phpstorm... it just annoys me... so for php (and php only) i use textmate
22:31:33 <Outdoorsman> Nice... look like a good one too.
22:33:04 <danilobuerger> well imo its the perfect IDE for c, c++, objective-c
22:33:11 <danilobuerger> and thats what i code mainly
22:33:31 <Outdoorsman> Really? What's your job then?
22:34:04 <danilobuerger> my main job is head of coding ;-)
22:34:19 <Outdoorsman> By the way, here's an interesting survey showing what most people are using. I already have Zend Studio but it's a beast and have not enjoyed it at all. http://www.sitepoint.com/best-php-ide-2014-survey-results/
22:34:23 <danilobuerger> but when i code myself, mainly mobile apps and unreal 4
22:36:09 <danilobuerger> and sometimes i have todo typo3 :-)
22:36:21 <Outdoorsman> By the way... the error I was having earlier just miraculously seemed to disappear after a while (Fatal error: Call to a member function getSingle() on a non-object in /ROOT_DIRECTORY/typo3conf/ext/flux/Classes/Provider/AbstractProvider.php on line 964)
22:37:29 <danilobuerger> all those "Call to a member function [XYZ] on a non-object" usually solve themselves when clearing some cache... if you get that error always fully delete typo3temp and clear caches through the install tool
22:38:41 <danilobuerger> the caching mechanism in 6.1 & 6.2 (especially) get weird sometimes
22:39:07 <danilobuerger> sometimes they are too aggressive
22:39:10 <Outdoorsman> Based on how it resolved itself, I suspect it was cache as well.
22:41:52 <Outdoorsman> I cleared every cache I could find but didn't clear these tables in the install tool since they didn't appear to be things that would cause that issue the only cache I didn't clear was sys_log, be_sessions, sys_history, tx_rsaauth_keys, and tx_extensionmanager_domain_model_extension.
22:41:52 <danilobuerger> Outdoorsman you are from the US right?
22:42:10 <danilobuerger> got your google glass already :D ?
22:42:15 <GRIMMCREATIVE> Hio, somebody know if there is a Viewhelper "vhs" to get the categories of the current page within the link set inside the cat?
22:43:26 <Outdoorsman> I'm not sure I want to talk into the bathroom in the morning forgetting I have them on and publish it to the world accidentally.
22:43:28 <danilobuerger> we are waiting for the first one of us to get punched in the face for wearing them
22:48:53 <danilobuerger> GRIMMCREATIVE i might be able to help you, but i dont understand oyur question
22:51:23 <GRIMMCREATIVE> @danilobuerger: Suche nur nach einer Möglichkeit die zugewiesene Kategorie der aktuellen Seite auszugeben, jedoch inkl dem Shortcut link den man bei der Kategorie setzen kann.
22:51:54 <danilobuerger> so what have you got so far? can you gist your template please?
22:53:36 <GRIMMCREATIVE> just tried this one out right now but my typoscript isnt this good so i dont know how the setup the link inside: https://gist.github.com/t3easy/9810216#file-lib-pagecategories-txt
22:54:32 <danilobuerger> ah sorry, cant help you with TS, i never use TS (except for the bare essentials like config. but nothing else)… everything i do is in fluid / extbase
22:55:33 <GRIMMCREATIVE> thats what i basicly searching for - a solution in fluid. so the basic question was if there is a ViewHelper already in vhs :)
22:56:57 <danilobuerger> no there isnt one, but it would be very nice to have one… so if you decide to do one it would be awesome if you submit it as a pull request afterwards to vhs
22:58:03 <GRIMMCREATIVE> just found something claus made a while ago for me that looks like what i searching for... will try and give feedback
23:06:25 <GRIMMCREATIVE> ah no... that was to specific for another solution. will try out something later