Johan van der Kuijl
Johan van der Kuijl
This enhancement allows authentication using an external provider such as LDAP, and still be able to log in using a cookie without storing the password.
I user LDAP for authentication, so I don't store passwords in my users table. ``` php // after authentication by LDAP $this->Cookie->write('CookieAuth', [ 'username' => $this->request->data('username'), 'password' => null ]);...
We’re using Logstash to write event data to a Kafka queue. The consumer of this queue expects an Avro binary blob (or fragment, the terminology seems to differ sometimes). It...