Log message #4172235

# At Username Text
# Jan 4th 2019, 00:42 asdfgh i have two tables companies and requirements then i need to create companies_requirements that link both tables. No problem about that but ... in companies_requirements i should add a "score" too the table is: id, company_id, requirement_id, score... how can i handle it in forms?
# Jan 4th 2019, 00:40 asdfgh hello
# Jan 3rd 2019, 23:58 dereuromark not sure in what context you are using it, you are missing the whole data around it for being able to give a more concrete answer
# Jan 3rd 2019, 23:56 dereuromark or sinde the Application then, as ->addPlugin() etc
# Jan 3rd 2019, 23:56 dereuromark you are confusing sth - https://github.com/dereuromark/cakephp-tinyauth/blob/master/tests/bootstrap.php#L59
# Jan 3rd 2019, 23:54 joopmm Call to undefined method Cake\Core\Plugin::addPlugin()
# Jan 3rd 2019, 23:53 joopmm but does not helped
# Jan 3rd 2019, 23:53 joopmm i tried to use the suggested way : Application::addPlugin()
# Jan 3rd 2019, 23:52 joopmm i have this issue: Plugin::load() is deprecated
# Jan 3rd 2019, 23:52 joopmm hello all
# Jan 3rd 2019, 23:30 hippo no wait it's not.. sorry, tired and very confused. Heading out but please ping me if anyone else has come across this issue! Thanks <3
# Jan 3rd 2019, 23:27 hippo Hmm looks like it's monolog
# Jan 3rd 2019, 23:07 hippo Both Cake 3.7.1 and PHP 7.1.. weird
# Jan 3rd 2019, 23:05 hippo Even stranger it only happens on the production server logs, not locally.
# Jan 3rd 2019, 22:44 hippo nope still there..
# Jan 3rd 2019, 22:43 hippo let me just make sure I'm not looking at old logs
# Jan 3rd 2019, 22:43 hippo latest
# Jan 3rd 2019, 22:15 ricksaccous what version are you on?
# Jan 3rd 2019, 22:14 ricksaccous oh heh
# Jan 3rd 2019, 22:13 hippo Yeah but the line throwing an error is in the core and `if (is_string($event)) {`
# Jan 3rd 2019, 22:11 ricksaccous use getName instead
# Jan 3rd 2019, 22:11 ricksaccous it says right there though
# Jan 3rd 2019, 22:09 hippo Has anyone seen this before: ``` NOTICE Deprecated (): Event::name() is deprecated. Use Event::getName() instead. - /var/www/site/vendor/cakephp/cakephp/src/Event/EventManager.php, line: 308 ``` Don't see anything in slack or in Github.. I'm not sure how to get rid of this deprecation error..
# Jan 3rd 2019, 19:46 ricksaccous if i was in Germoney right now I'd totally go to that
# Jan 3rd 2019, 19:35 dereuromark @megan https://twitter.com/dereuromark/status/1080910250067283970 is the twitter message for the next CakePHP meetup in Frankfurt in 2 weeks.
# Jan 3rd 2019, 18:33 jeremyharris I use the new authorization/authentication cakephp libraries
# Jan 3rd 2019, 18:26 dereuromark TinyAuth.AuthUser component and helper
# Jan 3rd 2019, 18:18 jamison Docs still say best way to access logged-in user outside of controller context is `AuthComponent::user()`, however in 3.7 this method is no longer static. What's everyone using these days?
# Jan 3rd 2019, 18:04 dereuromark hey, to all plugin developers: do you have prefer lowest check yet in travis? Also useful then: https://github.com/dereuromark/cakephp-queue/pull/206 to assert that you actually test those minimum constraints.
# Jan 3rd 2019, 17:29 a.francazi oh now i got it, url should have been /review-votes/* and not /reviewvotes/ :slightly_smiling_face:
# Jan 3rd 2019, 17:22 a.francazi I made a new table review_votes and baked a model and a controller with bake. (ReviewVotesTable, ReviewVote (Entity), ReviewVotesController) When I now try to access $this->ReviewVotes in the controller it gives me false, so I cant do $this->ReviewVotes->newEntity() and all that. What did I do wrong? It usually worked everytime
# Jan 3rd 2019, 17:09 jeremyharris yes
# Jan 3rd 2019, 17:08 Martin` is it possible to change the request object in a middleware?
# Jan 3rd 2019, 16:45 richardd thank you Jeremy! I'm going to give it a try
# Jan 3rd 2019, 16:45 murat I have an action that has just one `var_dump()` call in it. When I access it through its URL I see the printed output, but when I make an AJAX call to it I get an empty response. What am I doing wrong?
# Jan 3rd 2019, 16:40 jeremyharris maybe you need to use loadModel first
# Jan 3rd 2019, 16:40 jeremyharris oh I misread the error. it’s caused by Category not being on that class
# Jan 3rd 2019, 16:37 jeremyharris in 2.0 it’s read() if I’m remembering right
# Jan 3rd 2019, 16:37 jeremyharris 2.0 doesn’t have a get() method on the model. perhaps you’re thinking of 3.0?
# Jan 3rd 2019, 16:31 richardd Error: Call to a member function get() on null function index($parent_id = null) { if (empty($parent_id) andand empty($this->params['slug'])) { ->>> this is where the error is being reported ->>>>> $parent_id = $this->Category->get('defaultParentId'); } elseif (!empty($this->params['slug'])) { $parent_id = $this->Category->field('id', array('slug' => $this->params['slug'])); }
# Jan 3rd 2019, 16:30 richardd I am trying to upgrade from cake1.3 to cake2.0 using the manual, I have moved my controllers, views and models over and can't get past this error