Operating Systems

How to switch off XAMPP UAC when installing on Windows

User Account Control might be a hindrance when installing XAMPP. To effectively disable it, edit this registry key: HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System Set EnableLUA to 0x00000000 Reference: https://stackoverflow.com/questions/45941819/uac-missing-write-permissions-error-while-installing-xampp-on-windows-server-2

Read More

How to install ZSH on Ubuntu

This article explains how to install ZSH if you have an Ubuntu or Linux Mint system: sudo apt install zsh References: https://www.computersnyou.com/3145/setup-zsh-oh-zsh-linux-mint-quick-guide/ https://www.howtoforge.com/tutorial/how-to-setup-zsh-and-oh-my-zsh-on-linux/

Read More

How to password protect NGINX directories

TL;DR mc -e /etc/nginx/nginx.conf location / { auth_basic “Restricted”; auth_basic_user_file /home/domain//public_html/.htpasswd; } htpasswd -c /home/domain/public_html/.htpasswd username Now restart NGINX: # service nginx restart The /

Read More
Scroll to Top