Here is the entire httpd-vhosts.conf So I do already have the Alias in the file.
# # Virtual Hosts # # If you want to maintain multiple domains/hostnames on your # machine you can setup VirtualHost containers for them. Most configurations # use only name-based virtual hosts so the server doesn't need to worry about # IP addresses. This is indicated by the asterisks in the directives below. # # Please see the documentation at # <URL:http://httpd.apache.org/docs/2.2/vhosts/> # for further details before you try to setup virtual hosts. # # You may use the command line option '-S' to verify your virtual host # configuration. # # Use name-based virtual hosting. # NameVirtualHost *:80 # # VirtualHost example: # Almost any Apache directive may go into a VirtualHost container. # The first VirtualHost section is used for all requests that do not # match a ServerName or ServerAlias in any <VirtualHost> block. # <VirtualHost *:80> ServerAdmin [email protected] DocumentRoot "C:/Program Files/Apache/htdocs" ServerName default </VirtualHost> <VirtualHost *:80> ServerAdmin [email protected] DocumentRoot "C:/Program Files/Apache/htdocs/sava/admin" ServerName default </VirtualHost> <VirtualHost *:80> ServerAdmin [email protected] DocumentRoot "C:/Inetpub/wwwroot/CFIDE/administrator" ServerName default </VirtualHost> Alias /CFIDE "C:/Inetpub/wwwroot/CFIDE/administrator" <VirtualHost *:80> ServerAdmin [email protected] DocumentRoot "C:/Program Files/Apache/htdocs/cosmeticbeautydirectory" ServerName www.cosmeticbeautydirectory.com.au ServerAlias cosmeticbeautydirectory.com.au </VirtualHost> <VirtualHost *:80> ServerAdmin [email protected] DocumentRoot "C:/Program Files/Apache/htdocs/swanseaflowers" ServerName www.swanseaflowers.com.au ServerAlias swanseaflowers.com.au </VirtualHost> <VirtualHost *:80> ServerAdmin [email protected] DocumentRoot "C:/Program Files/Apache/htdocs/beecroftflowerplace" ServerName www.beecroftflowerplace.com.au ServerAlias beecroftflowerplace.com.au </VirtualHost> <VirtualHost *:80> ServerAdmin [email protected] DocumentRoot "C:/Program Files/Apache/htdocs/vipsolutions" ServerName www.vipsolutions.com.au ServerAlias vipsolutions.com.au </VirtualHost> <VirtualHost *:80> ServerAdmin [email protected] DocumentRoot "C:/Program Files/Apache/htdocs/amandaheavens" ServerName www.amandaheavens.com.au ServerAlias amandaheavens.com.au </VirtualHost> <VirtualHost *:80> ServerAdmin [email protected] DocumentRoot "C:/Program Files/Apache/htdocs/yorkfamlaw" ServerName www.yorkfamlaw.com.au ServerAlias yorkfamlaw.com.au </VirtualHost> <VirtualHost *:80> ServerAdmin [email protected] DocumentRoot "C:/Program Files/Apache/htdocs/ederma" ServerName www.ederma.com.au ServerAlias ederma.com.au </VirtualHost> <VirtualHost *:80> ServerAdmin [email protected] DocumentRoot "C:/Program Files/Apache/htdocs/yardy" ServerName www.yardy.com.au ServerAlias yardy.com.au </VirtualHost> <VirtualHost *:80> ServerAdmin [email protected] DocumentRoot "C:/Program Files/Apache/htdocs/abansw" ServerName www.abansw.com ServerAlias abansw.com </VirtualHost> <VirtualHost *:80> ServerAdmin [email protected] DocumentRoot "C:/Program Files/Apache/htdocs/capitalcosmeticlaser" ServerName www.capitalcosmeticlaser.com.au ServerAlias capitalcosmeticlaser.com.au </VirtualHost> <VirtualHost *:80> ServerAdmin [email protected] DocumentRoot "C:/Program Files/Apache/htdocs/beecroftflowerplace" ServerName www.beecroftflowerplace.com.au ServerAlias beecroftflowerplace.com.au </VirtualHost> <VirtualHost *:80> ServerAdmin [email protected] DocumentRoot "C:/Program Files/Apache/htdocs/thesite" ServerName www.thesite.com.au ServerAlias thesite.com.au </VirtualHost> <VirtualHost *:80> ServerAdmin [email protected] DocumentRoot "C:/Program Files/Apache/htdocs/sava/cleverminds" ServerName www.cleverminds.com.au ServerAlias cleverminds.com.au </VirtualHost> <VirtualHost *:80> ServerAdmin [email protected] DocumentRoot "C:/Program Files/Apache/htdocs/lookyounger" ServerName www.lookyounger.com.au ServerAlias lookyounger.com.au </VirtualHost> <VirtualHost *:80> DocumentRoot "C:/Program Files/Apache/htdocs" ServerName sava.test.localhost </VirtualHost> > Hi there > > Its 4:30am here and I need to get some more sleep, but I need to try > and solve this problem ASAP as well. > > I had a problem with my server last weekend and currently donât have > access to CF Admin â basically I had everything running under IIS but > IIS has for some reason crashed and will not restart. So after hours > of trying everything on the planet in relation to IIS decided to > download and install Apache. > > All the websites on the server are up and running except for my own > which is running under Sava CMS - have a slight issue with it and also > CF Admin - I cannot access it. > > CF is obviously still running OK as it is serving up (with Apache the > websites). I was able to get into the CF8 Webserver Configuration > tool and hence why the websites are now working under Apache. > > CFIDE Folder is still located on the server in c:/inetpub/wwwroot > folder > > I used to be able to access CF Admin by http://staging.cleverminds.com. > au/CFIDE/administrator/index.cfm > > Now I am getting an error as displayed below. > > _______> _____________________________________________________________________ > Start of error message > > The website declined to show this webpage > HTTP 403 > Most likely causes: > ⢠This website requires you to log in. > What you can try: > > Go back to the previous page. > > > > More information > > This error (HTTP 403 Forbidden) means that Internet Explorer was able > to connect to the website, but it does not have permission to view the > webpage. > For more information about HTTP errors, see Help. > > > end of message ____________> _____________________________________________________________________ > > > > Iâm guessing I should be able to fix this by changing a setting in > Apache httpd-vhosts.conf file. > > Think Iâm probably going to have to uninstall CF and reinstall because > I donât seem to be able to get access to CF Admin. > > > This is the section of code that I have got in httpd-vhosts for the cf > but it doesnât seem to be correct. > > > # > # Virtual Hosts > # > # If you want to maintain multiple domains/hostnames on your > # machine you can setup VirtualHost containers for them. Most > configurations > # use only name-based virtual hosts so the server doesn't need to > worry about > # IP addresses. This is indicated by the asterisks in the directives > below. > # > # Please see the documentation at > # <URL:http://httpd.apache.org/docs/2.2/vhosts/> > # for further details before you try to setup virtual hosts. > # > # You may use the command line option '-S' to verify your virtual > host > # configuration. > > > > # > # Use name-based virtual hosting. > # > > NameVirtualHost *:80 > > # > # VirtualHost example: > # Almost any Apache directive may go into a VirtualHost container. > # The first VirtualHost section is used for all requests that do not > # match a ServerName or ServerAlias in any <VirtualHost> block. > # > > > <VirtualHost *:80> > ServerAdmin [email protected] > DocumentRoot "C:/Program Files/Apache/htdocs" > ServerName default > </VirtualHost> > > <VirtualHost *:80> > ServerAdmin [email protected] > DocumentRoot "C:/Program Files/Apache/htdocs/sava/admin" > ServerName default > </VirtualHost> > > <VirtualHost *:80> > ServerAdmin [email protected] > DocumentRoot "C:/Inetpub/wwwroot/CFIDE/administrator" > ServerName default > </VirtualHost> > > Alias /CFIDE "C:/Inetpub/wwwroot/CFIDE/administrator" > > <VirtualHost *:80> > ServerAdmin [email protected] > DocumentRoot "C:/Program Files/Apache/htdocs/cosmeticbeautydirectory" > ServerName www.cosmeticbeautydirectory.com.au > ServerAlias cosmeticbeautydirectory.com.au > </VirtualHost> > > <VirtualHost *:80> > ServerAdmin [email protected] > DocumentRoot "C:/Program Files/Apache/htdocs/swanseaflowers" > ServerName www.swanseaflowers.com.au > ServerAlias swanseaflowers.com.au > </VirtualHost> > > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321430 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

