forked from Lainports/freebsd-ports
Currently it can create database, create/drop/alter tables, create/drop/alter stored procedures, functions and triggers, delete/edit/add fields, execute any SQL statement, and manage keys on fields. The main difference between phpMinAdmin and phpMyAdmin is that phpMinAdmin is light-weight. WWW: http://phpminadmin.sourceforge.net PR: ports/126915 Submitted by: Wen Heping <wenheping at gmail.com>
20 lines
537 B
Text
20 lines
537 B
Text
|
|
POST-INSTALL CONFIGURATION FOR phpminadmin
|
|
=====================================
|
|
|
|
Please add the following to your Apache configuration,
|
|
and restart the server:
|
|
|
|
### Add the AcceptPathInfo directive only for Apache 2.0.30 or later.
|
|
Alias /phpminadmin %%WWWDIR%%
|
|
AcceptPathInfo On
|
|
<Directory %%WWWDIR%%>
|
|
AllowOverride None
|
|
Order Allow,Deny
|
|
Allow from all
|
|
</Directory>
|
|
|
|
Then you can visit your phpminadmin site with a browser
|
|
(i.e. http://your.server.com/phpminadmin/)
|
|
|
|
=====================================
|