Technical Posts

A collection of mostly IT centric posts from the last ~20 years

Articles

Latest

Access

Blog History

FrankenPHP + Caddy + Ubuntu 24.04 + CakePHP Worker

This is getting FrankenPHP running with Caddy on Ubuntu 24.04 LTS without Docker Warning: CakePHP doesn't currently come with a drop-in frankenphp worker script. The script sample works if you set $maxRequests to 1 and let frankenphp restart it for every request....

Cannot upload Mac Screenshots to WordPress

Problem I have my Macbook Screenshot App configured to save screenshots to disk. I attempted to upload a saved-to-disk screenshot image to Wordpress and found that Wordpress shows a broken image icon and the Browser returns a 404 when attempting to GET and display the...

Viewing Microsoft 365 Service Health

Had an issue yesterday where an email send process was failing with an SMTP Error: 421 4.3.2 error: [Cake\Network\Exception\SocketException] SMTP Error: 421 4.3.2 The maximum number of concurrent connections per resource forest has exceeded a limit, closing...

Show the full log line when using journalctl

When using journalctl to display log entries longer lines are truncated to a terminal width with a `>' to indicate the line continues off screen To have the full log entry line displayed use the following journalctl --since 'May 22 07:00:00' --no-pager | less A...