Allow all or nothing
Posted by: gobaethesmith (---.nycap.res.rr.com)
Date: February 06, 2009 09:01PM

I looked through some previous posts regarding editing the "c:\wamp\alias\phpmyadmin.conf" to allow remote access, but I'm still having problems. I CAN get "Allow from all" to work but specifying an ip other than localhost does not work (I will get a 403 forbidden). I'm really not keen on going with "Allow from all" but if I have to I will.

Current phpmyadmin.conf

<Directory "c:/wamp/apps/phpmyadmin2.11.6/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
Allow from 172.16.0.8
</Directory>

172.16.0.8 isn't being allow access though.

Thanks!

Options: ReplyQuote
Re: Allow all or nothing
Posted by: stevenmartin99 (---.b-ras1.blp.dublin.eircom.net)
Date: February 06, 2009 09:07PM

<Directory "c:/wamp/apps/phpmyadmin2.11.6/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
Allow from 172.16.0.8
</Directory>


this is not the order it is written in

try

<Directory "c:/wamp/apps/phpmyadmin2.11.6/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Allow,Deny
Allow from 127.0.0.1
Allow from 172.16.0.8
Deny from all
</Directory>

Steven Martin
stevenmartin99@gmail.com
stevenmartin99@hotmail.com
PampServer.com - [pampserver.com]



Edited 2 time(s). Last edit at 02/06/2009 09:08PM by stevenmartin99.

Options: ReplyQuote
Re: Allow all or nothing
Posted by: gobaethesmith (---.nycap.res.rr.com)
Date: February 09, 2009 08:32PM

That blocked access from localhost AND 172.16.0.8

Options: ReplyQuote


Sorry, only registered users may post in this forum.