Monday, January 02, 2006

Installing PHP MyAdmin

Intro:
phpMyadmin is a web base GUI interface for MySQL.
You can create database and user even without knowing SQL language.
You can download phpmyadmin from http://www.phpmyadmin.net/home_page/downloads.php

1. Source Download:http://www.phpmyadmin.net/home_page/downloads.php
2. copy config.default.php to config.inc.php
3. Edit config.inc.php
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['auth_type'] = 'http';
$cfg['PmaAbsoluteUri' ] = 'http://host ip address/pma/';
4. Restart Apache
5. Verify that MySQL and Apache are running and go to http://localhost/pma/index.php

No comments: