Install Adminer into WAMP

Posted by Šimon Podlipský

 

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:

  1. download adminer: http://www.mediafire.com/?34cwfu53wfwxw04
  2. extract it to your %wampfolder%/apps/adminer/
  3. create new file adminer.conf in %wampfolder%/alias/ directory
  4. Put following text to the adminer.conf:

Alias /adminer "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
#

<Directory "c:/wamp/apps/adminer/">
    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