RSSAmplifier

Blog

schakko.de

Practical stuff apart from my work in system design and software architecture.

schakko.deRSS feed ↗10 posts

Latest posts

Unknown status LTE_DIA_IP with FRITZ!Box 6850 LTE and Telekom MagentaMobil Business

This is one of those times when I feel pretty stupid.We booked the MagentaMobil Business Speedbox Flex tariff from Telekom for a company event. As the Speedbox wasn’t available and the event was taking place soon, we booked a FRITZ!Box 6850 LTE at short notice. After inserting the SIM card […] The post Unknown status LTE_DIA_IP with FRITZ!Box 6850 LTE and Telekom MagentaMobil Business appeared…

Migrating from 2 TByte SSD with MBR to 4 TByte with GPT

Yesterday I wanted to replace my 2 TByte SSD with a 4 TByte model as I was running out of hard drive space. My last upgrade two years ago from 1 TByte to 2 TByte went smoothly: I cloned the old SSD to the new SSD and then extended the […] The post Migrating from 2 TByte SSD with MBR to 4 TByte with GPT appeared first on schakko.de .

Fixing “Guided Access app unavailable. Please contact your administrator” when using Microsoft Intune and Endpoint Manager

Another problem I had recently asked about, had been a failed iPhone MDM rollout. As in my previous blog post mentioned, the endpoints in the environment – including iPhones – are managed with Microsoft Endpoint Manager. During one of the iPhone deployments, the user received the error Guided Access app […] The post Fixing “Guided Access app unavailable. Please contact your administrator” when…

Distributing Adobe Acrobat DC with Microsoft Intune and Endpoint Manager

Lately, I had been asked to help out with the deployment Adobe Acrobat DC to Microsoft Intune-managed notebooks. Getting out of my system design/software architecture bubble turned out to be an interesting experience. First of all some background: All notebooks are managed by Microsoft Intune through the Microsoft Endpoint Manager. […] The post Distributing Adobe Acrobat DC with Microsoft Intune…

Deploying PHP 8.0 applications with Azure App Service

To be able to run PHP applications on Azure App Services which are using PHP 8.0 features, the Runtime Stack has to be changed. With the newer Runtime Stack, you also have to update the nginx.conf of the underlying Docker image. This article describes how you can achieve that. 2023-03-28: […] The post Deploying PHP 8.0 applications with Azure App Service appeared first on schakko.de .

Using GitHub Workflow with Maven dependencices from a private GitHub Package Registry

GitHhub Package Repository provides an easy way to share dependencies like Maven artifacts between GitHub projects. Publishing of new artifacts into GitHub Package Repository can be automated with GitHub Actions. In May 2019 GitHub introduced the GitHub Package Registry: an alternative to some traditional package registries like Sonatype Nexus. During […] The post Using GitHub Workflow with Maven…

Diagnosing and fixing an ERR_CONNECTION_RESET error in WordPress

If you receive the error ERR_CONNECTION_RESET on one website only, it is highly likely that something went wrong on the server side. Receiving random ERR_CONNECTION_RESETs A few weeks ago one of my colleagues complained to me: Sometimes, when he was using the WordPress theme editor, he either received an empty […] The post Diagnosing and fixing an ERR_CONNECTION_RESET error in WordPress appeared…

Fixing HTTP 401 Unauthorized when calling WooCommerce’s REST API

WooCommerce returns an HTTP 401 error if you are not using HTTPS or the Authorization header is not parsed correctly by your webserver. Receiving HTTP 401 during authentication WooCommerce provides an extensive REST API with which you can automate your WordPress WooCommerce shop. WooCommerce uses a Consumer Key and Consumer […] The post Fixing HTTP 401 Unauthorized when calling WooCommerce’s REST…

My software developer’s journey of narrowing down thought constructs I believe in

If you are following me on Twitter, you might have seen a change of content in my tweets. It’s more about making money and value. There are a ton of reasons why this has happened and I’ll try to explain some of it. Before I get into it, a disclaimer: […] The post My software developer’s journey of narrowing down thought constructs I believe in appeared first on schakko.de .

Restrict SSH to rsync for deploying files with GitHub Actions

rsync access can be restricted with a custom wrapper script or an official script named “rrsync”. Access to your remote filesystem should always be restricted so you won’t leak any information in case of a security breach. I’ve used GitHub Actions a lot in the last few months. For web […] The post Restrict SSH to rsync for deploying files with GitHub Actions appeared first on schakko.de .