Log message #4135425

# At Username Text
# Apr 26th 2018, 08:56 kareylo Closing it
# Apr 26th 2018, 08:55 mtr__ hmm and where do i catch the error in the app controller?
# Apr 26th 2018, 08:55 kareylo Yes, just seen it's a duplicate too
# Apr 26th 2018, 08:53 dereuromark => https://book.cakephp.org/3.0/en/appendices/3-6-migration-guide.html#disabling-deprecation-warnings
# Apr 26th 2018, 08:53 dereuromark Kareylo: The ticket was unncessary
# Apr 26th 2018, 08:50 neon1024 You’ll want to capture this exception, https://github.com/cakephp/cakephp/blob/f0e61d9b665249eef415e9749e8506e82e53fdc7/src/Http/ControllerFactory.php#L98
# Apr 26th 2018, 08:47 neon1024 You can catch the event in a similar way to Crud
# Apr 26th 2018, 08:47 mtr__ in the docu
# Apr 26th 2018, 08:47 mtr__ i tried to adjust the routes but there is nothing written about this
# Apr 26th 2018, 08:47 neon1024 Morning all
# Apr 26th 2018, 08:46 ghasem Hi. thanks @kareylo
# Apr 26th 2018, 08:46 mtr__ does anyone knows how to disable / reroute the missing controller error on cakephp 3.5
# Apr 26th 2018, 08:46 mtr__ hi there
# Apr 26th 2018, 08:42 kareylo Welcome @ghasem
# Apr 26th 2018, 08:25 kareylo @dereuromark FYI ``` public function view($slug = null, $id = null) { $post = $this->Posts->get($id, [ 'contain' => ['Users', 'Categories'] ]); if ($post->slug !== $slug) { return $this->redirect(['_name' => 'posts:view', '_entity' => $post], 302); } $this->set('post', $post); } ```
# Apr 26th 2018, 08:23 kareylo Ok. Need to disable enableBeforeRedirect
# Apr 26th 2018, 08:21 dereuromark that depends on your code probably.
# Apr 26th 2018, 08:20 kareylo Any idea why I can't make a redirect in 3.6 ?
# Apr 26th 2018, 07:34 lutepluto Thanks for your advices @admad @veeetle . I am gonna try it.:grinning:
# Apr 26th 2018, 07:31 veeetle Also, try getting Xdebug set up. If the bin-tools aren’t there, I bet that’s not configured either. Print-statements will only get you so far.
# Apr 26th 2018, 07:29 veeetle @lutepluto, I highly recommend you read through a chunk of the CakePHP docs, so you get some feeling for best practices, it will save your ass
# Apr 26th 2018, 07:29 admad gonna be a steep learning curve for you if you are new to PHP itself
# Apr 26th 2018, 07:28 admad @lutepluto get if from here https://github.com/cakephp/app/tree/master/bin or just use a proper webserver :slightly_smiling_face:
# Apr 26th 2018, 07:22 lutepluto Hi everyone. I take over a project which is built on CakePHP 3.1, but I'm fresh on both PHP and CakePHP. I just want to know how can I start the CakePHP built-in dev server without bin/cake cause there's no bin folder in the repo. Sorry for this silly question...:disappointed_relieved:
# Apr 26th 2018, 06:54 mendoza.anthony.g Thanks man.
# Apr 26th 2018, 06:54 joshualuckers https://www.startutorial.com/articles/view/preview-email-with-debugkit-in-cakephp-3
# Apr 26th 2018, 06:52 mendoza.anthony.g hi, i have ctp file under Template > Email > html. How can I view it in the browser to test the design?
# Apr 26th 2018, 06:24 saeideng `$post->id`
# Apr 26th 2018, 01:14 saltlake if ($this->Posts->save($post)) { id after saving this post
# Apr 26th 2018, 01:14 saltlake How can I get the id of saved record?
# Apr 26th 2018, 01:02 mendoza.anthony.g @itmpls hi sir, thanks for your help, may i know how this API work?
# Apr 26th 2018, 00:57 jbehling I resolved. Thanks
# Apr 26th 2018, 00:56 jbehling File uploaded https://cakesf.slack.com/files/U4JNYBNCW/FAD8PLW9Z/-.php / https://slack-files.com/T053DPNCM-FAD8PLW9Z-7abbce80f0
# Apr 26th 2018, 00:54 slackebot2 $this->Form->create() ?> <?= $this->Form->control('email') ?> <?= $this->Form->control('password') ?> <?= $this->Form->submit(__('Login')) ?> <?= $this->Form->end() ?>`
# Apr 26th 2018, 00:54 slackebot2 return $this->redirect($this->Auth->redirectUrl()); } else { $this->Flash->error(__d('Accounts/auth', 'You need to activate your account to sign in')); return; } } $this->Flash->error(__d('Accounts/auth', 'Invalid username or password, try again')); } }` In My template login.ctp `<?= $this->Flash->render('auth') ?> <?=
# Apr 26th 2018, 00:54 slackebot2 function login() { if ($this->request->is('post')) { $this->Auth->setConfig('authenticate', [ 'Form' => [ 'fields' => ['username' => 'email'], ] ]); $this->Auth->constructAuthenticate(); $user = $this->Auth->identify(); if ($user) { if ($user['active']) { $this->Auth->setUser($user);
# Apr 26th 2018, 00:54 jbehling Good evening, I want to create a login system where the user will enter the email and the password. I'm using the AuthComponent. But it does not work. Does anyone know the problem? Code below In my AppController.php `$this->loadComponent('Auth', [ 'authenticate' => [ 'Form' => [ 'fields' => ['username' => 'email'] ] ], ]);` In My UsersController.php `public
# Apr 26th 2018, 00:29 saltlake HI all
# Apr 25th 2018, 22:20 dereuromark For those that have been missing the 2.x web test runner (+ test case generation from web gui alias browser), I have been doing a some experimenting: https://github.com/dereuromark/cakephp-test-helper/releases/tag/0.1.0
# Apr 25th 2018, 20:44 madrid988 and those appear to be the 2 default formats as per the link you posted.
# Apr 25th 2018, 20:44 madrid988 What is strange is that when I try saving with dates as a string formatted like '2018-01-01 00:00:00', or '2018-01-01T01:01:01PM' I still get an error