Home> Database> phpMyAdmin> body text

What should I do if a 403 error occurs in phpmyadmin?

coldplay.xixi
Release: 2020-07-20 10:56:44
Original
5068 people have browsed it

Solution to the 403 error in phpmyadmin: First find the Alias directory folder of [http://localhost/phpmyadmin/] and open the Apache folder; then replace [127.0.0.1] with all .

What should I do if a 403 error occurs in phpmyadmin?

Solution to 403 error in phpmyadmin:

Find the Alias directory of http://localhost/phpmyadmin/ folder, open the Apache folder;

What should I do if a 403 error occurs in phpmyadmin?

In the following code:

 Options Indexes FollowSymLinks MultiViews AllowOverride all Order Deny,Allow Deny from all Allow from 127.0.0.1 
Copy after login

find

Allow from 127.0.0.1
Copy after login

and change it to:

Allow from all
Copy after login

That is, replace127.0.0.1withall

##OK, everything is done (if not, restart wamp)

Related tutorial recommendations:

phpmyadmin

The above is the detailed content of What should I do if a 403 error occurs in phpmyadmin?. 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
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!