Author: elitarnoeadmin
WordPress password changing in the DataBase
It is a simple way to change the password if you can’t reset it through the embedded password recovery procedure.
In the phpMyAdmin or other DB management system, we are looking for a table
*_user

Then we pick Edit in front of the needed to change the user whose password needs to be changed, for example, admin

In expanded fields, we are going to edit the password in the MD5 mode

After editing in the right bottom place, push Go to save these changes.
Handling user sessions on Windows
How can we set time limits for user sessions on Windows?
Group Policies Editor has to help us to tune values in users’ session limits.
So, we launch this editor by running within the Win+R “Run” programs tool or with the command line:
PS C:\Windows\system32> gpedit.msc
Then we are following the branch in this way:
Local Computer Policy >
Computer Configuration >
Administrative Templates >
Windows Components >
Remote Desktop Services >
Remote Desktop Session Host >
Session Time Limits

There, we could edit, change whatever we need from the users’ sessions limitation tool.
Delete local multi-branches
To avoid the manual routine of the deprecated git branches deletion, it is reasonable to use the grep and xaegs sequence
# git branch | grep "SOMEPATTERN" | xargs git branch -D
where “” expects to contain a short patterned selector
Adding the trust domain in NextCloud
The NextCloud post installation FQDN add
# occ $ config:system:settrusted_domains 2 — value=full.domain.name config:system:set trusted_domains 2 — value=full.domain.name
or by sudoer
# sudo ./occ config:system:set trusted_domains 2 --value=full.domain.name