ABCD & WIN7/8/Server make changes to your httpd.conf file especially the below
#ServerName localhost:9090
ServerName 192.168.11.254:9090
#
# Deny access to the entirety of your server's filesystem. You must
# explicitly permit access to web content directories in other
# <Directory> blocks below.
#
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Allow from All
Allow from localhost
Allow from 192.168.11.254
#Deny from all
</Directory>
DocumentRoot "C:/ABCD/www/htdocs"
ServerName localhost
DirectoryIndex index.htm index.php homepage.htm
<Directory "C:/ABCD/www/htdocs">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
ScriptAlias /cgi-bin/ "C:/ABCD/www/cgi-bin/"
<Directory "C:/ABCD/www/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>