Hello Devz, Migrate a WordPress website can be a pain in the ass. But if you follow this procedure, it should be quite simple… Let’s considere: A = source site (ex: myoldwebsite.com) B = destination site (ex: newwebsite.com) Backup source site: 1. Deactivate all plugin in A (use the Select All the select Desactivate) 2. […]
Raspberry Pi – Useful commands for your web server
Hello Devz, Here are some simple steps to configure your own web server: INSTALL WORDPRESS sudo mkdir -p /var/www/html/mywebsite cd /var/www/html/mywebsite sudo wget http://wordpress.org/latest.tar.gz tar –strip-components=1 -xvf latest.tar.gz rm latest.tar.gz sudo chown -R www-data:www-data /var/www/html/mywebsite sudo chmod -R 755 /var/www/html/website KILL THE FIREWALL sudo iptables -F sudo iptables -X sudo iptables -t nat -F sudo […]