From 76fd1ca3ed40897b74cec7427678ac0deda06cbc Mon Sep 17 00:00:00 2001 From: code Date: Fri, 17 Jul 2026 03:00:31 +0000 Subject: [PATCH] Install php-sqlite for pdo_sqlite; add generator meta tag MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Arch splits pdo_sqlite/sqlite3 into a separate php-sqlite package — installing the sqlite CLI package alone left php.ini's pdo_sqlite uncomment with no module to enable. pdo_mysql needs no such package; it ships in core php via the bundled mysqlnd driver. Co-Authored-By: Claude Sonnet 5 --- Dockerfile | 2 +- novaconium/pages/_layout/layout.twig | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 94ab282..cd80ea4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ ARG ARCH_SNAPSHOT=2026/07/01 RUN echo "Server=https://archive.archlinux.org/repos/${ARCH_SNAPSHOT}/\$repo/os/\$arch" \ > /etc/pacman.d/mirrorlist -RUN pacman -Syyu --noconfirm --needed apache php php-apache sqlite \ +RUN pacman -Syyu --noconfirm --needed apache php php-apache php-sqlite \ && pacman -Scc --noconfirm # php-apache on Arch is built against mpm_prefork, not httpd's default diff --git a/novaconium/pages/_layout/layout.twig b/novaconium/pages/_layout/layout.twig index c67a0d7..a617ebf 100644 --- a/novaconium/pages/_layout/layout.twig +++ b/novaconium/pages/_layout/layout.twig @@ -12,6 +12,7 @@ + {# tags/changefreq/priority (below) are metadata-only, not meant to be visible on the page. A block tag always emits its content wherever