karstennilsen

Results 12 comments of karstennilsen

This PR has a bug in ExceptionMailer, you should not use $this->from, this is alreay being used by the Mailable class which it extentds.

The problem is that with endRedirect all redirects are first processed. When this is not to a root path e.g. http://www.harley-davidson.com/content/h-d/en_AU/home.html or https://gmail.com redirects to https://accounts.google.com/ServiceLogin?service=mail&passive=true&rm=false&continue=https://mail.google.com/mail/&ss=1&scc=1&ltmpl=default&ltmplcache=2&emr=1&osid=1, you enter an unsupported...

We have been using https://github.com/doctrine/dbal/pull/4998 as a patch on doctrine/dbal quite some time now without any issues on a big software system with over 100K customers. Our database size shrunk...

> Thank you for the additional insights. > > Migrating UUID columns that are part of a FK constraint was the tricky part that I missed in #5990. If you...

> Retargeted to 2.19.x. There is a conflict now, which needs to be fixed by @karstennilsen or by you in another PR. Should be fixed now. If there is anythin...

@greg0ire New version targets 3.2.x and should pass CI (tried it locally). Please approve 😊

I think you should do `route print` to get more useful info for this ticket. Just `route` gives just a manual of the command.

In my experience the 2019 CU5 files also work for higher CU's. So you can use this commit.

I now implemented my CSP exceptions like this: ```php public function page(ContentSecurityPolicyListener $cspListener) { // Allow *.doubleclick.net as extra script-src $cspListener->getEnforcement()->setDirective('script-src', $cspListener->getEnforcement()->getDirective('script-src') . ' *.doubleclick.net'); return $this->render('exampe.html.twig'); } ``` `ContentSecurityPolicyListener::getEnforcement()`...

I just linked networks of both containers: ``` services: wireguard: image: lscr.io/linuxserver/wireguard:latest container_name: wireguard cap_add: - NET_ADMIN ports: - 51820:51820/udp sysctls: - net.ipv4.conf.all.src_valid_mark=1 restart: unless-stopped wg-portal: image: h44z/wg-portal:latest container_name: wg-portal...