Home  >  Article  >  Backend Development  >  phpmyadmin usage tutorial

phpmyadmin usage tutorial

巴扎黑
巴扎黑Original
2017-08-23 13:42:204532browse

This article mainly introduces the phpmyadmin download, installation, and configuration tutorial in detail. It has certain reference value. Interested friends can refer to it.

This article shares the phpmyadmin download and installation configuration for everyone. Tutorial, for your reference, the specific content is as follows

Address: https://www.phpmyadmin.net/

Click the download button in the upper right corner

Download phpMyAdmin-4.7.0-all-languages.zip

Extract to the root directory of drive C, rename it to phpMyAdmin, enter the folder, find config.sample.inc.php, and change the name For config.inc.php, open the modified file with a text editor. Find the following code


$cfg['blowfish_secret'] = ''

and change it to


$cfg['blowfish_secret'] = 'c4ca4238a0b923820dcc509a6f75849b';//一个长字符串密码就行

Save and exit

Enter the apache conf file folder, create a new phpmyadmin.conf file, open it in a text editor, add the following code,


Alias /phpmyadmin "c:/phpMyAdmin/"
<Directory "c:/phpMyAdmin/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Require all granted
php_admin_value upload_max_filesize 128M
php_admin_value post_max_size 128M
php_admin_value max_execution_time 360
php_admin_value max_input_time 360
</Directory>

Save and exit

Find the configuration in the folder File httpdp.conf, open it with a text editor, add a line


Include conf/phpmyadmin.conf

at the end, save and exit, restart apache

and enter in the browser Just http://localhost/phpmyadmin

.

The above is the detailed content of phpmyadmin usage tutorial. For more information, please follow other related articles on the PHP Chinese website!

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