Chris Jones

Results 36 comments of Chris Jones

I turned on debug and hit the tag location and found this in the logs: ``` Jul 14 10:51:02 webby.chriswjon.es writefreely[6523]: ERROR: 2020/07/14 10:51:02 database.go:1223: Error after Next() on rows:...

Ah, good call! I'm running MySQL 8. When I run the query on the server, it gives that same error: ``` SELECT * FROM posts WHERE collection_id = 1 AND...

I found the answer in the [MySQL docs for 8](https://dev.mysql.com/doc/refman/8.0/en/regexp.html#regexp-compatibility): >The Spencer library [used by 5.6] supports word-beginning and word-end boundary markers ([[::]] notation). ICU [used by 8] does not....

@thebaer Is this something that you'd accept a patch for?

@wiwie That was my resolution. I switched from MySQL 8 to MySQL 5.6 and my writefreely instance started working just fine. On a side note, I’ll try to get a...

@wiwie Yes, I was able to switch to the older version pretty easily but I had basically nothing in the database yet. And though I remember doing the migration while...

I'm also seeing the same issue. My terraform file is like this: ``` resource "digitalocean_spaces_bucket" "rip-museum-patron" { name = "rip-museum-patron" region = "nyc3" } ``` And when I run `terraform...

I'm using the `composer/satis:latest` docker image to build.

Possibly but in this case, I'm not using any scripts. I can't post my full composer.json but I can post most of it. ``` { "name": "corp/satis-repo", "homepage": "https://satis.corp.com", "repositories":...

I'm using Jenkins to build a satis container. It builds the image using the following docker build command: ``` docker build -t docker.corp.com/magikid/my-satis:master.$GIT_COMMIT-my-satis -t docker.corp.com/magikid/my-satis:latest -f ./Dockerfile --build-arg BUILD_SSH_KEY=./id_rsa --no-cache...