[phpMyAdmin] Accéder sur machine distante
Bonjour (je vais être rapide),
j'ai installé wamp sur une machine et je voudrais accéder à phpmyadmin depuis une autre machine.
J'ai essayé de modifier les fichiers .htaccess et httpd.conf mais je n'arrive pas.
Même sur la machine locale, lorsque je tape http://adresse_ip/phpmyadmin, je n'ai pas de réponse du serveur alors que http://localhost/phpmyadmin passe très bien.
Qqun saurait me dire où est le blème ?
voici une partie du contenu de mon fichier httpd.conf:
Code:
1 2 3 4 5 6 7 8 9
| # Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
#
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses (0.0.0.0)
#
#Listen 12.34.56.78:80
Listen 80 |
Dans le fichier .htaccess (C:\wamp\phpmyadmin\libraries) j'ai ceci :
Code:
Code:
1 2 3 4
| # This folder does not require access over HTTP
Order deny,allow
Allow from all
Deny from none |
Et dans phpmyadmin.conf (C:\wamp\Apache2\conf\alias), j'ai
Code:
1 2 3 4 5 6 7 8
| Alias /phpmyadmin/ "c:/wamp/phpmyadmin/"
<Directory "c:/wamp/phpmyadmin/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order allow,deny
Allow from all
</Directory> |
Et ça ne marche toujours pas (même pas sur ma machine locale en mettant l'adresse IP...)