2004-05-20 18:29:49 +02:00
|
|
|
|
|
|
|
%%PKGNAME%% has been installed into:
|
|
|
|
|
|
|
|
%%PREFIX%%/%%MYADMDIR%%
|
|
|
|
|
|
|
|
Please edit config.inc.php to suit your needs.
|
|
|
|
|
|
|
|
To make phpMyAdmin available through your web site, I suggest
|
2006-05-13 19:00:25 +02:00
|
|
|
that you add something like the following to httpd.conf:
|
2004-05-20 18:29:49 +02:00
|
|
|
|
|
|
|
Alias /phpmyadmin/ "%%PREFIX%%/%%MYADMDIR%%/"
|
2004-11-20 12:22:19 +01:00
|
|
|
|
2006-05-13 19:00:25 +02:00
|
|
|
<Directory "%%PREFIX%%/%%MYADMDIR%%/">
|
|
|
|
Options none
|
|
|
|
AllowOverride Limit
|
|
|
|
|
2006-05-28 17:02:02 +02:00
|
|
|
Order Deny,Allow
|
2006-05-13 19:00:25 +02:00
|
|
|
Deny from all
|
|
|
|
Allow from 127.0.0.1 .example.com
|
|
|
|
</Directory>
|
|
|
|
|