Install Adminer into WAMP
Yesterday, I came across Adminer, the better alternative to phpMyAdmin and I started using it.
Here's the little guide how to install it into WAMP:
- download adminer: http://www.mediafire.com/?34cwfu53wfwxw04
- extract it to your %wampfolder%/apps/adminer/
- create new file adminer.conf in %wampfolder%/alias/ directory
- Put following text to the adminer.conf:
Alias /adminer "c:/wamp/apps/adminer/"
<Directory "c:/wamp/apps/adminer/">
# 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 MultiViews
AllowOverride all
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
</Directory>
Do not forget to edit paths to your WAMP directory if different (mine is C:/wamp)
Then just go to http://localhost/adminer or http://127.0.0.1/adminer

Subscribe via RSS