coding

ACCID SSL + Subdomain WILDCARD

coding
ACCID SSL / Subdomain Architecture Note Core Doctrine ACCID is the builder, not the production site. The current environment is an authoring framework where users create, preview, edit, and iterate safely; publishing produces a separate deployable artifact such as static HTML, React, Astro, or Next.js.[cite:1] This distinction keeps the system focused. The internal workspace can […]

ACCID SSL + Subdomain WILDCARD Read More »

Setting up Matomo w/ Wordpress + React

coding all-scribbly
Absolutely—here’s the cheat-sheet with the “why” behind every call, so Future-You knows exactly what each one proves. 0) Quick map of the stack NGINX (80/443, public) → proxies to Apache (8080, local) for app sites. Tracker is served directly by NGINX (its own vhost + PHP-FPM). tracker.ferociousbutterfly.com Let’s Encrypt uses HTTP-01 files under /.well-known/acme-challenge/ served

Setting up Matomo w/ Wordpress + React Read More »

WP- DB – Extraction

all-scribbly coding design - layout general accid
get counts — 1. Master overview: all post types + statuses SELECT post_type, post_status, COUNT(*) AS count FROM wp_posts GROUP BY post_type, post_status ORDER BY post_type, post_status; — 2. Just posts/pages by status SELECT post_type, post_status, COUNT(*) AS count FROM wp_posts WHERE post_type IN ('post', 'page') GROUP BY post_type, post_status ORDER BY post_type, post_status; —

WP- DB – Extraction Read More »

PHP Cheat Sheet

all-scribbly coding
PHP Cheat Sheet The only paths that matter (Homebrew PHP 8.5 + Apache) PHP binary /opt/homebrew/bin/php PHP 8.5 config folder /opt/homebrew/etc/php/8.5/ Extra scanned INI files /opt/homebrew/etc/php/8.5/conf.d/ PHP-FPM main config /opt/homebrew/etc/php/8.5/php-fpm.conf PHP-FPM pool configs /opt/homebrew/etc/php/8.5/php-fpm.d/ yours: /opt/homebrew/etc/php/8.5/php-fpm.d/sandbox.conf Apache vhost file (your php sandbox site) /private/etc/apache2/extra/php-sandbox.local.conf Apache main config /etc/apache2/httpd.conf Apache logs (your sandbox vhost) /private/var/log/apache2/php-sandbox-error_log /private/var/log/apache2/php-sandbox-access_log

PHP Cheat Sheet Read More »

Gitlab – Backup / Update Steps

all-scribbly coding,
To update your GitLab instance to version 17.6, follow these steps: Review the Release Notes: Familiarize yourself with the new features, bug fixes, and any deprecations in version 17.6. GitLab check rhel [spiffy-root@spiffydesign ~]$ rpm -E %rhel 9 Cool — RHEL/Alma 9 means you want the .el9 builds. Install targets (in order) 1. gitlab-ee-18.5.5-ee.0.el9 2.

Gitlab – Backup / Update Steps Read More »

Signals Vault – Auth

coding accid
Auth system complete. Two auth paths, both project-scoped: Path A — AccidAuth (primary) routers/auth.py POST /auth/verify-token — accepts X-Accid-Key + X-Accid-Hash + X-ACCID-App headers Auto-registers on first call (no separate registration step) Project scoping: pass {"project_id": "dragon-lady"} in body — keys accumulate project access on each successful auth GET /auth/key-info — returns registered projects, app,

Signals Vault – Auth Read More »

ACCID Scraper Pipeline

coding accid
+ JSON-noculars Complete System Documentation Version 2.0 — February 11, 2026 What This System Does The ACCID Scraper Pipeline takes any website, extracts its content (text, links, images, navigation), and converts it into a format the ACCID HTML Builder can import. The output is a static HTML site with the original content. No databases, no

ACCID Scraper Pipeline Read More »

./ACCID HTML Builder – Technical Overview

coding accid
JSON Overview What It Is A standalone, client-side HTML page builder. No backend server required for core editing — pages are built in the browser, persisted to localStorage, and exported as static HTML via ZIP download or FTP upload. When served from an ACCID backend (PHP bridge or ACCID Vault), persistence extends to server-side storage.

./ACCID HTML Builder – Technical Overview Read More »