The post-installation notes following the installation of phpmyadmin give an example for adding a phpmyadmin alias to the httpd.conf. See post-installing output: To make phpMyAdmin available through your web site, I suggest that you add something like the following to httpd.conf: Alias /phpmyadmin/ "/usr/local/www/phpMyAdmin/" <Directory "/usr/local/www/phpMyAdmin/"> Options none AllowOverride Limit Order Deny, Allow Deny from all Allow from 127.0.0.1 .example.com </Directory> This example will cause a syntax error when starting httpd, because of the following line: Order Deny, Allow The whitespace between "Deny, Allow" causes the syntax error, httpd prompting the user that it is not a valid argument for the "Order" directive. Fix: Change the line in the example from: Order Deny, Allow To: Order Deny,Allow How-To-Repeat: Install phpmyadmin from the ports directory
Responsible Changed From-To: freebsd-www->freebsd-port-bugs Alter the synopsis a bit and assign the PR to the correct group the www group is not for port related issues but for website related issues.
Responsible Changed From-To: freebsd-port-bugs->freebsd-ports-bugs Correct assignee ( i always forget the correct group ).
Dear maintainer of FreeBSD port databases/phpmyadmin, please take a look at http://www.freebsd.org/cgi/query-pr.cgi?q=98045 Do you approve this change? -- Pav Lucistnik <pav@oook.cz> <pav@FreeBSD.org> The Phase Spider. A spider that never seems quite there.
State Changed From-To: open->feedback Asked maintainer for approval
Responsible Changed From-To: freebsd-ports-bugs->pav Track
State Changed From-To: feedback->open From posting to freebsd-ports-bugs: Port maintainer approves. Please commit. Cheers, Matthew -- Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard
State Changed From-To: open->closed Committed, thanks!