by Cristian Balan | May 30, 2020 | Bookmarks, Linux, WordPress
This step-by-step guide contains everything you need to know about setting up a Ubuntu 20.04 server to run WordPress at lightning speed.
Continue reading at https://spinupwp.com/install-wordpress-ubuntu
by Cristian Balan | Nov 2, 2017 | Drupal, Linux, WordPress
While installing Node.js and npm, I’ve somehow ended up with different versions of nodejs and node.
# node -v
v6.9.5
# nodejs -v
v7.10.1
Getting inspired from Completely removing Node.js and Npm, I’ve managed to fix the mess:
git clone https://github.com/nodejs/node.git
cd node/
./configure
sudo make uninstall
The result?
# node -v
v7.10.1
# nodejs -v
v7.10.1