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 |
Jun 28 2024
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
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
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
Feb 24 2024
I got an error about e2fsck version. In my case the issue happened in Centos7, when I try to expand the disk of my VM in Cloudmin.
1 |
qemu-img resize fedora-new.qcow2 +20G |
You will hit an error with your e2fsck version. You will need to download the latest source binary of e2fsprogs from your OS distributor and install it. …
Feb 08 2024
After low space condition once happened on a server MariaDB failed to start with :
1 2 3 4 5 |
[ERROR] Aria engine is not enabled or did not start. The Aria engine must be enabled to continue as mysqld was configured with --with-aria-tmp-tables [ERROR] Aborting ... mariadb.service: main process exited, code=exited, status=1/FAILURE Failed to start MariaDB 10.3.32 database server. |
In /var/log/messages:
1 2 3 4 5 6 |
[ERROR] Aria engine is not enabled or did not start. The Aria engine must be enabled to continue as mysqld was configured with --with-aria-tmp-tables [Note] mysqld: Aria engine: starting recovery recovered pages: 0% 10% 20% 30% 40% 50% 60% 70% 80%201210 16:07:56 [ERROR] mysqld got signal 11 ; [ERROR] Could not open mysql.plugin table: "Unknown storage engine 'Aria'" |
Jan 30 2024
I got this upon trying to download call recording in Vicidial on the lead’s page. I have Vicibox 11 installed in virtual machine on Cloudmin with Vicidial VERSION: 2.14-899a BUILD: 231109-2027
Jan 17 2024
On the newly installed Vicidial box I got problem connecting WebRTC phone to Asterisk. I followed the setup guide here In the Asterisk console I saw: Problem setting up ssl connection: error:00000001:lib(0):func(0):reason(1), Internal SSL error ERROR[2203]: tcptls.c:179 handle_tcptls_connection: Unable to set up ssl connection with peer ‘22.22.48.22:48756’ [Jan 17 11:46:42] ERROR[2203]: iostream.c:552 ast_iostream_close: SSL_shutdown() failed: …
Jun 16 2023
The error Unable to verify the first certificate occurs in Postman cloud agent because it does not have Trusted Root certificates storage with intermediate and root CA certificates thus cannot verify client → intermediate → root CA chain. Azure Application Gateway does not have Trusted Root certificates storage as well so the error occurs under …
Nov 08 2022
I moved from mod_php to fcgi style hosting and got the following in Apache error log when I tried to open one of my websites: [Tue Nov 08 08:34:08.357359 2022] [core:alert] [pid 19149] [client 95.158.43.63:14405] /home/domain.com/public_html/.htaccess: Option All not allowed here [Tue Nov 08 08:35:58.058962 2022] [core:alert] [pid 14190] [client 95.158.43.63:46366] /home/domain.com/public_html/.htaccess: Option FollowSymlinks not …
Oct 28 2022
In case you cannot clone your repository even in shallow mode it means that more memory is needed for git to fetch the files. The git output is similar to:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
ERROR: Timeout after 10 minutes ERROR: Error cloning remote repo 'origin' git fetch --tags --progress --depth=1 -- git@bitbucket.org:username/repo.git +refs/heads/*:refs/remotes/origin/*" returned status code 128: stdout: stderr: remote: Enumerating objects: 13045, done. remote: Counting objects: 0% (1/13045) remote: Counting objects: 1% (131/13045) ... Receiving objects: 98% (12804/13045), 360.22 MiB | 635.00 KiB/s Receiving objects: 98% (12804/13045), 360.95 MiB | 643.00 KiB/s fatal: The remote end hung up unexpectedly fatal: early EOF fatal: index-pack failed |
Again we see the same fatal: The remote end hung up unexpectedly fatal: early EOF fatal: index-pack failed