Log message #4116779

# At Username Text
# Feb 13th 2018, 12:20 ahmed_bodi https://gist.github.com/ahmedbodi/08f2e153b52d66e4e18372ea3a12e89f
# Feb 13th 2018, 12:20 ahmed_bodi @admad they are
# Feb 13th 2018, 12:19 ahmed_bodi I'm using prefixed controllers for things like the admin area
# Feb 13th 2018, 12:18 admad ahmed_bodi: make sure your routes with /:lang are connected before other routes
# Feb 13th 2018, 12:15 neon1024 I’m not too sure why you include a `*` at the end of your route though. Do you have routing token with slashes in them?
# Feb 13th 2018, 12:15 neon1024 Although my first thought would be to use a prefix, but you probably don’t want prefixed controllers and such, so not a great idea
# Feb 13th 2018, 12:14 neon1024 `$routes->connect('/:lang/:controller/:action', ['lang' => '[\w]+']);` perhaps
# Feb 13th 2018, 12:14 neon1024 All I can think of is specifying the pattern for the token in the routing
# Feb 13th 2018, 12:04 ahmed_bodi however instead it gives /profile/login?lang=en
# Feb 13th 2018, 12:04 ahmed_bodi i figured doing Html->link(['controller' => 'Users', 'action' => 'login', 'lang' => $lang]) should work
# Feb 13th 2018, 12:04 ahmed_bodi since the structure of the routes is /:lang/:controller/:action*
# Feb 13th 2018, 12:03 ahmed_bodi @hmic, got that cleared, not sure what it was. But i'm not sure how to make the Html Helper use the language in the URL's
# Feb 13th 2018, 11:46 hmic clear cache
# Feb 13th 2018, 11:43 ahmed_bodi i've used I18n:setLocale to set the locale and things like the dates are converted fine. Just the text isnt converted
# Feb 13th 2018, 11:42 ahmed_bodi Hi guys, I'm having an issue with cakephp. It doesnt appear to be loading the language .po files when i try and use the translate
# Feb 13th 2018, 11:25 neon1024 Ah, I should ask in the foc channel :slightly_smiling_face:
# Feb 13th 2018, 11:25 neon1024 Why doesn’t the foc/bootstrap-ui plugin implement the postLink?
# Feb 13th 2018, 11:07 turkles sadly yes 32 bit :( Ah well.. I'll just test with lower values
# Feb 13th 2018, 11:01 turkles hrm, I was testing on my windows box, Uniserver, may run 32 bit
# Feb 13th 2018, 10:59 hmic delete the orm cache nether the less as a first step
# Feb 13th 2018, 10:59 hmic turkles: is your php 64 bit? it still only supports signed integers i suppose :P
# Feb 13th 2018, 10:56 turkles hrm, I had to change an id from int to bigint, but when I fetch data it seems to be truncating the value - where do I need to update to fix this?
# Feb 13th 2018, 10:56 neon1024 Despite me containing it :thinking_face:
# Feb 13th 2018, 10:56 neon1024 Well my bug seems to be that my initial entity I pass to my form, doesn’t contain the data I’m trying to patch back into it. Thus Cake thinks I’m creating a new associated entity. In case anyone wondered :slightly_smiling_face:
# Feb 13th 2018, 10:44 neon1024 Might I suggest taking a look at https://github.com/friendsofcake/search
# Feb 13th 2018, 10:43 michaelze Okay, thanks @neon1024 and @hmic... I'll give it a try...
# Feb 13th 2018, 10:42 michaelze I'm using it to build a query... The form is a search form...
# Feb 13th 2018, 10:40 neon1024 You might want to define it as string and implode it with commas
# Feb 13th 2018, 10:40 neon1024 Depends on what you’re doing with your tag data
# Feb 13th 2018, 10:40 neon1024 Otherwise you’d need to create an associated schema for Tags and define your tag name as string
# Feb 13th 2018, 10:40 neon1024 The data type for the many tags, I’d probably not define it, and deal with it manually
# Feb 13th 2018, 10:40 michaelze Okay, the name doesn't matter here, I get it... What about the type?
# Feb 13th 2018, 10:39 hmic it doesnt matter here
# Feb 13th 2018, 10:39 neon1024 Yeah, the name of the field still doesn’t matter ;)
# Feb 13th 2018, 10:38 michaelze You have to implement a method to return the schema for a modelless form: https://book.cakephp.org/3.0/en/core-libraries/form.html#creating-a-form
# Feb 13th 2018, 10:38 neon1024 and also form post data for patching back to the entity
# Feb 13th 2018, 10:38 neon1024 The field names, just match up data to the forms passed entity
# Feb 13th 2018, 10:37 neon1024 The name doesn’t matter
# Feb 13th 2018, 10:37 neon1024 It’s modeless
# Feb 13th 2018, 10:37 neon1024 There is no schema
# Feb 13th 2018, 10:37 michaelze Should the name of the control also be tags._ids? What would the schema look like?