Marius Nettum

Results 27 comments of Marius Nettum

This error is pretty common (regardless of craft 3.4) if your matrix is getting big (e.g. with supertables inside your matrix and lots of linkfield fields). I'm pretty sure you...

Are you using `$vcard->download()` or `$vcard->getOutput()`? If you are using `getOutput()` you will need to add the appropriate headers to your response. My guess is that the response are returning...

Well, this package already have a function to get the appropriate headers so you could do ``` foreach ($vcard->getHeaders(false) as $header) { header($header); } ``` to get all the headers...

I can confirm that I got the same issue in chrome when the `accept`-option is set. Not working on `Google Chrome Version 106.0.5249.61 (Official Build) (64-bit)`. Working on `Firefox Browser...

For the record, it's the same on Ubuntu 22.04. ``` E: The repository 'https://ppa.launchpadcontent.net/patriciogv/glslviewer-ppa/ubuntu jammy Release' does not have a Release file. N: Updating from such a repository can't be...

Thanks for the info! Compiling from source worked, but I had to run `sudo apt-get install build-essential` as I got an `No CMAKE_CXX_COMPILER could be found` error during `cmake ..`

Same error here, I've also enabled 2-step verification.

+1 on this. We try to enforce as secure CSP headers as possible, but if we do not add `'unsafe-eval'` at least the image editor will break: ![image](https://user-images.githubusercontent.com/798156/64875150-c1469e00-d64c-11e9-8803-de9916b57730.png)

> Ok so I was thinking changing the `on` and `off` methods to work differently for mobile, i.e. detect the `orientationchange` event instead of `resize`, but apparently that's been [deprecated](https://developer.mozilla.org/en-US/docs/Web/API/Window/orientationchange_event),...

I can confirm this. It seems to happen after upgrading to 3.1 regardless of using `project.yaml` or not. I did the the following: 1) Backup prod database (craft 3.0 and...