Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 19 Aug 2007 11:02:04 -0400
From:      Gerard <gerard@seibercom.net>
To:        User Questions <freebsd-questions@freebsd.org>
Subject:   Re[2]: installing/using phpMyAdmin
Message-ID:  <20070819105502.D8DF.GERARD-SEIBERT@seibercom.net>
In-Reply-To: <200708191401.35839.lists-fbsd@shadypond.com>
References:  <46C83B64.9040608@fpt.vn> <200708191401.35839.lists-fbsd@shadypond.com>

next in thread | previous in thread | raw e-mail | index | archive | help
On August 19, 2007 at 10:01AM Pollywog wrote:


> I did but I think there is another problem somewhere, so for the time being I 
> will do without phpMyAdmin in FreeBSD.

Could you post the relevant portions of the httpd.conf file?

I have the following in mine and phpMyAdmin works fine.

<IfModule alias_module>
#
# ScriptAlias: This controls which directories contain server scripts. 
# ScriptAliases are essentially the same as Aliases, except that
# documents in the target directory are treated as applications and
# run by the server when requested rather than as documents sent to the
# client.  The same rules about trailing "/" apply to ScriptAlias
# directives as to Alias.
#
Alias /phpmyadmin/ "/usr/local/www/phpMyAdmin/"

</IfModule>

<Directory "/usr/local/www/phpMyAdmin/">
   Options none
   AllowOverride Limit
   Order Deny,Allow
   Deny from all
   Allow from 127.0.0.1 192.168.1.102
</Directory>

You would undoubtedly have to modify your 'Allow from' line to
accommodate your system.

-- 
Gerard



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20070819105502.D8DF.GERARD-SEIBERT>