Sounds like you have some Apache config'ing to do.  You likely can't 
change header because virtual hosts is not actviated..

Look for a line like this and remove the #:
#NameVirtualHost *:80

You will also need to put in a Directory directive to allow read access 
to the webroot you are nominating.  The best I can do is show you 
something I have on my local dev environment..  you'll need to check the 
Apache docs for more information.

Here is the entry i use for the daemonite blog development environment I 
have on my workstation:
<VirtualHost *:80>
  ServerName daemonite
  DirectoryIndex index.htm index.cfm
  DocumentRoot "e:/webapps/daemonite/www"
  IndexOptions +FancyIndexing
  ServerAdmin [EMAIL PROTECTED]
  ErrorLog "logs/daemonite.gandalf-error_log"
  CustomLog logs/daemonite.gandalf-access_log common
  Alias /scribble e:/webapps/scribble
  Alias /cfdocs e:/webapps/cfdocs
  Alias /CFIDE e:/webapps/htdocs/CFIDE
  #running on p300 FarCry
  Alias /farcry "e:/farcry/p300/farcry_core/admin"

  #enabling rewriting in Apache
  #RewriteLogLevel 9
  #RewriteLog "e:\webapps\logs\devmodius_rewrite.log"  
  
  RewriteEngine on
  # friendly url rules
  RewriteRule ^/go/(.*)$ /go.cfm?path=/go/$1 [L,PT]

  <Directory "e:/webapps/daemonite/www">
    Options All
  </Directory>
</VirtualHost>

I hope that helps,

-- geoff
http://www.daemon.com.au/


trinity (sent by Nabble.com) wrote:

>Hi,
>
>I have re-downloaded farcry files and re-installed apache.
>I'm currently using apache 2.0.55 and I only appended the following code at
>the end of httpd file:
>
><VirtualHost 127.0.0.1:80>
>    ServerName localhost
>    DocumentRoot C:/farcry/trinity/www
>    Alias /farcry "C:/farcry/farcry_core/admin"
></VirtualHost>
>
>I have tried changing the header to <VirtualHost *:80> but to no avail. 
>I can access apache test page at http://localhost. When I go to
>http://localhost/farcry, it gives me a '403 forbidden error'. 
>I have not install farcry yet as i can't reach farcry installation page.
>The directories structure of my farcry:
>c:\farcry
>-farcry_core
>-farcry_aura
>-fourq
>-trinity
>--www
>
>The coldfusion database and mapping were successfully setup. 
>
>Anyone pls advise.
>Cheers
>
>  
>

-- 
Message protected by MailGuard: e-mail anti-virus, anti-spam and content 
filtering.
http://www.mailguard.com.au/mg



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"farcry-dev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/farcry-dev
-~----------~----~----~----~------~----~------~--~---

Reply via email to