HABILITAR MySQL (WAMP 2.4) EN UNA RED LOCAL S.O. (WINDOWS)
HABILITAR MYSQL EN LA RED LOCAL
Antes de hacer el cambio seguramente tendremos el siguiente mensaje:
Forbidden
You don't have permission to access /phpmyadmin/ on this server.el cambio se debe hacer en el arch. c:\wamp\alias\phpmyadmin.conf
Alias /phpmyadmin "c:/wamp/apps/phpmyadmin4.0.4/"
# to give access to phpmyadmin from outside
# replace the lines
#
# Order Deny,Allow
# Deny from all
# Allow from 127.0.0.1
#
# by
#
# Order Allow,Deny
# Allow from all
#
Options Indexes FollowSymLinks ExecCGI
AllowOverride all
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
Allow from ::1
Allow from localhost
CAMBIAR POR:
Alias /phpmyadmin "c:/wamp/apps/phpmyadmin4.0.4/"
# to give access to phpmyadmin from outside
# replace the lines
#
# Order Deny,Allow
# Deny from all
# Allow from 127.0.0.1
#
# by
#
# Order Allow,Deny
# Allow from all
#
Options Indexes FollowSymLinks ExecCGI
AllowOverride all
Order Deny,Allow
Deny from all
Allow from all
Allow from ::1
Allow from localhost
Comentarios