IRC logs

20131202

Logs from channel #fedext on freenode - our official support channel.

IRC log range: 20131202*

20131202

  • 08:13:49 <mrboe> good morning
  • 10:26:15 <randomresult> hi there
  • 10:27:12 <randomresult> anyone around? i have a question concerning inherit for a flux.flexform element
  • 10:28:11 <phifa> Hello everybody, I am new to the viewhelper extension, but i am starting to love it. i would like to use the if.condition.extend., but i keep getting errors. anyone around who can help?
  • 10:28:38 <randomresult> this one is outdated
  • 10:28:50 <randomresult> dont use it anymore. will not be available in 2.0
  • 10:29:02 <randomresult> sad but true
  • 10:29:11 <phifa> oh ok. i would like to this something like this
  • 10:29:12 <phifa> <v:if.condition.extend>({i.cycle % 4} == 0)</v:if.condition.extend>
  • 10:29:37 <randomresult> everything from extended is also available in v:if
  • 10:31:29 <randomresult> phifa
  • 10:31:33 <randomresult> u use gists?
  • 10:31:57 <randomresult> try this code
  • 10:31:57 <randomresult> http://pastebin.com/m8mVvQSB
  • 10:35:48 <randomresult> or use the modulo viewhelper
  • 10:35:52 <randomresult> https://fedext.net/viewhelpers/vhs/master/Math/ModuloViewHelper.html
  • 10:36:48 <phifa> mom i am trying it out
  • 10:40:22 <phifa> i tried your snipped, but keep getting this error
  • 10:40:23 <phifa> Argument "conditon" was not registered.
  • 10:42:45 <phifa> http://pastebin.com/T6fTqCvs
  • 10:42:49 <phifa> this is my code
  • 10:45:19 <randomresult> trying it in a partial?
  • 10:46:08 <randomresult> tried a fdebug on the variable?
  • 10:46:23 <randomresult> maybe u need to "pass" this to your section/layout
  • 10:47:26 <randomresult> in my case, i needed to pass arguments={_all} (or specified) to my partial
  • 10:47:29 <randomresult> like this
  • 10:47:29 <randomresult> <f:render partial="TwoColumn.html" section="TwoColumn" arguments="{_all}" />
  • 10:49:26 <randomresult> hmmm wait...
  • 10:49:52 <randomresult> could u try this one: <f:if condition="{v:math.modulo(a: iter.cycle, b: 3)}==0">
  • 10:50:12 <randomresult> in your case it should be i.cycle and b=4
  • 10:50:30 <randomresult> so for every 0 take a then, for all others take else
  • 10:50:33 <randomresult> (imho)
  • 10:51:19 <phifa> trying it out
  • 10:51:40 <randomresult> good. well for me this is try and error - error come much to often :)
  • 10:52:55 <phifa> IT WORKS
  • 10:53:31 <randomresult> good.
  • 10:53:38 <phifa> you are my hero
  • 10:53:54 <randomresult> no, im not. simply copied something i didt understand
  • 10:54:02 <randomresult> :)
  • 10:54:05 <phifa> i like this extension.
  • 10:54:16 <randomresult> which one?
  • 10:54:19 <randomresult> VHS?
  • 10:54:24 <phifa> this vhs extension
  • 10:54:28 <phifa> yeah
  • 10:54:46 <randomresult> you should also take a look at fluidcontent, fuidpages and flux.
  • 10:54:53 <randomresult> and for sure: VIEW
  • 10:55:06 <randomresult> these are f*cking great as well
  • 10:55:11 <phifa> i will. thank you. :D
  • 10:55:42 <randomresult> ur welcome
  • 11:01:53 <cedricziel> no bad words ;)
  • 11:11:33 <randomresult> wasnt me
  • 11:12:08 <randomresult> but to be honnest... the condition thing in fluid vhs etc. sucks big time
  • 11:33:57 <danilobuerger> phifa btw your bug was that you wrote "conditon" instead of "condition"
  • 11:38:21 <phifa> this is how it worked http://pastebin.com/5tfvPtig
  • 11:39:57 <phifa> i didnt get it to work just with condition: <f:if condition="{i.cycle % 4}">
  • 12:00:35 <danilobuerger> phifa <f:if condition="{i.cycle} % 4">
  • 12:03:21 <fritzthecat> hello, there is for links from the "Link Wizard" now already a better solution than something like this: http://www.typo3.net/forum/thematik/zeige/thema/115723/?
  • 12:23:35 <randomresult> @fritzthecat the question is: why does the menu not respect what u choose in the pageproperties in the backend
  • 12:34:16 <bjo3rn> randomresult and fritzthecat you can pass the output of the link wizard directly to the argument pageUid of v:page.link
  • 12:34:27 <bjo3rn> it will be parsed
  • 12:35:49 <bjo3rn> (if I got your question right i.e.) ^^
  • 12:44:03 <randomresult> @fritzthecat www.pastbin.com just paste your line of code here and show it to the channel... im sure someone like bjo3rn or cedricziel can help u when seeing your code
  • 12:44:30 <phifa> anybody who can help with browser detection? how do i check if it's IE? <v:if.client.isBrowser browser="chrome"> works fine
  • 12:44:40 <randomresult> @NamelessCoder did u get my amazon-things?
  • 12:45:04 <randomresult> phifa did u try IE*
  • 12:45:27 <bjo3rn> should be msie
  • 12:46:35 <bjo3rn> and be aware that this viewhelper works reliably only in uncached environments
  • 12:46:41 <danilobuerger> phifa although we do offer v:if.client.isBrowser i would strongly advise against doing user agent sniffing
  • 12:46:58 <phifa> ok, thanks
  • 12:47:35 <phifa> i am new to this, so thankful for any help.
  • 12:47:35 <randomresult> phifa: a good choice is maybe to set some conditions using TS
  • 12:48:01 <danilobuerger> phifa if you want to do something IE specific the most reliable way is conditional comments
  • 12:48:14 <phifa> ok
  • 12:49:59 <randomresult> you can try to use TS in that way:[browser = msie] AND [version = <9]
  • 12:50:05 <randomresult> then set something like
  • 12:50:30 <randomresult> plugin.tx_yourext.settings.msie = 1
  • 12:50:51 <bjo3rn> ...which is browser sniffing again ;)
  • 12:51:04 <randomresult> but also in cached environments
  • 12:51:08 <randomresult> (or not? )
  • 12:51:13 <bjo3rn> that's true
  • 12:54:32 <floxx> hey there. i need your help: i'm building a one pager and need a anchor-navigation. i'm generating my navigation with typo3 link wizard and flux. my problem is: how can i get only the anchor part of the url?
  • 12:55:02 <floxx> http://wasserraub.de/index.php?id=3#c3 should be #c3
  • 12:56:34 <randomresult> isnt this a TS.config setting?
  • 12:56:44 <randomresult> prefix-something?
  • 12:58:05 <randomresult> floxx config.prefixLocalAnchors = all/cached/output maybe?
  • 12:58:37 <randomresult> try it with output maybe
  • 13:00:34 <floxx> randomresult: yay! thank you - it works :)
  • 13:00:48 <randomresult> ++
  • 13:00:55 <randomresult> good.
  • 13:02:06 <floxx> prefixLocalAnchors was set in my default setup. a relict from baseurl. never thought about that. until now ;)
  • 13:02:25 <randomresult> @fritzthecat try this example for the target : <f:link.page pageUid="{object.target}" class="{object.class}" rel="{f:if(condition: object.tooltip, then: 'tooltip')}" title="{object.tooltip}"><f:format.raw>{icon}{object.text}</f:format.raw></f:link.page>
  • 14:12:09 <FloLeBlanc> hi FedExt
  • 14:12:45 <FloLeBlanc> Can I use FedExt with Typo3Neos - Version - Any
  • 14:13:30 <danilobuerger> FloLeBlanc fedext consists of more than a dozen extensions ;-) for your question its probably vhs / neos compat
  • 14:13:49 <danilobuerger> cedricziel bjo3rn NamelessCoder any takers on vhs / neos compat ?
  • 14:15:40 <cedricziel> hm
  • 14:15:46 <cedricziel> no, not as is
  • 14:16:03 <cedricziel> but it should be easily portable
  • 14:16:04 <cedricziel> well
  • 14:16:12 <cedricziel> except the CMS specific stuff
  • 14:16:18 <cedricziel> obviously
  • 14:16:52 <FloLeBlanc> I start to grow anxious about extensions to be honest - I have an extension for everything, an extension that loads the extension and an extension that helps me managing the extension loaders! :)
  • 14:17:36 <danilobuerger> FloLeBlanc well to be honest i wouldnt even use typo3 if it werent for the fedext extensions
  • 14:19:08 <FloLeBlanc> ok so they are designed to work with 6.2?
  • 14:20:20 <danilobuerger> we are currently working on compat with 6.2 which will happen very soon
  • 14:23:47 <FloLeBlanc> thx for the info
  • 15:09:25 <mrboe> i installed vhs,flux,fluidpages and fluidcontend on 6.1.6 and my backend page view works no more (all ext downl from git)
  • 15:10:20 <danilobuerger> mrboe git master from today?
  • 15:10:30 <mrboe> no last week
  • 15:10:46 <mrboe> copied from a 6.1.5
  • 15:10:58 <danilobuerger> it worked on 6.1.5 and stoped working on 6.1.6 ?
  • 15:11:15 <mrboe> seems so
  • 15:11:22 <danilobuerger> mrboe let me check it out
  • 15:11:51 <mrboe> i ceck my install in that time
  • 15:12:55 <danilobuerger> mrboe i just upgraded a 6.1.5 to 6.1.6 with ft3 current git master and it worked just fine...
  • 15:13:31 <mrboe> ok thanks - i will check my install
  • 15:13:48 <danilobuerger> mrboe you could try to turn on flux debug in Extension Manager -> flux Settings
  • 15:14:00 <danilobuerger> then clear cache and go to the page view and see if flux spits anything out
  • 16:34:49 <rango1> hi guys anyoneone may help me with the https://github.com/Ecodev/bootstrap_package , I get after installation a frontend without CSS
  • 16:37:14 <rango1> I made a local installation with the stable package, turned off realurl/ seobasics/ the htaccess file
  • 16:39:17 <danilobuerger> rango1 please gist the html output
  • 16:40:46 <rango1> here you are
  • 16:41:01 <rango1> the /typo3temp/stylesheet_094232dc9b.css?1385997146 contains no css at all
  • 16:41:10 <rango1> https://gist.github.com/anonymous/2da3dc02b47a8403830e
  • 16:41:41 <cedricziel> rango1: this is no paid service, you have to wait a bit
  • 16:42:21 <rango1> I am trying to get into fluid templating, but its very hard for me....
  • 16:43:55 <cedricziel> this is a fairly standard typo3 issue i guess
  • 16:44:06 <cedricziel> what does you server logs say?
  • 16:44:26 <FT3BOT> Issue 366: [BUGFIX] Highlighting of child fce https://github.com/fluidtypo3/flux/issues/366
  • 16:44:27 <FT3BOT> Issue 366: [BUGFIX] Highlighting of child fce https://github.com/fluidtypo3/flux/issues/366
  • 16:45:09 <danilobuerger> cedricziel FluidTYPO3 and FT3BOT have a little battle ;-)
  • 16:46:45 <rango1> cedricziel where may i read the log in xampp do you have an idea?
  • 16:47:07 <cedricziel> there's a log folder i guess
  • 16:47:18 <cedricziel> windows search for error_log will do
  • 16:54:10 <rango1> cedricziel there are no errors shown in connection with the bootstrap fluid installation, but what can tell is that no css is found in typo3temp/stylsheet.css
  • 16:54:28 <cedricziel> what php version?
  • 16:55:13 <rango1> cedricziel PHP: 5.4.7
  • 16:56:29 <cedricziel> turn of compression, empty the typo3temp folder
  • 16:57:05 <cedricziel> did you import the sql dump btw?
  • 16:57:26 <cedricziel> you could also try to work with the version on get.typo3.org/bootstrap
  • 16:57:35 <rango1> cedricziel of course
  • 16:57:53 <cedricziel> if it was like that, i wouldnt have asked ;)
  • 16:58:01 <rango1> cedricziel that s the one i am working with
  • 16:58:10 <cedricziel> ahh, k
  • 16:58:46 <cedricziel> install tool checks. all green?
  • 16:59:55 <rango1> OpenSSL extension not working; PHP extension fileinfo not loaded; Windows apache thread stack size, Mail is configured, potential problem exists, No PHP opcode cache loaded
  • 17:14:38 <cedricziel> wasnt there this apache thread size limit issue hanging around?
  • 17:14:44 <cedricziel> ahh.
  • 17:14:47 <cedricziel> away he is.
  • 18:35:58 <randomresult> good afternoon
  • 21:18:19 <soee> something changed in VHS for T3 in last weeks 6.1 ?
  • 21:30:23 <soee> if i try to edit come twitter bootstrap content element on T3 6.1.5
  • 21:30:38 <soee> i see only Configuration label ano no form to configure it
  • 21:31:34 <randomresult> soe: check github
  • 21:32:23 <randomresult> depends on the fields u use...
  • 21:32:33 <randomresult> do u use selects ?
  • 21:32:45 <randomresult> this was one of my problems...
  • 21:33:44 <randomresult> i had commaseperateditems = item1,item2 etc... changed to items instead of commaseperatedlist or something
  • 21:34:53 <randomresult> and yes - looking at the mails from github --- several bugfixes and new features where commited the last days. (git-versions)
  • 21:35:06 <soee> randomresult: accordion element
  • 21:35:28 <soee> it worked some time ago
  • 21:35:35 <randomresult> soee... look at the configuration of that template
  • 21:35:49 <randomresult> what kind of flux-elements are used there
  • 21:36:07 <randomresult> u mean fluidboostrapelements ?
  • 21:37:51 <randomresult> soee you mean this element : https://github.com/FluidTYPO3/fluidcontent_bootstrap/blob/master/Resources/Private/Templates/Content/Accordion.html
  • 21:40:39 <soee> yes
  • 21:42:30 <randomresult> well... some lables are missing but works for me in the backend
  • 21:42:42 <randomresult> just pasted this in to my testinvironment
  • 21:43:13 <soee> randomresult: im not talking about labels
  • 21:43:29 <randomresult> i can add accordions
  • 21:43:30 <soee> label is where it should be but under it should be form to configure accordion
  • 21:43:35 <soee> and this is missing :)
  • 21:43:55 <soee> from what i see i have copied templates into other folder and modifed some elements
  • 21:43:59 <randomresult> well in that case, you can add accordions
  • 21:44:04 <soee> maybe this is the problem
  • 21:44:27 <randomresult> you can add items with title, class and if it is active
  • 21:44:53 <soee> i cant :)
  • 21:44:56 <randomresult> i can add items and if i save, i can create elements into the tabs...
  • 21:44:56 <soee> thants the problem
  • 21:45:02 <danilobuerger> soee the bootstrap accordion is working on git master with typo 6.1.5 and 6.1.6
  • 21:45:31 <randomresult> im using t3 6.1.5 and one of the latest flux/vhs git's
  • 21:45:48 <randomresult> anyway boys n girls... i need to go for now
  • 21:45:52 <soee> hm
  • 21:46:06 <randomresult> hi danilobuerger - i finaly understand conditions (in a simple way!)
  • 21:46:27 <danilobuerger> randomresult awesome :-)
  • 21:46:52 <randomresult> in the end it is easy to set up a simple if:condition...
  • 21:46:55 <randomresult> long way...
  • 21:46:57 <randomresult> :)
  • 21:47:01 <randomresult> see you tomorow
  • 21:47:06 <danilobuerger> bye
  • 21:47:06 <randomresult> bye folks
  • 23:58:11 <FT3BOT> Issue 366: [BUGFIX] Highlighting of child fce https://github.com/fluidtypo3/flux/issues/366
  • 23:58:12 <FT3BOT> Issue 366: [BUGFIX] Highlighting of child fce https://github.com/fluidtypo3/flux/issues/366