I just formatted my notebook. I have installed Ubuntu 18.04, Apache, MySQL, and PHP. But when I enter the page localhost
, I get the following error:
How can I fix this?
I just formatted my notebook. I have installed Ubuntu 18.04, Apache, MySQL, and PHP. But when I enter the page localhost
, I get the following error:
How can I fix this?
It seems to me that you do not have Apache started. Try this:
# Para ver se o tens o Apache iniciado:
sudo /etc/init.d/apache2 status
# Para iniciar o Apache:
sudo /etc/init.d/apache2 start
You may have to do the same with MySQL .