Home >Backend Development >PHP Tutorial >How to install phpMyAdmin on personal space_PHP tutorial

How to install phpMyAdmin on personal space_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:54:17848browse

How to install php tutorial myadmin on personal space

Of course you have mysql tutorial database tutorial. First download the latest version of phpmyadmin mysql manager. After decompression, you will get a phpmyadmin directory (you can change the name). Find the config.inc.php file in the directory, open it, find $cfg['pmaabsoluteuri'] and modify it as you will

Of course you have mysql database.
First download the latest version of phpmyadmin mysql manager.

After unzipping, you will get a phpmyadmin directory (you can change the name)

Find the config.inc.php file in the directory and open it
Find $cfg['pmaabsoluteuri']
Modify the URL of phpmyadmin that you will upload to the space
For example: $cfg['pmaabsoluteuri'] = 'http://www.xxx.com/phpmyadmin/';

And the following
$cfg['servers'][$i]['host'] = 'localhost'; (usually the default is used, there are exceptions)

$cfg['servers'][$i]['auth_type'] = 'config'; // authentication method (config, http or cookie based)?
Use config for debugging on your own machine, if you use cookies on the Internet.

$cfg['servers'][$i]['user'] = 'root'; // mysql user (username, use root on your machine, set your ftp username online)
$cfg['servers'][$i]['password'] = ''; // mysql password (ftp password, you don’t need to set it in your machine)

$cfg['servers'][$i]['only_db'] = ''; // if set to a db-name, only (set it if you only have one data)

There are also facilities
$cfg['defaultlang'] = 'zh';
$cfg['blowfish_secret'] = '', enter the mysql password. This is a top secret phrase password
After setting up, you can upload it to the Internet

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/632333.htmlTechArticleHow to install php tutorial myadmin on personal space. Of course you have mysql tutorial database tutorial. First download the latest version of phpmyadmin mysql manager. After decompression, you will get a phpmyadmin directory...
Statement:
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