diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 02b6ccd..d179c45 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,3 +14,4 @@ jobs: server: ftp.andrewconl.in username: andrewconl.in password: ${{ secrets.FTP_PASSWORD }} + local-dir: ./_site/ diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..aea06e6 --- /dev/null +++ b/Gemfile @@ -0,0 +1,7 @@ +# frozen_string_literal: true + +source "https://rubygems.org" + +# gem "rails" + +gem "jekyll", "~> 4.3" diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..60ce3ec --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,72 @@ +GEM + remote: https://rubygems.org/ + specs: + addressable (2.8.1) + public_suffix (>= 2.0.2, < 6.0) + colorator (1.1.0) + concurrent-ruby (1.2.2) + em-websocket (0.5.3) + eventmachine (>= 0.12.9) + http_parser.rb (~> 0) + eventmachine (1.2.7) + ffi (1.15.5) + forwardable-extended (2.6.0) + google-protobuf (3.22.0-x86_64-linux) + http_parser.rb (0.8.0) + i18n (1.12.0) + concurrent-ruby (~> 1.0) + jekyll (4.3.2) + addressable (~> 2.4) + colorator (~> 1.0) + em-websocket (~> 0.5) + i18n (~> 1.0) + jekyll-sass-converter (>= 2.0, < 4.0) + jekyll-watch (~> 2.0) + kramdown (~> 2.3, >= 2.3.1) + kramdown-parser-gfm (~> 1.0) + liquid (~> 4.0) + mercenary (>= 0.3.6, < 0.5) + pathutil (~> 0.9) + rouge (>= 3.0, < 5.0) + safe_yaml (~> 1.0) + terminal-table (>= 1.8, < 4.0) + webrick (~> 1.7) + jekyll-sass-converter (3.0.0) + sass-embedded (~> 1.54) + jekyll-watch (2.2.1) + listen (~> 3.0) + kramdown (2.4.0) + rexml + kramdown-parser-gfm (1.1.0) + kramdown (~> 2.0) + liquid (4.0.4) + listen (3.8.0) + rb-fsevent (~> 0.10, >= 0.10.3) + rb-inotify (~> 0.9, >= 0.9.10) + mercenary (0.4.0) + pathutil (0.16.2) + forwardable-extended (~> 2.6) + public_suffix (5.0.1) + rake (13.0.6) + rb-fsevent (0.11.2) + rb-inotify (0.10.1) + ffi (~> 1.0) + rexml (3.2.5) + rouge (4.1.0) + safe_yaml (1.0.5) + sass-embedded (1.58.3) + google-protobuf (~> 3.21) + rake (>= 10.0.0) + terminal-table (3.0.2) + unicode-display_width (>= 1.1.1, < 3) + unicode-display_width (2.4.2) + webrick (1.8.1) + +PLATFORMS + x86_64-linux + +DEPENDENCIES + jekyll (~> 4.3) + +BUNDLED WITH + 2.4.7 diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..e69de29 diff --git a/_data/icons.yml b/_data/icons.yml new file mode 100644 index 0000000..3140c92 --- /dev/null +++ b/_data/icons.yml @@ -0,0 +1,14 @@ +- link: https://twitter.com/andrwcnln + icon: fab fa-twitter +- link: https://instagram.com/conlinsta + icon: fab fa-instagram +- link: https://github.com/andrwcnln + icon: fab fa-github +- link: https://www.strava.com/athletes/57896512 + icon: fab fa-strava +- link: https://open.spotify.com/user/1135508731?si=61zWbsqmT92LdT0JA5bAKw + icon: fab fa-spotify +- link: https://letterboxd.com/andrewconlin/ + icon: letterboxd +- link: mailto:andrew@andrewconl.in + icon: fas fa-envelope diff --git a/_data/nav.yml b/_data/nav.yml new file mode 100644 index 0000000..ed07279 --- /dev/null +++ b/_data/nav.yml @@ -0,0 +1,7 @@ +- name: about + link: /index.html +- name: blog + link: /blog.html +- name: photos + link: http://andrewconlinphotography.co.uk + diff --git a/_data/tags.yml b/_data/tags.yml new file mode 100644 index 0000000..de175fe --- /dev/null +++ b/_data/tags.yml @@ -0,0 +1,15 @@ +til: + backColor: gold + textColor: black +review: + backColor: fuchsia + textColor: black +thoughts: + backColor: green + textColor: black +photo: + backColor: cornflowerblue + textColor: black +poem: + backColor: purple + textColor: black \ No newline at end of file diff --git a/_includes/nav.html b/_includes/nav.html new file mode 100644 index 0000000..9a83c91 --- /dev/null +++ b/_includes/nav.html @@ -0,0 +1,38 @@ +{% assign tags = page.tags %} +{% assign primaryTag = site.data.tags[tags.first] %} + +
+ {{ page.date | date_to_string }} | + {% for tag in tags %} + {% assign currentTag = site.data.tags[tag] %} + {{ tag }} + {% endfor %} +
++ 01 Mar 2023 | + + + til + +
+I was trying to rescan the files in my Nextcloud server (running on Raspberry Pi 4 with DietPi), and kept running into some weird php
errors.
I was trying using the following syntax to call occ
and scan the files:
sudo -u www-data php /path/to/nextcloud/occ files:scan --all
+
but I kept running into a PHP error. Specifically this error:
+ +Doctrine\DBAL\Exception: Failed to connect to the database: An exception occurred in the driver: could not find driver in /path/to/nextcloud/lib/private/DB/Connection.php:139
+
followed by a long, verbose stack trace.
+ +It took me a decent amount of time to diagnose the exact issue, but eventually I found this list of required PHP modules in the Nextcloud admin manual.
+ +Running php -m
will print out the list of currently installed PHP modules. I noticed I was missing quite a few of the required modules, but the one that was causing my issue was the missing pdo_mysql
module.
+This can be installed by running:
sudo apt-get install php7.4-mysql
+
Note: This command will change based on your OS, PHP version and database type
+ +This resolved the error! However (as is always the case), this only meant I got a shiny new error instead:
+ +Doctrine\DBAL\Exception: Failed to connect to the database: An exception occurred in the driver: SQLSTATE[HY000] [2002] php_network_getaddresses: getaddrinfo failed: Name or service not known in /path/to/nextcloud/lib/private/DB/Connection.php:139
+
From first glance, this looks like something wrong in the DNS name resolution. This sent me a long way down the wrong path, changing a whole bunch of things in my docker-compose.yml file.
+Eventually however, after a long and perilous journey over the high seas of Nextcloud forums and StackOverflow, I found this example of running php occ
in a docker-compose configuration.
+This led me to running this command:
docker-compose exec -u www-data nextcloud-app php occ files:scan --all
+
Note: replace nextcloud-app with the name of your Nextcloud container. Also, this command must be run from the directory of your Nextcloud docker-compose.yml
+ +….aaaaaand, voila! The command runs, the files are scanned and everything is up to date.
+ +I was trying to rescan the files in my Nextcloud server (running on Raspberry Pi 4 with DietPi), and kept running into some weird php
errors.