How do I edit my /etc/httpd/conf.d/phpmyadmin.conf file?
Forbidden You don't have permission to access /phpmyadmin on this server.
[authz_co error] [pid 2525] [client 192.1010.118.0:51878] AH01630: client denied by server configuration: /usr/share/phpMyAdmin
Alias /phpMyAdmin /usr/share/phpMyAdmin Alias /phpmyadmin /usr/share/phpMyAdmin <Directory /usr/share/phpMyAdmin/> AddDefaultCharset UTF-8 <IfModule mod_authz_core.c> # Apache 2.4 <RequireAny> Require ip X.X.X.X Require ip ::1 </RequireAny> </IfModule> <IfModule !mod_authz_core.c> # Apache 2.2 Order Deny,Allow #Deny from All Allow from X.X.X.X Allow from ::1 </IfModule> </Directory> <Directory /usr/share/phpMyAdmin/setup/> <IfModule mod_authz_core.c> # Apache 2.4 <RequireAny> Require ip X.X.X.X Require ip ::1 </RequireAny> </IfModule> <IfModule !mod_authz_core.c> # Apache 2.2 Order Deny,Allow #Deny from All Allow from X.X.X.X Allow from ::1 </IfModule> </Directory> # These directories do not require access over HTTP - taken from the original # phpMyAdmin upstream tarball # <Directory /usr/share/phpMyAdmin/libraries/> Order Deny,Allow #Deny from All Allow from All </Directory> <Directory /usr/share/phpMyAdmin/setup/lib/> Order Deny,Allow #Deny from All Allow from All </Directory> <Directory /usr/share/phpMyAdmin/setup/frames/> Order Deny,Allow #Deny from All #Allow from None Allow from All </Directory>
AH01630: client denied by server configuration: /usr/share/phpMyAdmin
<Directory /> AllowOverride none #Require all denied Allow from all </Directory>