Archive for the Uncategorized Category
Arduino, LCD & buttons
| December 4th, 2019Let’s encrypt certificate for Lync (Skype for Business)
| October 27th, 2018Let's Encrypt is a free, automated, and open Certificate Authority. It has a limitation for 3 month, but it can be automatically renewed.
Follow the below steps to use let's encrypt certificate on a Lync server:
Search and open "Lync Server Deployment Wizard"
Once open, click on "Install or update Lync Server System"
Click on "Request, Install or Assign Certificates"
Delete the expired Certificate then click on "Request"
Next, then choose "Prepare the request now, but sent it later Read more [...]
bash: wp: command not found
| August 4th, 2017After installing WP-CLI as in here: http://wp-cli.org/
executing wp gives the error:
bash: wp: command not found
For me the problem was that the system didn’t have the directory /usr/local/bin in the PATH, to add it:
PATH=$PATH:/usr/local/bin
export PATH
wp should work now if installed correctly