WAMP5 1.7.1, phpMyAdmin, SQLiteManager and Windows 2000 - access problems
Posted by: eggnog (---.dynamic.dsl.as9105.com)
Date: May 27, 2007 11:58AM

I just freshly installed Windows 2000 and decided to install WAMP5 1.7.1 on it.

If my server is offline then I cannot access anything (local host and anything in the www directory shows as forbidden)

If my server is online I can access localhost just fine and also I can access the stuff in the www directory.

However I cannot access phpMyAdmin or SQLiteManager, they show up as forbidden.

So how do I fix both of these problems?

Why is it not working in offline mode and why can't I get to phpMyAdmin or SQLiteManager?

Options: ReplyQuote
Re: WAMP5 1.7.1, phpMyAdmin, SQLiteManager and Windows 2000 - access problems
Posted by: ontrack16 (---.185-246-81.adsl-dyn.isp.belgacom.be)
Date: May 28, 2007 10:37PM

I have exactly the same sad smiley

I hope someone finds a sollution for this soon.

Options: ReplyQuote
Re: WAMP5 1.7.1, phpMyAdmin, SQLiteManager and Windows 2000 - access problems
Posted by: Tristram (---.bk1-dsl.surnet.cl)
Date: May 28, 2007 11:05PM

Same here. I get HTTP 403 error when I try to access phpMyAdmin or SQLiteManager.

Options: ReplyQuote
Re: WAMP5 1.7.1, phpMyAdmin, SQLiteManager and Windows 2000 - access problems
Posted by: CyberSpatium (71.237.217.---)
Date: May 29, 2007 06:53AM

you will need to know your ip address
www.whatismyip.com

open C:\wamp\Apache2\conf\alias\phpmyadmin.conf

find
<Directory "c:/wamp/phpmyadmin/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
</Directory>


change to
<Directory "c:/wamp/phpmyadmin/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
Allow from YOUR.IP.ADDRESS.HERE
</Directory>


save the file and restart apace for the changes to take effect.

access
[YOUR.IP.ADDRESS.HERE]


CyberSpatium
----------------------
WAMP English Forum Admin

Need help? Check out my WAMP User Manual/Guide here!

Check out my new blog. It is for web developers, and especially tailored for the web development newbie. If you are not fluent in “geek speak”, then this incredible resource is just you. And even if you are a web development pro, this is a great resource to check out some of the latest web development tips, news, tutorials, codes and more.

Web Development for Newbie's Blog

Options: ReplyQuote
Re: WAMP5 1.7.1, phpMyAdmin, SQLiteManager and Windows 2000 - access problems
Posted by: pixie (---.saix.net)
Date: May 29, 2007 11:36AM

This doesn't work because it seems that it can't recognize localhost IP Adress 127.0.0.1 as eggnog observed in the topic...

Options: ReplyQuote
Re: WAMP5 1.7.1, phpMyAdmin, SQLiteManager and Windows 2000 - access problems
Posted by: dval (---.chrcitadelle.be)
Date: May 29, 2007 04:08PM

look at this : [www.apachelounge.com]

in the bottom of the post...

To use the workaround, put the Apache directive Win32DisableAcceptEx in your httpd.conf file.
It is just a one-word directive with no arguments. It should be outside of any blocks like <Directory>, <VirtualHost>, <Location>, etc.

This causes Apache on Windows systems to use the standard socket accept() function instead of the higher-performance Microsoft-specific AcceptEx() function to accept incoming requests.



Post Edited (05-29-07 16:12)

Dval
(depuis la Belgique, enfin encore pour l'instant... pfff. quel pays :-)

Options: ReplyQuote
Re: WAMP5 1.7.1, phpMyAdmin, SQLiteManager and Windows 2000 - access problems
Posted by: pixie (---.saix.net)
Date: May 30, 2007 09:09AM

Thanks a million!
I added the apache directive Win32DisableAcceptEx to the httpd.conf file and it now works fine.


Options: ReplyQuote


Sorry, only registered users may post in this forum.