I’m running into a problem of Redis cache getting full, then when the client tries to Flush Cache through Magento Admin, it returns an error and signs out. It’s necessary to always clean it through the command line. Is there a way to prevent Redis from getting full? Or some […]
Daily Archives: October 6, 2025
I am trying to upgrade from 2.3.5p1 to 2.3.7 using Composer version 1.9.1, on a computer with PHP 7.3. First i run: php composer.phar require magento/product-community-edition 2.3.7 –no-update I get: Warning from https://repo.packagist.org: You are using an outdated version of Composer. Composer 2 is now available and you should upgrade. […]
I have a dual boot pc, using grub2 with Windows 10 and Ubuntu 22.04. There are 2 disks. SDA holds the boot and both OS. SDB is only used as storage. Here is my fdisk -l Disk /dev/sda: 931.51 GiB, 1000204886016 bytes, 1953525168 sectors Disk model: Samsung SSD 860 Units: […]
It looks like KB5066198 introduces SMB2 regression on Windows 10 pro and home (confirmed on 3 machines). Prior to this update, connections to an SMB2 share on an ASUS RT-AX86U Pro router were stable and maintained for a very long time. I verified that using netstat on the router. Since […]
As soon as I plug in the dongle of the Bluetooth Delton keyboard KB200 into the docking station, my computer acts as if the Ctrl key is pressed and does not type anything. I verify it by pressing the Esc button alone which opens the start menu in addition to […]
I installed Windows 11 using the English version, I then installed the Hebrew language pack and set it as the Display language, however it changed it very badly – it’s partially English and partially Hebrew in many places, like the menus: It’s been like that for a few months, and […]
I have found the following code snippet for decrypting passwords from chromium-based browsers def _decrypt_v80(buff, master_key): iv = buff[3:15] payload = buff[15:] cipher = AES.new(master_key, AES.MODE_GCM, iv) decrypted_pass = cipher.decrypt(payload) decrypted_pass = decrypted_pass[:-16].decode() return decrypted_pass buff is the encrypted password blob storaged in the “Login Data” database. master_key is the […]