Hi all,
I'm trying to use symfony framework for my php projects, but I'm
having a really hard time trying to make it work. I followed very
carefuly the steps of installation up to the point of webserver
configuration.
According to the manual the VH should be like this:

NameVirtualHost 127.0.0.1:8080
Listen 127.0.0.1:8080
<VirtualHost 127.0.0.1:8080>
  DocumentRoot "c:/development/sfprojects/jobeet/web"
  DirectoryIndex index.php
  <Directory "c:/development/sfprojects/jobeet/web">
    AllowOverride All
    Allow from All
  </Directory>
  Alias /sf c:/development/sfprojects/jobeet/lib/vendor/symfony/data/
web/sf
  <Directory "c:/development/sfprojects/jobeet/lib/vendor/symfony/data/
web/sf ">
    AllowOverride All
    Allow from All
  </Directory>
</VirtualHost>

<VirtualHost 127.0.0.1:80>
  ServerName www.jobeet.com.localhost
  <!-- same configuration as before -->
</VirtualHost>

Regarding the second virtualhost, I have 3 questions
first line------------------------why 80 and not 8080?, the default
Listen in my Apache is 80
second line-------------------no question
third line-----------------------which configuration?
fourth line---------------------no question
do I need to add a second virtualhost or should I add the Servername
line to the first virtual host I created?
I added a second virtualhost with port 80 as the manual indicates and
also added the rest of code similar to the first virtualhost.......is
it correct or wrong?

The problem: whenever I hit http://localhost:8080/index.php or
http://www.jobeet.com.localhost/index.php the apache server stops and
the browser goes blank. If you can help in this matter I would
appreciate it because I'm trying to fix this problem for almost 4
weeks.

OS:Win XP Pro SP3
PHP:5.2.10
Apache 2.2.13

manguito.


-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

You received this message because you are subscribed to the Google
Groups "symfony users" group.
To post to this group, send email to symfony-users@googlegroups.com
To unsubscribe from this group, send email to
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en

Reply via email to