Problem: You use the famous https://github.com/spatie/laravel-google-fonts/, but on local development or laragon you get “blocked: mixed content”, when you call your app with HTTPS. Solution: […]
Translate Laravel system messages and errors to different languages
If you want to translate your laravel messages to different languages, you can do so in minutes with https://github.com/Laravel-Lang/lang It took me literally 1 minute to change my complete backend to german with this package. Kudos, guys, great job. […]
Read More… from Translate Laravel system messages and errors to different languages
Laravel 11 Dark Mode Toggle Button
I forever loved dark mode on websites, since I come alive late when its already dark outside. And since I am a fellow Laravel user, I want my websites to have dark mode, too. I stumbled upon this post some time ago, and Klender (the author) really has written a good explanation how to implement […]
“Cannot refresh snap-store” Error when updating Ubuntu 24.04
Problem: In Ubuntu 24.04 you see available updates, but the update fails with “cannot refresh snap-store”. This is a known logical problem due to the half-baked integration of the canonical snap store next to apt in ubuntu. The snap store is a snap package itself, so if you start it to update your snap packages, […]
Read More… from “Cannot refresh snap-store” Error when updating Ubuntu 24.04
OpenVPN 2.6 OPTIONS ERROR: failed to negotiate cipher with server. Add the server’s cipher (‘AES-256-CBC’) to –data-ciphers (currently ‘AES-256-GCM:AES-128-GCM:CHACHA20-POLY1305’) if you want to connect to this server.
Your OpenVPN config file is an old version, for OpenVPN >=2.6 you need to change cipher AES-256-CBC to data-ciphers AES-256-CBC in your client.conf If this is not possible, you can also try with the command line option –compat-mode 2.3.0 […]
NO_PUBKEY B7B3B788A8D3785C http://repo.mysql.com/apt/ubuntu/dists/focal/InRelease
Solution: Update the key with sudo apt-key adv –keyserver keyserver.ubuntu.com –recv-keys B7B3B788A8D3785C […]
Read More… from NO_PUBKEY B7B3B788A8D3785C http://repo.mysql.com/apt/ubuntu/dists/focal/InRelease
http://repo.mysql.com/apt/debian jessie InRelease NO_PUBKEY 8C718D3B5072E1F5
The Mysql repository does not support jessie anymore. Solution: change jessie to buster in your /etc/apt/sources.list.d/mysql.list, so it looks like this: deb [trusted=yes][signed-by=/usr/share/keyrings/mysql-apt-config.gpg] http://repo.mysql.com/apt/debian/ buster mysql-apt-configdeb [trusted=yes][signed-by=/usr/share/keyrings/mysql-apt-config.gpg] http://repo.mysql.com/apt/debian/ buster mysql-5.7deb [trusted=yes][signed-by=/usr/share/keyrings/mysql-apt-config.gpg] http://repo.mysql.com/apt/debian/ buster mysql-toolsdeb-src [trusted=yes][signed-by=/usr/share/keyrings/mysql-apt-config.gpg] http://repo.mysql.com/apt/debian/ buster mysql-5.7 […]
Read More… from http://repo.mysql.com/apt/debian jessie InRelease NO_PUBKEY 8C718D3B5072E1F5
The following signatures were invalid: KEYEXPIRED 1587841717 KEYEXPIRED 1668891673
Debian Jessie is expired. Update to a new OS. If you cannot do this, there is a workaround with the freexian LTS repo. wget https://deb.freexian.com/extended-lts/pool/main/f/freexian-archive-keyring/freexian-archive-keyring_2022.06.08_all.deb && sudo dpkg -i freexian-archive-keyring_2022.06.08_all.deb After this, comment out all your sources in /etc/apt/sources.list and only use: deb http://deb.freexian.com/extended-lts jessie main contrib non-free Then apt update && apt upgrade should […]
Read More… from The following signatures were invalid: KEYEXPIRED 1587841717 KEYEXPIRED 1668891673
E: The repository ‘http://security.debian.org stretch/updates Release’ does no longer have a Release file.
Problem: The repository URL has changed. Solution: Change repository URL to debian archive. grep -rl “security.debian.org” /etc/apt/ | xargs sed -i ‘s/security.debian.org/archive.debian.org/g’ […]
The repository ‘http://ftp.debian.org/debian buster-backports Release’ no longer has a Release file
This error is due to an outdated debian repository. The backports repository moved from debian to debian archive. You need to change the URL to the repository. Solution for Debian buster: Find the old source with grep -r “stretch-backports” /etc/apt/ Sample output: /etc/apt/sources.list.d/backports.list:deb http://ftp.debian.org/debian stretch-backports main The first part is the file where the source […]