Date: Fri, 1 Jul 2005 00:22:15 -0500 From: Ryan Rempel <rgrempel@gmail.com> To: gerard-seibert@suscom.net Cc: freebsd-questions@freebsd.org Subject: Re: Getting phpMyAdmin to run Message-ID: <fb5ec42305063022221c1c8b2a@mail.gmail.com> In-Reply-To: <20050630222200.84A3.GERARD-SEIBERT@suscom.net> References: <20050630222200.84A3.GERARD-SEIBERT@suscom.net>
next in thread | previous in thread | raw e-mail | index | archive | help
On 6/30/05, Gerard Seibert <gerard-seibert@suscom.net> wrote: > I am unable to get phpMyAdmin to run. I have these entries in the httpd.c= onf file. >=20 > <Directory "/usr/local/www/data/beerstud/htdocs"> >=20 > Alias /phpmyadmin/ "/usr/local/www/phpMyAdmin/" >=20 > #<Directory '/usr/local/www/phpMyAdmin/'> > # AllowOverride None > # Order allow,deny > # Allow from all > #</Directory> >=20 > I have the directory entries commented out now, but I have tried them unc= ommented, and it made no difference. >=20 > This is from the apache error log. >=20 > [client 127.0.0.1] File does not exist: /usr/local/www/data/beerstud/htdo= cs/phpMyAdmin >=20 > I receive a 404 error when I try to run command from a browser. >=20 > I thought that the use of alias would make apache look in the correct di= rectory for the index.php file. What am I doing incorrectly here? It looks as though you have the Alias directive nested inside the <Directory "/usr/local/www/data/beerstud/htdocs> directive, which can't really be what you want (the Alias would only apply within the that directory, but of course it would never have any occasion to apply there). I think you probably need to move the phpMyAdmin-related directives outside of the <Directory "/usr/local/www/data/beerstud/htdocs"> directive.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?fb5ec42305063022221c1c8b2a>