This article is from: Ohaha's learning experience [ohaha.ks.edu.tw] Author: Blue Bubble (panda@ks.edu.tw)
Objective:
The so-called phpMyAdmin is simply a kind of MySQL management tool.
Through this program, you can manage MySQL directly from the web, without the need to go to the system to execute.
Installation steps:
1. Get the file ftp://ohaha.ks.edu.tw/pub/source/php/phpMyAdmin_2.0.5.tar.gz or ftp://ohaha.ks.edu.tw/pub/source/php/c_ Phpmyadmin_2.0.5.tar.gz
The only difference is that the latter do not need to do the best Chinese action.
The so-called Chinese optimization is because the translator of this program may be the mainland. So poor translation
If you don't think it's relevant, you can ignore it.
2. We first use the former and then add the Chinese optimization.
3. Unzip this file to the Web server's root directory
You know, that's where you put the page.
Ex:/usr/local/apache/htdocs/(This is where my Web page is stored)
A. # MV phpmyadmin_2.0.5.tar.gz/usr/local/apache/htdocs/move to the root of the file
B. # tar ZXVF phpmyadmin_2.0.5.tar.gz decompression phpmyadmin_2.0.5.tar.gz
C. Path/usr/local/apache/htdocs/phpmyadmin
D. Modify the settings file
# VI CONFIG.INC.PHP3
Find the following section
$cfgServers [1][' host '] = ' localhost '; MySQL's hostname
$cfgServers [1][' port '] = '; MySQL Port blank indicates a preset 3306
$cfgServers [1][' adv_auth '] = true; Whether to use advanced function
$cfgServers [1][' stduser '] = ' root '; MySQL's manager
$cfgServers [1][' stdpass '] = ' 123456 '; MySQL Administrator's password
I use root as the manager, the password is 123456 you can use your favorite
4. Testing
Open the browser and enter HTTP.//URL/phpmyadmin/
Done ...
Best of Chinese
If you've just used a file that's c_phpmyadmin_2.0.5.tar.gz, there's no problem with Chinese.
If you follow my steps, please get the best document in Chinese (FTP://OHAHA.KS.EDU.TW/PUB/SOURCE/PHP/CHINESE_BIG5.INC.PHP3)
Put this file into the phpMyAdmin directory he will replace chinese_big5.inc.php3 this file
If you feel that you are not insured, you can rename the original chinese_big5.inc.php3 and then put the new file in
A. MV Chinese_big5.inc.php3 Chinese_big5.inc.php3.old
renamed to Chinese_big5.inc.php3.old
B. MV chinese_big5.inc.php3/usr/local/apache/htdocs/phpmyadmin/
http://www.bkjia.com/PHPjc/631111.html www.bkjia.com true http://www.bkjia.com/PHPjc/631111.html techarticle This article is from: Ohaha's learning experience [ohaha.ks.edu.tw] Author: Blue Bubble (panda@ks.edu.tw) Preface: The so-called phpMyAdmin simple is a kind of MySQL management tool. Through this program ...