phpmyadmin usage tutorial

巴扎黑
Release: 2023-03-15 14:38:01
Original
4474 people have browsed it

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'] = ''
Copy after login

and change it to


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

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>
Copy after login

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
Copy after login

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!

Related labels:
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!