The basic two “mantra” commands in Ubuntu
I will give you the basic two commands that are really life savers, if something does not work in your VPS server. What are they? 1) $$>>> sudo chown -R www-data:www-data /var/www/html/directory_name 2) $$>> sudo chmod -R 755 /var/www/html/directory_name The command recursively makes all permissions 775 on the files / directories which follow. That is …