OK so we'll use this:
NameVirtualHost 127.0.0.1:80
# These are for development
<VirtualHost 127.0.0.1:80>
ServerName askeet
DocumentRoot "C:/sfprojects/askeet/web"
DirectoryIndex index.php
Alias /sf "C:/wamp/php/PEAR/data/symfony/web/sf"
<Directory "C:/sfprojects/askeet/web">
AllowOverride All
Allow from All
</Directory>
<Directory "C:/wamp/php/PEAR/data/symfony/web/sf">
AllowOverride All
Allow from All
</Directory>
</VirtualHost>
I'll post the patch for the rest of day 1 in another post.
On Apr 1, 2:42 am, "Tristan Rivoallan" <[EMAIL PROTECTED]>
wrote:
> hi,
>
> On Mon, Mar 31, 2008 at 5:03 PM, markchicobaby <[EMAIL PROTECTED]> wrote:
> > NameVirtualHost 127.0.0.1:80
>
> > <VirtualHost askeet:80>
>
> There are two problems here :
> * it is recommended to only use ips adresses with "VirtualHost" /
> NameVirtualHost directives
> * The argument to the <VirtualHost> directive must exactly match the
> argument to the NameVirtualHost directive.
>
> thus, this config snippet would be more appropriate :
>
> NameVirtualHost 127.0.0.1:80
> <VirtualHost 127.0.0.1:80>
>
> http://httpd.apache.org/docs/2.2/mod/core.html#namevirtualhost
>
> sorry, i should have been more specific in the first place.
>
> regards,
>
> tristan
>
> --
> Tristan Rivoallanhttp://www.clever-age.com
> Clever Age - conseil en architecture technique
> GSM: +33 6 219 219 33 Tél: +33 1 53 34 66 10
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"symfony developers" 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/symfony-devs?hl=en
-~----------~----~----~----~------~----~------~--~---