| Q: What can I use to administrate and manage
my MySQL database? |
|
The most popular product by far for managing MySQL databases is a web based
product called phpMyAdmin. phpMyAdmin is free and very powerful. You can
use it to create and modify tables and data, and perform many other tasks
related to MySQL administration.
Installing phpMyAdmin :
- Download the latest "stable" version of phpMyAdmin from HERE .
- Unzip the downloaded file on your local computer.
- Upload the unzipped phpMyAdmin folder with all it's files and sub-folders
to a folder on your web site.
- Modify the "config.inc.php" file as follows (substitute your own URL
as required) : $cfg['PmaAbsoluteUri'] = ' http://www.yourdomain.com/phpMyAdmin/ ';
$cfg['blowfish_secret'] = ' yur634fjf6 '; $cfg['Servers'][$i]['auth_type']
= ' cookie ';
Support for phpMyAdmin or MySQL :
- http://www.phpmyadmin.net
- http://www.mysql.com
|