09:12:46 <bjo3rn> I guess the last category's parentcategory.uid is not 57 ;)
09:43:42 <Mister^Mo> Hi! After upgrade extension vhs to the latest version I get the following error :Fatal error: Class 'Tx_Vhs_ViewHelpers_Page_HeaderViewHelper' not found in /srv/www/mainPage/typo3_src-6.2.4/typo3/sysext/core/Classes/Utility/GeneralUtility.php
10:23:37 <bjo3rn> Mister^Mo you need to update the namespace declaration in your template.
10:24:49 <soee> bjo3rn: he already did, though he has this error:
10:24:50 <soee> [10:09] <Mister^Mo> soee: Works much better now. But I have now a problem with my menu. It brings me the error: No value found for key "\FluidTYPO3\Vhs\ViewHelpers\Page\Menu\AbstractMenuViewHelper->variables" That's my code for the menu: http://pastebin.com/cEsfLYEy
11:23:44 <TorstenFink> i get an error "1: [newlog()] Localization failed; There already was a localization for this language of the record!" if i translate an FCE with an "<flux:field.inline.fal name="productimage" minItems="1" />", i use the staging versions of flux and fluidcontent from today and typo3 6.2.4
12:37:25 <NamelessCoder> erredeco is your database field actually named "imgLarga", casing and spelling included?
12:38:10 <NamelessCoder> and is that field a proper FAL relation field declared in TCA?
12:39:33 <NamelessCoder> erredeco nevermind; you're missing the "uid" or "record" argument for v:resource.record.fal. It doesn't know *which* record you want. Use either one of those arguments, but not both together. When using "record" of course the argument should be the record from *your* table.
12:41:59 <erredeco> ok, field name was actually wrong
12:42:24 <erredeco> I still don't understand what the argument "record" or "uid" should be
12:42:30 <NamelessCoder> but the record/uid thing is also relevant
12:42:43 <erredeco> uid should be the uid of the content element I'm using
12:42:45 <NamelessCoder> if UID it must be the integer UID of the record from the table you specify
12:46:43 <erredeco> so UID if I want to specify a single uid like 10, 20, 50 etc
12:46:59 <erredeco> the UID of a specific record on the table
12:54:09 <erredeco> still don't get what "record" is :S
13:03:12 <NamelessCoder> you can use {record} if you already have the record that would otherwise be loaded based on table+uid. So you use either table+field+uid OR you use table+field+record. The latter is more efficient if for example you are already iterating an array of records from that table - because you save an SQL query per usage.
13:03:56 <NamelessCoder> table+field is always required because TCA is required and field must be known because that's where the value is either stored, or that's the field used in the m:n relation.
13:15:17 <erredeco> The argument "record" was registered with type "array", but is of type "object" in view helper "FluidTYPO3\Vhs\ViewHelpers\Resource\Record\FalViewHelper"
13:18:06 <NamelessCoder> you could convert it but it is actually more efficient to just pass the UID then
13:18:27 <NamelessCoder> a single, fully indexed query takes no time at all
13:57:15 <TorstenFink> hi, field.inline.fal image translation only works if the name is "image" anyone has an idea to this?
14:02:27 <TorstenFink> someone has a fce where the field.inline.fal name is not image ?
14:14:38 <erredeco> @namelessCoder: as my congresso record has uid=1
14:50:44 <TorstenFink> anyone has an idea why translating a fce with an inline.fal image doesnt working if the name is e.g. "foobar" but if the name is "image" it works?