Log message #4056080

# At Username Text
# Jul 24th 2017, 09:51 hmic you still need the test datasource defined IMHO
# Jul 24th 2017, 09:51 neon1024 There isn’t one. I’m using SQLite
# Jul 24th 2017, 09:51 hmic what does your test database setup look like?
# Jul 24th 2017, 09:50 neon1024 The core.articles fixture
# Jul 24th 2017, 09:50 neon1024 I’m getting the same error even with a concrete instance using a fixutre
# Jul 24th 2017, 09:11 neon1024 Please can someone tell me why I keep seeing this in my tests? `Cake\Database\Exception: Cannot describe articles. It has 0 columns.` seems to be when I mock a table class, I have to define the schema for the mock to get around it. Do tables not support mocking? I’ve been using `$this->getMockForModel()`
# Jul 24th 2017, 09:10 cleptric Can you gist some code?
# Jul 24th 2017, 09:08 irongomme I wonder why $_hidden fields are visible when loaded in associated model in a json response ? I've seen issue 7110 closed in cakephp, but I still have this behavior !
# Jul 24th 2017, 09:07 cleptric sonu_nk; Yes, that’s ok
# Jul 24th 2017, 09:07 irongomme Hi !
# Jul 24th 2017, 09:06 alexdd55 lol.. thats helpful, though :)
# Jul 24th 2017, 09:05 cleptric But the migrations downgraded to 1.3 :(
# Jul 24th 2017, 09:05 cleptric It installed 0.8.1
# Jul 24th 2017, 09:05 cleptric I just added `"robmorgan/phinx": "~0.8` to my apps composer file and updated
# Jul 24th 2017, 09:04 alexdd55 ok, i kicked out the migrations package, that seems to work
# Jul 24th 2017, 09:02 sonu_nk API key send in Header is a secure way ?
# Jul 24th 2017, 09:01 alexdd55 is there a way to workaround that?
# Jul 24th 2017, 09:01 cleptric We had some BC breaks before, so that’s the reason we pinned it to this release
# Jul 24th 2017, 09:00 alexdd55 i can not even kick out migrations
# Jul 24th 2017, 09:00 cleptric True! Totally forgot about that
# Jul 24th 2017, 08:59 alexdd55 @cleptric haha.. i would do so, if it would be possible.. phinx isnot in the composer json, its a relation that has a hardcoded version number in cakephp migrations
# Jul 24th 2017, 08:56 cleptric And then run `composer update` :;)
# Jul 24th 2017, 08:56 cleptric Or change the version constraint in your `composer.json`
# Jul 24th 2017, 08:56 cleptric `composer update`
# Jul 24th 2017, 08:56 alexdd55 can anyone tell me, how to update phinx to a current version via composer? our admin is complainng, that the version is outdated
# Jul 24th 2017, 08:55 sonu_nk https://github.com/cakephp/authentication this plugin also says same which you suggest
# Jul 24th 2017, 08:53 sonu_nk admad should i go with middleware ?
# Jul 24th 2017, 08:52 sonu_nk right ?
# Jul 24th 2017, 08:52 sonu_nk hmic, i remember you suggest me to use Middleware
# Jul 24th 2017, 08:38 admad depends on how you want your auth mechanism to work
# Jul 24th 2017, 08:38 sonu_nk sorry wrong line pasted to you please ignore that...
# Jul 24th 2017, 08:37 sonu_nk ok.. so after key verify i need to do email password fetch from db and then verify or not ?
# Jul 24th 2017, 08:37 admad your question is same as asking "why should i follow cake's class structure when i can just write spaghetti code"
# Jul 24th 2017, 08:36 admad because it's still authentication and that's what the auth component and it's authenticate adapters are for
# Jul 24th 2017, 08:35 sonu_nk sugestion are welcome
# Jul 24th 2017, 08:35 sonu_nk i agree with you.. but why i need to create auth mechanism when i am only authorizing api key ..and returning json to user.,. please do not make it wrong.. i just trying to understand...
# Jul 24th 2017, 08:34 admad you can make a custom autheticator class for authcomponent
# Jul 24th 2017, 08:33 admad WP isn't something you should be using as reference to do something right :slightly_smiling_face:
# Jul 24th 2017, 08:29 sonu_nk more explore.. i have a wordpress plugin which require api key and it wordpress plugin will get some json data from my server after api key verify..
# Jul 24th 2017, 08:28 neon1024 Yes, agreed. Top tip!
# Jul 24th 2017, 08:28 sonu_nk from my client end i am sending api key to verify on my server .and then i will send them json. so i dont know i can use Auth .. or i am wrong somewhere