Home > Database > Mysql Tutorial > body text

Configuration of mysql database management tool phpmyadmin

黄舟
Release: 2016-12-14 14:27:10
Original
1303 people have browsed it

phpMyAdmin-2.11.5 configuration
2. phpMyAdmin-2.11.5 configuration
1. Download phpMyAdmin-2.11.5 and unzip it, change the directory name to phpmyadmin, and then copy it to the root directory of your website. (phpmyadmin here can be renamed at will. Chinese cannot be used, for example: phpjiermyadmin)
This is downloaded here: [url]http://www.onlinedown.net/soft/2622.htm[/url]
2 .Edit: config.default.php under libraries.
3. Search: $cfg['PmaAbsoluteUri']
Change to: $cfg['PmaAbsoluteUri'] = 'http://your domain name/the directory name you changed in step 1';
For example: $cfg[ 'PmaAbsoluteUri'] = 'http://www.jierweb.com/phpjiermyadmin';
4. Find: $cfg['Servers'][$i]['auth_type'] = 'config';
Change to: $ cfg['Servers'][$i]['auth_type'] = 'cookie'; (Because it is used in network space, here is "cookie", and "config" can be used during local debugging)
5. Search: $cfg['Servers'][$i]['user'] = 'root';
Change to: $cfg['Servers'][$i]['user'] = 'Your database user name'; (You should still remember this, if you don’t remember, you can ask the space provider for it)
6. Search: $cfg['blowfish_secret']
Change to: $cfg['blowfish_secret'] = 'Your database password';
7. Find: $cfg['DefaultLang'] = 'en-iso-8859-1';
Replace: $cfg['DefaultLang'] = 'gb2312';
8. Find: $cfg['DefaultCharset'] = 'iso-8859-1';
Replace: $cfg['DefaultCharset'] = 'gb2312';
9. Find: ['blowfish_secret'] = ''
Replace: ['blowfish_secret'] = '123456789' ( The 123456789 can be any number, missing this step will cause an error)
10. The setting is completed. Now open IE, type: "http://your domain name/the directory name you changed in step 1", fill in the login username and password, and you can perform related operations

For more related content, please pay attention to PHP Chinese Net (www.php.cn)!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!