IRC logs

20131228

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

IRC log range: 20131228*

20131228

  • 01:15:03 <soee> uhm using latest fluidcontent_bootstrap (development)
  • 01:15:13 <soee> wont let me define any columns
  • 01:16:35 <soee> oh wait
  • 01:16:45 <soee> i forgot to include static TS
  • 01:16:47 <soee> :)
  • 15:36:45 <soee_> NamelessCoder: on 6.2 i have this log messag on each action i do: Core: Error handler (BE): PHP Warning: unlink(): open_basedir restriction in effect. File() is not within the allowed path(s): ([here my paths]) in /web/typo3conf/ext/flux/Classes/Provider/AbstractProvider.php line 664
  • 16:01:55 <soee_> NamelessCoder: its probably related with clearing cache
  • 16:02:24 <soee_> it ties to delete cache file that donsnt exist
  • 16:10:58 <soee_> https://github.com/FluidTYPO3/flux/issues/420
  • 16:27:09 <Misan> hi there
  • 16:28:04 <Misan> does VHS assets work with external stylesheets or pseudostylesheets? e.g. something that google delivers: <v:asset.style name="underdog" external="TRUE" path="http://fonts.googleapis.com/css?family=Underdog"/>
  • 16:29:44 <bjo3rn> Misan yes, it does
  • 16:30:09 <Misan> hmmm. weird, it does not include the font family, it says so in the result but its empty.
  • 16:30:14 <bjo3rn> I'm writing a blog post about assets atm
  • 16:30:27 <bjo3rn> you'll have to add type=css
  • 16:30:44 <bjo3rn> because it can't be determined automatically in this case
  • 16:31:09 <bjo3rn> ah, viewhelper, sorry
  • 16:31:12 <Misan> ah.. I think it is because of the merge.. if I add standalone true it works
  • 16:31:32 <bjo3rn> yes. rewrite=false is another good idea
  • 16:31:33 <Misan> hm okay I will try with type css and no standalone. :)
  • 16:31:44 <Misan> thank you a lot for your precious advice :D
  • 16:32:08 <bjo3rn> nah, type=css shouldn't be required for v:asset.style I think. let me take a look.
  • 16:32:15 <bjo3rn> your welcome :)
  • 16:35:21 <bjo3rn> Misan the code you posted #worksonmymachine ;)
  • 16:35:47 <Misan> hmm interesting :) well, with standalone true it works, but not if merged
  • 16:36:33 <bjo3rn> this is what I get http://pastebin.com/CGULhj5E
  • 16:36:56 <bjo3rn> merged into the other css
  • 16:42:53 <soee> bjo3rn: got one minute ?
  • 16:43:06 <bjo3rn> sure, shoot
  • 16:43:12 <soee> https://github.com/FluidTYPO3/flux/blob/development/Classes/Provider/AbstractProvider.php#L664
  • 16:43:19 <soee> this is current version of this file ?
  • 16:43:42 <soee> if so here should be check if some files in array exist
  • 16:44:25 <soee> otherwise it results with https://github.com/FluidTYPO3/flux/issues/420
  • 16:45:10 <bjo3rn> but the error message states open_basedir restriction
  • 16:45:42 <soee> bjo3rn: yes if file is not provided?
  • 16:46:02 <bjo3rn> the files array is the result of a glob so they must exist
  • 16:46:11 <soee> hmm
  • 16:46:12 <bjo3rn> see line 663
  • 16:46:30 <soee> why than File() ha sno any argument ?
  • 16:48:10 <bjo3rn> can you debug that?
  • 16:48:30 <bjo3rn> I mean check what's inside the array?
  • 16:49:32 <bjo3rn> what's more interesting is the open_basedir thing
  • 16:49:44 <bjo3rn> do you use symlinks?
  • 16:51:08 <soee> bjo3rn: print_r($files);die();
  • 16:51:18 <soee> response preview: Array( [0] => )
  • 16:51:50 <bjo3rn> hmm...
  • 16:51:57 <soee> also i checked there are no any typo3temp/flux-* like files
  • 16:53:05 <soee> also im have installed flux as a dependency for fluidcontent i think
  • 16:53:11 <bjo3rn> ok, you could change it to array_map('@unlink', $files); but that's not a real fix.
  • 16:53:14 <soee> im not using it to build any forms etc
  • 16:53:34 <soee> so im not sure when it creates any cache files
  • 16:54:55 <soee> bjo3rn: shouldnt there be any check if those items exist in array ?
  • 16:55:06 <soee> rather tan using @
  • 16:56:07 <bjo3rn> I don't know. you should wait for NamelessCoder to appear. I have no deep knowledge of flux.
  • 16:56:37 <soee> ah, ok
  • 16:56:51 <bjo3rn> but there is one empty element in the array?
  • 16:57:32 <bjo3rn> if the array was all empty array_map shouldn't do anything at all.
  • 16:57:40 <bjo3rn> imo ^^
  • 16:59:06 <soee> but there is no any file tham matches flux-* :)
  • 16:59:15 <soee> *that, in typo3temp
  • 17:00:52 <bjo3rn> I'll try to reproduce that, sec
  • 19:31:45 <Misan> hmm, I wonder if I can use EXT:speciality to link to images in my stylesheet (using ecodev bootstrap package)
  • 19:32:31 <Misan> because ../Imags/logo.png won't work :)
  • 19:32:35 <Misan> Images*
  • 21:08:59 <cedricziel> Misan: you can.
  • 21:09:30 <Misan> hmm then I am doing something wrong
  • 21:09:56 <cedricziel> check if rewriting is enabled on the assets
  • 21:10:12 <Misan> ok thank you
  • 22:14:37 <soee> NamelessCoder: do you have any response from core devs about Awesome Ocelot and your modifications ?
  • 22:39:20 <soee> bjo3rn: any luck with my issue ?