Phpmyadmin download, installation, configuration tutorial, phpmyadmin tutorial
This article shares with you the phpmyadmin installation and configuration tutorial for your reference. The details are as follows:
Address: https://www.phpmyadmin.net/
Click Download in the upper-right corner.
Download phpmyadmin-4.7.0-all-languages.zip
Decompress the package to the root directory of the C drive, rename it phpMyAdmin, enter the folder, find config. sample. inc. php, rename it config. inc. php, and open and change the file in a text editor. Find the following code
$cfg['blowfish_secret'] = ''
Change
$ Cfg ['blowfish _ secret'] = 'c4ca4238a0b923820dcc509a6f75849b'; // a long string password.
Save and exit
Go to the conf folder of apache, create a new phpmyadmin. conf file, open the text editor, and add the following code,
Alias /phpmyadmin "c:/phpMyAdmin/"<Directory "c:/phpMyAdmin/">Options Indexes FollowSymLinks MultiViewsAllowOverride allRequire all grantedphp_admin_value upload_max_filesize 128Mphp_admin_value post_max_size 128Mphp_admin_value max_execution_time 360php_admin_value max_input_time 360</Directory>
Save and exit
Find the configuration file httdp. conf in the folder, open it in a text editor, and add a line at the end.
Include conf/phpmyadmin.conf
Save and exit, restart apache
Enter http: // localhost/phpmyadmin in the browser
You can.
The above is all the content of this article. I hope it will be helpful for your learning and support for helping customers.