Reputation: 47
Lately i cannot access my xampp mySQL/apache server when i call 127.0.0.1(or my Network IP)\phpmyadmin
but when i call localhost\phpmyadmin
IT works...any Idea?
Upvotes: 0
Views: 253
Reputation: 3950
You need to check for hosts file which contains the mappings of IP addresses to host names.
It needs enteries something like:
127.0.0.1 localhost
::1 localhost
in order to resolve your ip to localhost..
It is available in *inx as well as in windows..
Upvotes: 1