11 Comments


  1. Fixing the Apache fully qualified domain name

    During the above steps you may have seen an error message like this when reloading Apache.

    apache2: Could not reliably determine the server's fully qualified domain name,
    using 127.0.1.1 for ServerName
    This doesn't seem to cause any problems for me, but if you don't like seeing that error, you can fix it with this command.

    **Before, you have to create a folder named "conf.d" in - etc/apache2/ - then use the command:

    echo "ServerName localhost" | sudo tee /etc/apache2/conf.d/fqdn

    Then reload Apache with

    sudo service apache2 reload

    Reply
  2. ar

    Great Tutorial

    Reply

  3. I was getting the 404 error for phpmyadmin as well, and what worked for me was to add the line "Include /etc/phpmyadmin/apache.conf" in the /etc/apache2/apache2.conf (as per https://help.ubuntu.com/community/ApacheMySQLPHP)

    Reply
  4. pavan

    Hi Everyone,
    I get localhost page i.e., "It Works"
    But i can't access localhost/phpmyadmin page , It say 404 error.
    Help me

    Reply
    • pavan

      Finally I got it by using
      sudo dpkg-reconfigure -plow phpmyadmin

      sudo ln -s /etc/phpmyadmin/apache.conf /etc/apache2/conf.d/phpmyadmin.conf

      sudo /etc/init.d/apache2 reload

      Reply
      • themirror

        Thank you buddy, that did the trick for me too

        Reply

  5. @Samanta, I don’t think this a is a error message or at least an error message that you should be worries about. This is just a log of when the apache daemon was restarted. Nothing nasty.

    Reply
  6. Samanta

    Hi I think I have a problem when I reload apache this appears in the error.log

    [Wed Jul 18 13:44:58 2012] [notice] Graceful restart requested, doing restart
    [Wed Jul 18 13:44:58 2012] [notice] Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.2 with Suhosin-Patch configured -- resuming normal operations

    And this when I restart Apache
    [Wed Jul 18 13:50:44 2012] [notice] caught SIGTERM, shutting down
    [Wed Jul 18 13:50:45 2012] [notice] Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.2 with Suhosin-Patch configured -- resuming normal operations

    this didn't appear before =(

    Reply
  7. cliff

    the and was missing from my post (a space instead). don't put the p inside the < in the quotes.

    Reply
  8. samir

    Local host shows blank php page in browser but html page are working fine.It shows no error,but just blank page.

    Reply
    • cliff

      I had this problem too, a tutorial I used was wrong. Do not put and inside double quotes. The example said,

      echo " This is a PHP line ";

      When corrected to

      echo "This is a PHP line";

      it works. I'm still new to this, but that change fixed the blank page, displays now.

      Reply

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.