Re: CakePHP 2.0 authentication(login) without ctp files but other types

2015-02-14 Thread tech_me
I got it worked! But not only the problem of table fields(even though `password` field is required with hashed value). The main problem is the html file. Let me say, I have input elements which their values of `name` attribute are `email` and `password`. But I have tried half a day to look

Re: cakePHP 3.0.0-RC2 documentation, Testing

2015-02-14 Thread Andrew Lechowicz
When something isn't loading the correct file, it smells like a composer autoload issue or a namespace issue. Try running `composer dump-autoload`. If that doesn't work try looking at your `use` blocks to see if you might be missing something. On Friday, February 13, 2015 at 12:00:11 AM UTC-5,

Re: Cakephp 3.0 upgrade from 1.3 where to begin??

2015-02-14 Thread Andrew Lechowicz
Something else to consider if you want to jump straight to CakePHP 3 would be to re-write the app in 3.0 piece by piece and update the web server's routing to turn off and on the 3.0 pieces as need be. On Tuesday, February 3, 2015 at 10:09:12 PM UTC-5, Robert Gravel wrote: Hi all, I want to

Re: Iter of cakephp tests

2015-02-14 Thread Andrew Lechowicz
Fixture data is automatically loaded before each test run. Any data or structure in your existing test database will be deleted or dropped and replaced with only the relevant fixture data. From you linked Github issue it looks like you have some other issue with either you tests or code that's