On the Home page of a Wordpress site I have an Elementor Tabs element with the tab Content being Elementor saved templates. The Elementor elements in the tabs have icons that are showing up as grey squares and losing styling when I look at the page as an anonymous...
IT Tips
Viewing AI enabled cams is Grabby and Freezing when using latest versions of Hikvision iVMS
Have a DS-7732NI-M4/24P with some IPC-T381H-MU HiLook Turrent cameras and a mix of older cams connecting with ONVIF (25 cams in total) and notice that a direct connection with iVMS 4200 with a single cam showing in main view of a `AI' enabled Cam is grabby and...
Install a GUI editor for SQLite databases in GNU Debian Based Linux
sudo apt-get install sqlitebrowser Screenshot from Ubuntu 24.04.3 LTS running in WSL on Windows 11 Enterprise
WordPress Comments have wrong Comment Author IP Address when using Cloudflare Proxy
Add this to the functions.php file function wp_use_cf_client_ip($comment_author_ip) { if(isset($_SERVER['HTTP_CF_CONNECTING_IP'])) { return $_SERVER['HTTP_CF_CONNECTING_IP']; } // return defalt otherwise return $comment_author_ip; } add_filter('pre_comment_user_ip',...
Remove old trackback/pingbacks in WordPress
From the mysql command line client To see all your trackback/pingbacks SELECT * FROM wp_comments WHERE (comment_type = 'pingback' OR comment_type = 'trackback'); Narrow it down to a specific post SELECT * FROM wp_comments WHERE (comment_type = 'pingback' OR...
Getting the SHA512SUM using Powershell
Get-FileHash -Path ".\debian-13.2.0-amd64-netinst.iso" -Algorithm SHA512 | fl # output Algorithm : SHA512 Hash : 891D7936A2E21DF1D752E5D4C877BB7CA2759C902B0BFBF5527098464623BEDAA17260E8BD4ACF1331580AE56A6A87A08CC2F497102 DAA991D5E4E4018FEE82B Path :...
VMWare Workstation Pro 25H2 on Windows 11 Enterprise 25H2
Tried VMware Workstation Pro a while a go on Windows 11 but I am bound to having Hyper-V running for my Docker Desktop / WSL development environment and it just didn't work. Trying VMWare Workstation Pro 25H2 and it... works Apparently it uses the Hyper-V internals to...
Perform an if-then-else in a Dockerfile
RUN if [ $(arch) = "aarch64" ] ; then apt-get -y install chromium ; else echo Chromium NOT needed ; fi
Entering a Docker Container via Docker Compose CLI
TIL that you can enter a container straight from docker compose Run bash as the containers default user docker compose -f docker-compose.yaml exec php bash Run bash as the root user docker compose -f docker-compose.yaml exec -u 0 php bash Where docker-compose.yaml is...
Change the power settings to stop a computer sleeping using the CLI
powercfg /x monitor-timeout-ac 30 powercfg /x disk-timeout-ac 15 powercfg /x standby-timeout-ac 0 powercfg /x hibernate-timeout-ac...
