Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
Problem: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
sudo touch /etc/apache2/conf.d/fqdn
sudo nano /etc/apache2/conf.d/fqdn
then add
ServerName localhost
Restart
sudo service apache2 restart
To verify that the php module is loaded, type:
a2query -m php5
if not enabled, then load with:
sudo a2enmod php5
and restart apache:
sudo service apache2 restart
Add Comment
Please, Sign In to add comment