IT, IT Help Desk, WordPress
Login to your database and run query: SELECT * FROM wp_mds_options WHERE option_name = ‘active_plugins’; The result would look like:...
Admin, Bash, Direct Admin, IT Help Desk, Linux, Linux CLI
There easy way to find large folders on Linux is to use du command. See the example commands: sudo find / -xdev -type f -size +1000M -exec du -sh {} \; The above command list all files larger than 1000M with it size. du -h -x / | sort -h -r | head -10 This command...
GIT, IT, IT Help Desk, WebDevelopment
To store passwords in GIT you need to be able to encrypt and decrypt the password. You can do that using GPG tool. Both tools are available for a variety of platforms. See the instruction below on how to install the tooling and at the very end how to use them to store...
IT, IT Help Desk, Windows
Skipping unchanged/unmodified files using Copy&Paste on Windows? Did you ever try how to move a whole directory to a backup folder, skipping all files which were not changed? This can not be done with simple copy/paste in Windows GUI. However, Windows already has...