Hello! When I try to access PHPMyAdmin through WAMP (localhost/phpmyadmin), it gives me this:
Code:
Forbidden

You don't have permission to access /phpmyadmin/ on this server.
Phpmyadmin.confg looks like this:
Code:
Alias /phpmyadmin "c:/wamp/apps/phpmyadmin3.1.1/" 

# 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
#

<Directory "c:/wamp/apps/phpmyadmin3.1.1/">
    Options Indexes FollowSymLinks MultiViews
    AllowOverride all
        Order Deny,Allow
		Deny from all
		Allow from 127.0.0.1
</Directory>
Please help!

I've already seen this thread:
Here