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