Recently I have flashed my Asus TUF AX3000 V2 router with Gnuton‘s firmware based on Asus Merlin. One of firmare’s big advantages is the possibility to install Entare-based utilities such a Transmission. I successfully installed Transmission in Asus TUF AX3000 V2 but upon launching web interface I got “Could not connect to the server. You …
Category: Fixes
Mar 06 2025
Please provide a valid cache path” error in Laravel
The reason for this error is that ether cache path is mission or permission are incorrect. It can be easily fixed with:
1 2 3 |
cd storage/ mkdir -p framework/{sessions,views,cache} chmod -R 775 framework |
Good luck!
Oct 25 2024
Microphone not working, privacy setting off, “managed by your organization”
Windows don’t let to turn a microphone on because of “some settings are hidden or managed by your organization” . A PC is a personal PC on home network. There are a few reasons for this:
Oct 01 2024
Connection timeout to sts.amazonaws.com: pecularity of AWS STS PrivateLink Integration Issue with Lambda & Boto3
I have a Python-based Lambda function in VPC with an VPC endpoint creates for Amazon STS. However I could not connect to STS with timeout error:
Jul 19 2024
FreePBX Letsencrypt certificate expired
Recently Letsencrypt certificate expired on one of my FreePBX servers. It supposed to update itself automatically as it is set in cron file for “asterisk” user.
Jun 28 2024
TypeError: Argument 1 passed to Carbon\CarbonInterval::setLocalTranslator()
You may encounter the following error after updating through WHMCS v8.0:
1 |
TypeError: Argument 1 passed to Carbon\CarbonInterval::setLocalTranslator() must implement interface Symfony\Component\Translation\TranslatorInterface |
May 14 2024
Laravel Relation “Attempt to read property on null”
It usually means that the related record is NULL or soft-deleted. There are multiple ways to gracefully handle such a situation, without showing the error to the user. A practical example would be a list of Posts with belongs To relation to Categories. Migration file for Posts:
1 2 3 |
Schema::table('posts', function (Blueprint $table) { $table->foreignId('category_id')->nullable()->constrained(); }); |
Apr 30 2024
SQL Reporting Services. HTTP Error 503 The service is unavailable
After I installed new certificate using SQL RS Configuration Manager upon opening any report I see the following: In comparison to this case the root cause is the same: when binding a certificate Configuration Manager creates shitty URL bindings like
Apr 19 2024
Firewalld failed to start timeout
Try to start firewalld service via the following command
1 |
systemctl start firewalld |
but get the following error after few seconds no response: firewalld.service: Start operation timed out. Terminating. firewalld.service: Failed with result ‘timeout’. systemd: Failed to start firewalld – dynamic firewall daemon.
Apr 19 2024
Fail2ban: already banned
I have Fail2Ban running on my Centos Server. In my /var/log/messages I noticed something really weird: I configured Fail2Ban to add the banned IP to iptables so they cannot reach my server anymore