PHPMyAdmin Configuration

Introduction

For a general definition see: http://en.wikipedia.org/wiki/PHPMyAdmin, but more comprehensive information is available from the offical site at http://www.phpmyadmin.net/.

This applcation can be used to configure MySQL databases using PHP.

The following guidance might be useful in helping to configure PHPMyAdmin on an Apache Web-server running on Linux.

My PHP Server Configuration

The /etc/httpd/conf.d/phpmyadmin.conf configuration file was adjusted to:

#
#  Web application to manage MySQL
#

Alias /phpmyadmin /usr/share/phpmyadmin
Alias /phpMyAdmin /usr/share/phpmyadmin
Alias /mysqladmin /usr/share/phpmyadmin
Alias /mysql /usr/share/phpmyadmin


  Order Deny,Allow
  Deny from all
  Allow from localhost 192.168.0.0/24

Web pages

Web pages http://localhost/phpmyadmin.php are served up by the PHP processor in the client browser.

General Links

For general links to useful references when setting up PHP see: Apache resources on the Internet.

The following general links are useful references when setting up PHPMyAdmin:


URLSummary/Description
http://www.phpmyadmin.net/ Offical web site
http://www.mysql-apache-php.com/ Quick Linux Server Installation