Może grupie pytanie ale o co chodzi ztymi katalogami ? w symfony bo jak weszłam do pear to w nim znajduje sie katalog symfony [ chyba rozpakowany po ściągnięciu przez pear ] potem w katalogu data /symfony ,później w www/site/
po co tyle katalogów ?, czy nie można normalnie ściągnąć całego syfony rozpakować i skonfigurować zęby działało ?
Dodam też ze nadal nie działa a wieć w pliku http.conf odhaczyłem
# Virtual hosts
Include conf/extra/httpd-vhosts.conf
potem w pliku http.conf odhaczyłem
LoadModule vhost_alias_module modules/mod_vhost_alias.so
i
LoadModule rewrite_module modules/mod_rewrite.so
ale jak zrestartuje apache to nie chce mi sie uruchomić ale jak w pliku http.conf s powrotem zablokuje [ hashem]
# Virtual hosts
# Include conf/extra/httpd-vhosts.conf
i zrestartuje to działa , czy ktoś wie dla czego w konfiguracji serwerów prawie sie nie znam
a o to plik conf/extra/httpd-vhosts.conf
<?php
#
# 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>
ServerName myapp.localhost
DocumentRoot "C:Appserv/www/site/web"
DirectoryIndex index.php
Alias /sf C:/AppServ/php5/PEAR/data/symfony/web/sf
<Directory "C:/AppServ/php5/PEAR/data/symfony/web/sf>
AllowOverride All
Allow from All
</Directory>
<Directory C:Appserv/www/site/web">
AllowOverride All
Allow from All
</Directory>
</VirtualHost>
?>